This document will guide you through a few data analysis and model fitting tasks.
Below, I provide commentary and instructions, and you are expected to write all or some of the missing code to perform the steps I describe.
Note that I call the main data variable d. So if you see bits of code with that variable, it is the name of the data. You are welcome to give it different names, then just adjust the code snippets accordingly.
We need a variety of different packages, which are loaded here. Install as needed. If you use others, load them here.
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library('forcats')
library('ggplot2')
library('corrplot') #to make a correlation plot. You can use other options/packages.## corrplot 0.84 loaded
## Loading required package: lattice
## Loading required package: Formula
## Loading required package: plotmo
## Loading required package: plotrix
## Loading required package: TeachingDemos
##
## Attaching package: 'gridExtra'
## The following object is masked from 'package:dplyr':
##
## combine
##
## ********************************************************
## Note: As of version 1.0.0, cowplot does not change the
## default ggplot2 theme anymore. To recover the previous
## behavior, execute:
## theme_set(theme_cowplot())
## ********************************************************
We will be exploring and fitting a dataset of norovirus outbreaks. You can look at the codebook, which briefly explains the meaning of each variable. If you are curious, you can check some previous papers that we published using (slighly different versions of) this dataset here and here.
#Write code that loads the dataset and does a quick check to make sure the data loaded ok (using e.g. `str` and `summary` or similar such functions).
raw_data <- read.csv("norodata.csv", header=TRUE)
head(raw_data)## id Author Pub_Year pubmedid EpiCurve TDComment AHComment Trans1
## 1 2 Akihara 2005 15841336 Y Unspecified
## 2 17 Becker 2000 11071673 Y Foodborne
## 3 39 Boxman 2009 19205471 N Foodborne
## 4 40 Boxman 2009 19205471 N Foodborne
## 5 41 Boxman 2009 19205471 N Foodborne
## 6 42 Boxman 2009 19205471 N Foodborne
## Trans1_O Trans2 Trans2_O Trans3 Trans3_O Risk1
## 1 0 (not applicable) 0 (not applicable) 0 0
## 2 0 Person to Person 0 (not applicable) 0 108
## 3 0 (not applicable) 0 (not applicable) 0 130
## 4 0 (not applicable) 0 (not applicable) 0 4
## 5 0 (not applicable) 0 (not applicable) 0 25
## 6 0 (not applicable) 0 (not applicable) 0 8
## Risk2 RiskAll Cases1 Cases2 CasesAll Rate1 Rate2 RateAll
## 1 NA 0 15 NA 15 NA NA 0.00000
## 2 NA 108 43 22 65 39.81481 NA 39.81481
## 3 NA 130 27 NA 27 20.76923 NA 20.76923
## 4 NA 4 4 NA 4 100.00000 NA 100.00000
## 5 NA 25 15 NA 15 60.00000 NA 60.00000
## 6 NA 8 6 NA 6 75.00000 NA 75.00000
## Hospitalizations Deaths Vehicle_1 Veh1
## 1 0 0 0 Unspecified
## 2 0 0 Boxed Lunch Yes
## 3 0 0 0 Unspecified
## 4 0 0 0 Unspecified
## 5 0 0 0 Unspecified
## 6 0 0 0 Unspecified
## Veh1_D_1 Veh2 Veh2_D_1 Veh3 Veh3_D_1
## 1 0 No 0 No 0
## 2 Turkey Sandwich in boxed lunch Yes Football players No 0
## 3 0 No 0 No 0
## 4 0 No 0 No 0
## 5 0 No 0 No 0
## 6 0 No 0 No 0
## PCRSect OBYear Hemisphere season MeanI1 MedianI1 Range_S_I1
## 1 Capsid 1999 Northern Fall 0 0 0
## 2 Polymerase 1998 Northern Fall 0 37 0
## 3 Both 2006 Northern Fall 0 0 0
## 4 Both 2006 Northern Fall 0 0 0
## 5 Both 2006 Northern Fall 0 0 0
## 6 Both 2006 Northern Fall 0 0 0
## Range_L_I1 MeanD1 MedianD1 Range_S_D1 Range_L_D1 MeanA1 MedianA1
## 1 0 0 0 0 0 NA NA
## 2 0 0 36 0 0 NA NA
## 3 0 0 0 0 0 NA NA
## 4 0 0 0 0 0 NA NA
## 5 0 0 0 0 0 NA NA
## 6 0 0 0 0 0 NA NA
## Range_Y_A1 Range_O_A1 Action1 Action2_1 Secondary MeanI2 MedianI2
## 1 0.75 2 Unspecified 0 No 0 0
## 2 0 0 Unspecified 0 Yes 0 0
## 3 0 0 Unspecified 0 No 0 0
## 4 0 0 Unspecified 0 No 0 0
## 5 0 0 Unspecified 0 No 0 0
## 6 0 0 Unspecified 0 No 0 0
## Range_S_I2 Range_L_I2 MeanD2 MedianD2 Range_S_D2 Range_L_D2 Mea.2
## 1 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0
## Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0
## 2 0 0 0
## 3 0 0 0
## 4 0 0 0
## 5 0 0 0
## 6 0 0 0
## Comments_1
## 1 Outbreak took place during a study on gasteroenteritus in a day care center. Same paper as outbreak # 2
## 2 Secondary cases include both persons from NC and FL, some secondary cases were included in # at risk of primary infection
## 3 VWA outbreak no. 68592 in Table 1
## 4 VWA outbreak no. 69113 in Table 1
## 5 VWA outbreak no. 69479 in Table 1
## 6 VWA outbreak no. 69490 in Table 1
## Path1 Path2_1 Country Category State
## 1 No 0 Japan Daycare 0
## 2 No 0 USA Foodservice NC, FL
## 3 Unspecified 0 Other Foodservice 0
## 4 Unspecified 0 Other Foodservice 0
## 5 Unspecified 0 Other Foodservice 0
## 6 Unspecified 0 Other Foodservice 0
## Setting_1 StartMonth EndMonth GGA CA SA
## 1 Daycare Center 11 12 2 4 Lordsdale
## 2 Boxed lunch, football game 9 9 1 0 Thistle Hall 1/91
## 3 buffet 9 0 2 4 GII.4 2006a
## 4 restaurant 10 0 0 0 0
## 5 buffet 11 0 2 4 GII.4 2006b
## 6 take-out restaurant 11 0 0 0 0
## new_GGA new_CA new_SA SA_resolved_from GGB CB SB new_GGB new_CB new_SB
## 1 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0
## SB_resolved_from GGC CC SC new_ggc new_cc new_sc SC_resolved_from GGD CD
## 1 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0
## SD new_ggd new_cd new_sd SD_resolved_from StrainOther strainother_rc gge
## 1 0 0 0 0 NA 0 0 0
## 2 0 0 0 0 NA 0 0 0
## 3 0 0 0 0 NA 0 0 0
## 4 0 0 0 0 NA 0 0 0
## 5 0 0 0 0 NA 0 0 0
## 6 0 0 0 0 NA 0 0 0
## ce se SE_resolved_from ggf cf sf ggg cg sg ggh ch sh ggi ci si ggj cj sj
## 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## Country2 Veh1_D_2 Veh2_D_2 Veh3_D_2 Action2_2
## 1 0 0 0 0 0
## 2 0 Boxed Lunch 0 0 0
## 3 The Netherlands 0 0 0 0
## 4 The Netherlands 0 0 0 0
## 5 The Netherlands 0 0 0 0
## 6 The Netherlands 0 0 0 0
## Comments_2 Path2_2 Setting_2 category1
## 1 Limited data 0 0 School/Daycare
## 2 0 0 0 Foodservice
## 3 Outbreak 19 of 26 Boxman 2009 0 Buffet Foodservice
## 4 Outbreak 20 of 26 Boxman 2009 0 Restaurant Foodservice
## 5 Outbreak 21 of 26 Boxman 2009 0 Buffet Foodservice
## 6 Outbreak 22 of 26 Boxman 2009 0 take out restaurant Foodservice
## strainothergg2c4 gg2c4 Vomit IncInd SymInd PooledLat PooledSym PooledAge
## 1 0 Yes 1 0 0 0 0 0
## 2 0 1 0 0 37 36 0
## 3 0 Yes 1 0 0 0 0 0
## 4 0 1 0 0 0 0 0
## 5 0 Yes 1 0 0 0 0 0
## 6 0 1 0 0 0 0 0
## IndividualLatent IndividualSymptomatic
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
## 'data.frame': 1022 obs. of 139 variables:
## $ id : int 2 17 39 40 41 42 43 44 67 74 ...
## $ Author : Factor w/ 217 levels " kagawa-Okamoto",..: 3 9 16 16 16 16 16 16 25 28 ...
## $ Pub_Year : int 2005 2000 2009 2009 2009 2009 2009 2009 2009 1994 ...
## $ pubmedid : int 15841336 11071673 19205471 19205471 19205471 19205471 19205471 19205471 19440360 8202078 ...
## $ EpiCurve : Factor w/ 3 levels "","N","Y": 3 3 2 2 2 2 2 2 2 2 ...
## $ TDComment : Factor w/ 11 levels "","Just norovirus outbreak",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ AHComment : Factor w/ 3 levels "","confirmed",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans1 : Factor w/ 6 levels "Environmental",..: 5 2 2 2 2 2 2 2 5 2 ...
## $ Trans1_O : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Trans2 : Factor w/ 6 levels " (not applicable)",..: 1 5 1 1 1 1 1 1 1 1 ...
## $ Trans2_O : Factor w/ 2 levels "0","Direct contact with diarrhea or vomitus": 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans3 : Factor w/ 6 levels " (not applicable)",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans3_O : Factor w/ 2 levels "0","smoking": 1 1 1 1 1 1 1 1 1 1 ...
## $ Risk1 : num 0 108 130 4 25 ...
## $ Risk2 : num NA NA NA NA NA NA NA NA NA NA ...
## $ RiskAll : num 0 108 130 4 25 ...
## $ Cases1 : int 15 43 27 4 15 6 40 10 116 45 ...
## $ Cases2 : int NA 22 NA NA NA NA NA NA NA NA ...
## $ CasesAll : int 15 65 27 4 15 6 40 10 116 45 ...
## $ Rate1 : num NA 39.8 20.8 100 60 ...
## $ Rate2 : num NA NA NA NA NA NA NA NA NA NA ...
## $ RateAll : num 0 39.8 20.8 100 60 ...
## $ Hospitalizations : int 0 0 0 0 0 0 0 0 5 10 ...
## $ Deaths : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Vehicle_1 : Factor w/ 126 levels "0","Aerosolized vomit",..: 1 6 1 1 1 1 1 1 1 73 ...
## $ Veh1 : Factor w/ 4 levels "No","Unknown",..: 3 4 3 3 3 3 3 3 3 4 ...
## $ Veh1_D_1 : Factor w/ 163 levels "0","aerosilized",..: 1 159 1 1 1 1 1 1 1 107 ...
## $ Veh2 : Factor w/ 2 levels "No","Yes": 1 2 1 1 1 1 1 1 1 1 ...
## $ Veh2_D_1 : Factor w/ 63 levels "","0","accommodation environment on day of arrival",..: 2 21 2 2 2 2 2 2 2 2 ...
## $ Veh3 : Factor w/ 2 levels "No","Yes": 1 1 1 1 1 1 1 1 1 1 ...
## $ Veh3_D_1 : Factor w/ 19 levels "","0","Brandy S ps",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ PCRSect : Factor w/ 4 levels "Both","Capsid",..: 2 3 1 1 1 1 1 1 1 4 ...
## $ OBYear : Factor w/ 23 levels "0","1983","1990",..: 11 10 19 19 19 19 19 19 17 5 ...
## $ Hemisphere : Factor w/ 3 levels "Northern","Southern",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ season : Factor w/ 5 levels "","Fall","Spring",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ MeanI1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianI1 : int 0 37 0 0 0 0 0 0 0 31 ...
## $ Range_S_I1 : num 0 0 0 0 0 0 0 0 0 2 ...
## $ Range_L_I1 : num 0 0 0 0 0 0 0 0 0 69 ...
## $ MeanD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianD1 : num 0 36 0 0 0 0 0 0 0 48 ...
## $ Range_S_D1 : num 0 0 0 0 0 0 0 0 0 10 ...
## $ Range_L_D1 : int 0 0 0 0 0 0 0 0 0 168 ...
## $ MeanA1 : num NA NA NA NA NA NA NA NA NA NA ...
## $ MedianA1 : num NA NA NA NA NA NA NA NA NA NA ...
## $ Range_Y_A1 : Factor w/ 49 levels "<1","0","0.167",..: 8 2 2 2 2 2 2 2 2 2 ...
## $ Range_O_A1 : num 2 0 0 0 0 0 0 0 0 0 ...
## $ Action1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 3 3 3 3 4 ...
## $ Action2_1 : Factor w/ 186 levels "","\tContami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food"| __truncated__,..: 5 5 5 5 5 5 5 5 5 108 ...
## $ Secondary : Factor w/ 3 levels "","No","Yes": 2 3 2 2 2 2 2 2 2 2 ...
## $ MeanI2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianI2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_I2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_I2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanD2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianD2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_D2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_D2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Mea.2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Media.2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_Y_A2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_O_A2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Comments_1 : Factor w/ 989 levels ""," turally recombi nt GII NV outbreak occurred in infant home in Sapporo, Japan where only residents who were up "| __truncated__,..: 918 938 978 979 980 981 984 982 350 853 ...
## $ Path1 : Factor w/ 4 levels "No","Unknown",..: 1 1 3 3 3 3 3 3 1 3 ...
## $ Path2_1 : Factor w/ 59 levels "","0","adenovirus",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ Country : Factor w/ 22 levels "Australia","Austria",..: 12 22 17 17 17 17 17 17 17 22 ...
## $ Category : Factor w/ 12 levels "Daycare","Foodservice",..: 1 2 2 2 2 2 2 2 6 12 ...
## $ State : Factor w/ 36 levels "0","1","14 states: CA, UT, KS, WI, IL, IN, OH, GA, FL, NC, VA, WV, NY, PA,",..: 1 21 1 1 1 1 1 1 1 9 ...
## $ Setting_1 : Factor w/ 388 levels "\tPsychiatric Care Center adjoined",..: 121 32 39 310 39 352 39 310 201 3 ...
## $ StartMonth : int 11 9 9 10 11 11 11 11 11 11 ...
## $ EndMonth : int 12 9 0 0 0 0 0 0 11 11 ...
## $ GGA : int 2 1 2 0 2 0 0 0 2 0 ...
## $ CA : int 4 0 4 0 4 0 0 0 4 0 ...
## $ SA : Factor w/ 123 levels "0","100% identity w/AB05308, 96% identity w/MOH",..: 62 115 34 1 35 1 1 1 122 1 ...
## $ new_GGA : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_CA : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_SA : Factor w/ 27 levels "0","ARG320-USA",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SA_resolved_from : Factor w/ 9 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGB : int 0 0 0 0 0 0 0 0 0 0 ...
## $ CB : Factor w/ 18 levels "0","1","10","12",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SB : Factor w/ 38 levels "0","93.7% homology w/Saitama",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_GGB : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_CB : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_SB : Factor w/ 14 levels "0","Birmingham",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SB_resolved_from : Factor w/ 6 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGC : int 0 0 0 0 0 0 0 0 0 0 ...
## $ CC : int 0 0 0 0 0 0 0 0 0 0 ...
## $ SC : Factor w/ 25 levels "0","95% homology with Sundsvall",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_ggc : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_cc : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_sc : Factor w/ 5 levels "0","Fayetteville",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SC_resolved_from : Factor w/ 4 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGD : int 0 0 0 0 0 0 0 0 0 0 ...
## $ CD : Factor w/ 13 levels "0","1","12","14",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SD : Factor w/ 8 levels "0","Amsterdam",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_ggd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_cd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_sd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ SD_resolved_from : logi NA NA NA NA NA NA ...
## [list output truncated]
## id Author Pub_Year pubmedid
## Min. : 1.0 Iritani : 83 Min. :1993 Min. : 7514927
## 1st Qu.: 256.2 Kageyama: 63 1st Qu.:2003 1st Qu.:12938042
## Median : 511.5 Lysen : 60 Median :2005 Median :16231127
## Mean : 511.6 Ozawa : 55 Mean :2005 Mean :15890029
## 3rd Qu.: 766.8 Hamano : 43 3rd Qu.:2008 3rd Qu.:18495859
## Max. :1024.0 Fukuda : 39 Max. :2011 Max. :21537761
## (Other) :679 NA's :3
## EpiCurve TDComment
## : 7 :994
## N:784 Not sure : 12
## Y:231 Not found in folder of articles : 6
## Not found on Pubmed : 3
## Just norovirus outbreak : 1
## No vomiting in some outbreaks but those are not specified: 1
## (Other) : 5
## AHComment Trans1 Trans1_O
## :1012 Environmental : 12 Min. :0
## confirmed : 8 Foodborne :391 1st Qu.:0
## probably not usable: 2 Person to Person:166 Median :0
## Unknown : 63 Mean :0
## Unspecified :318 3rd Qu.:0
## Waterborne : 72 Max. :0
##
## Trans2 Trans2_O
## (not applicable):928 0 :1021
## Environmental : 42 Direct contact with diarrhea or vomitus: 1
## Foodborne : 8
## Other : 1
## Person to Person : 42
## Waterborne : 1
##
## Trans3 Trans3_O Risk1
## (not applicable):1007 0 :1021 Min. : 0.00
## Environmental : 7 smoking: 1 1st Qu.: 0.00
## Foodborne : 4 Median : 10.00
## Other : 1 Mean : 374.57
## Person to Person : 2 3rd Qu.: 95.75
## Waterborne : 1 Max. :35000.00
##
## Risk2 RiskAll Cases1 Cases2
## Min. : 66.00 Min. : 0.0 Min. : 1.0 Min. : 1.00
## 1st Qu.: 72.25 1st Qu.: 0.0 1st Qu.: 9.0 1st Qu.: 4.25
## Median : 82.00 Median : 22.5 Median : 26.0 Median : 10.50
## Mean :135.06 Mean : 425.6 Mean : 125.2 Mean : 53.02
## 3rd Qu.:210.59 3rd Qu.: 119.5 3rd Qu.: 64.5 3rd Qu.: 26.75
## Max. :258.00 Max. :35000.0 Max. :32150.0 Max. :1113.00
## NA's :1014 NA's :120 NA's :7 NA's :976
## CasesAll Rate1 Rate2 RateAll
## Min. : 1.0 Min. : 0.4074 Min. : 6.00 Min. : 0.00
## 1st Qu.: 9.0 1st Qu.: 17.2500 1st Qu.:10.70 1st Qu.: 0.00
## Median : 26.0 Median : 37.5000 Median :17.50 Median : 15.28
## Mean : 127.6 Mean : 40.9253 Mean :16.89 Mean : 26.65
## 3rd Qu.: 66.0 3rd Qu.: 59.1875 3rd Qu.:21.90 3rd Qu.: 48.91
## Max. :32150.0 Max. :100.0000 Max. :29.69 Max. :105.00
## NA's :7 NA's :431 NA's :1012 NA's :108
## Hospitalizations Deaths Vehicle_1
## Min. : 0.0000 Min. :0.00000 0 :694
## 1st Qu.: 0.0000 1st Qu.:0.00000 Oysters : 46
## Median : 0.0000 Median :0.00000 oysters : 42
## Mean : 0.8856 Mean :0.05005 Shellfish : 21
## 3rd Qu.: 0.0000 3rd Qu.:0.00000 lettuce : 11
## Max. :197.0000 Max. :9.00000 Infected Persons: 10
## NA's :43 NA's :43 (Other) :198
## Veh1 Veh1_D_1 Veh2
## No : 1 0 :575 No :933
## Unknown : 82 Infected Persons: 60 Yes: 89
## Unspecified:493 Oysters : 47
## Yes :446 oysters : 42
## Shellfish : 20
## Food : 14
## (Other) :264
## Veh2_D_1 Veh3 Veh3_D_1
## 0 :814 No :1004 0 :895
## :120 Yes: 18 :109
## Infected Persons : 12 Contami ted Surfaces: 2
## Contami ted Surfaces : 8 Brandy S ps : 1
## salad : 4 Chicken : 1
## Vomit or Stool contact: 3 Coffee White : 1
## (Other) : 61 (Other) : 13
## PCRSect OBYear Hemisphere season
## Both :441 2006 :142 Northern :939 : 67
## Capsid :138 2002 :134 Southern : 81 Fall :164
## Polymerase :175 2004 :116 Unspecified: 2 Spring:222
## Unspecified:268 2003 : 97 Summer:126
## 1999 : 80 Winter:443
## 1998 : 76
## (Other):377
## MeanI1 MedianI1 Range_S_I1 Range_L_I1
## Min. : 0.0000 Min. : 0.000 Min. : 0.000 Min. : 0.000
## 1st Qu.: 0.0000 1st Qu.: 0.000 1st Qu.: 0.000 1st Qu.: 0.000
## Median : 0.0000 Median : 0.000 Median : 0.000 Median : 0.000
## Mean : 0.6644 Mean : 1.588 Mean : 1.066 Mean : 3.976
## 3rd Qu.: 0.0000 3rd Qu.: 0.000 3rd Qu.: 0.000 3rd Qu.: 0.000
## Max. :48.0000 Max. :65.000 Max. :36.000 Max. :168.000
##
## MeanD1 MedianD1 Range_S_D1 Range_L_D1
## Min. : 0.000 Min. : 0.000 Min. : 0.000 Min. : 0.0
## 1st Qu.: 0.000 1st Qu.: 0.000 1st Qu.: 0.000 1st Qu.: 0.0
## Median : 0.000 Median : 0.000 Median : 0.000 Median : 0.0
## Mean : 1.579 Mean : 2.552 Mean : 1.486 Mean : 12.7
## 3rd Qu.: 0.000 3rd Qu.: 0.000 3rd Qu.: 0.000 3rd Qu.: 0.0
## Max. :273.600 Max. :235.200 Max. :72.000 Max. :1248.0
##
## MeanA1 MedianA1 Range_Y_A1 Range_O_A1
## Min. : 0.0833 Min. : 0.747 0 :891 Min. : 0.000
## 1st Qu.:13.0000 1st Qu.: 9.000 1 : 10 1st Qu.: 0.000
## Median :39.0000 Median :29.000 18 : 9 Median : 0.000
## Mean :38.2923 Mean :29.485 23 : 7 Mean : 7.077
## 3rd Qu.:56.0000 3rd Qu.:45.000 16 : 6 3rd Qu.: 0.000
## Max. :89.3300 Max. :85.000 20 : 6 Max. :103.000
## NA's :961 NA's :973 (Other): 93
## Action1
## No : 3
## Unknown : 2
## Unspecified:803
## Yes :214
##
##
##
## Action2_1
## 0 :807
## recalled lettuce from wholesaler : 11
## Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home : 4
## Restaurant was cleaned, closed, then professio lly cleaned : 4
## Camp was clean, closed and the fi lly professio lly cleaned : 3
## exclude members of affected groups from water sports, activities with shared implements; provided dedicated latrines, washing facilities, drinking water; excluded from food handling, preparation; isolated until asymptomatic for 48 hours: 3
## (Other) :190
## Secondary MeanI2 MedianI2 Range_S_I2
## : 1 Min. : 0.0000 Min. : 0.00000 Min. : 0.0000
## No :972 1st Qu.: 0.0000 1st Qu.: 0.00000 1st Qu.: 0.0000
## Yes: 49 Median : 0.0000 Median : 0.00000 Median : 0.0000
## Mean : 0.1203 Mean : 0.04697 Mean : 0.2172
## 3rd Qu.: 0.0000 3rd Qu.: 0.00000 3rd Qu.: 0.0000
## Max. :81.0000 Max. :48.00000 Max. :78.0000
##
## Range_L_I2 MeanD2 MedianD2 Range_S_D2
## Min. : 0.0000 Min. :0 Min. :0 Min. : 0.00000
## 1st Qu.: 0.0000 1st Qu.:0 1st Qu.:0 1st Qu.: 0.00000
## Median : 0.0000 Median :0 Median :0 Median : 0.00000
## Mean : 0.4511 Mean :0 Mean :0 Mean : 0.02348
## 3rd Qu.: 0.0000 3rd Qu.:0 3rd Qu.:0 3rd Qu.: 0.00000
## Max. :168.0000 Max. :0 Max. :0 Max. :24.00000
##
## Range_L_D2 Mea.2 Media.2
## Min. : 0.00000 Min. : 0.00000 Min. : 0.00000
## 1st Qu.: 0.00000 1st Qu.: 0.00000 1st Qu.: 0.00000
## Median : 0.00000 Median : 0.00000 Median : 0.00000
## Mean : 0.09393 Mean : 0.08904 Mean : 0.04795
## 3rd Qu.: 0.00000 3rd Qu.: 0.00000 3rd Qu.: 0.00000
## Max. :72.00000 Max. :55.00000 Max. :49.00000
##
## Range_Y_A2 Range_O_A2
## Min. : 0.00000 Min. : 0.0000
## 1st Qu.: 0.00000 1st Qu.: 0.0000
## Median : 0.00000 Median : 0.0000
## Mean : 0.05773 Mean : 0.2211
## 3rd Qu.: 0.00000 3rd Qu.: 0.0000
## Max. :46.00000 Max. :80.0000
##
## Comments_1 Path1
## : 14 No :223
## 0 : 10 Unknown : 3
## 2 of 3, paper about genetic a lysis, 1 death: 2 Unspecified:716
## 3 of 3, limited information available : 2 Yes : 80
## Outbreak 10 of 47, limited information : 2
## outbreak A in Table 1 : 2
## (Other) :990
## Path2_1 Country Category
## 0 :833 Other :447 Foodservice :309
## :109 Japan :371 Leisure :153
## coliforms : 8 USA :108 Nursing Home:138
## Astrovirus : 4 Australia : 21 Hospital :126
## E.coli : 4 Multiple : 17 Other : 99
## Campylobacter jejuni: 3 Unspecified: 15 School : 68
## (Other) : 61 (Other) : 43 (Other) :129
## State Setting_1 StartMonth EndMonth
## 0 :909 0 :110 Min. : 0.000 Min. : 0.000
## NC : 19 Restaurant :104 1st Qu.: 2.000 1st Qu.: 0.000
## NY : 10 restaurant : 70 Median : 4.000 Median : 0.000
## AK : 9 Hospital : 39 Mean : 5.532 Mean : 2.414
## FL : 7 Hotel : 25 3rd Qu.:10.000 3rd Qu.: 3.000
## MI : 6 Nursing Care Center: 25 Max. :12.000 Max. :12.000
## (Other): 62 (Other) :649
## GGA CA SA new_GGA
## Min. :0.000 Min. : 0.000 0 :693 Min. :0.0000
## 1st Qu.:1.000 1st Qu.: 0.000 Lordsdale : 45 1st Qu.:0.0000
## Median :2.000 Median : 2.000 Farmington Hills: 18 Median :0.0000
## Mean :1.501 Mean : 2.551 GII.4 2006b : 16 Mean :0.1693
## 3rd Qu.:2.000 3rd Qu.: 4.000 GII.4 2006a : 15 3rd Qu.:0.0000
## Max. :2.000 Max. :17.000 Desert Shield : 14 Max. :2.0000
## NA's :1 (Other) :221
## new_CA new_SA
## Min. :0.0000 0 :926
## 1st Qu.:0.0000 Toronto-CAN93: 15
## Median :0.0000 Grimsby-like : 11
## Mean :0.2984 Hawaii-USA94 : 10
## 3rd Qu.:0.0000 CBW94-AUS : 7
## Max. :9.0000 Chiba-JPN00 : 7
## (Other) : 46
## SA_resolved_from
## :926
## Zheng : 69
## abstraction : 17
## http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf : 3
## origi l article : 3
## Diagnosis of Norovirus outbreaks by commercial ELISA or RT-PCR, de Bruin et al.: 1
## (Other) : 3
## GGB CB SB new_GGB
## Min. :0.0000 0 :886 0 :976 Min. :0.0000
## 1st Qu.:0.0000 4 : 36 Lordsdale : 3 1st Qu.:0.0000
## Median :0.0000 3 : 22 Toronto : 3 Median :0.0000
## Mean :0.3082 2 : 15 Birmingham : 2 Mean :0.0274
## 3rd Qu.:0.0000 6 : 15 GII.4 2006b: 2 3rd Qu.:0.0000
## Max. :2.0000 1 : 9 GII.b : 2 Max. :2.0000
## (Other): 39 (Other) : 34
## new_CB new_SB
## Min. : 0.00000 0 :1005
## 1st Qu.: 0.00000 Birmingham : 2
## Median : 0.00000 Chiba-JPN00 : 2
## Mean : 0.06947 Lsdale-GBR : 2
## 3rd Qu.: 0.00000 Toronto-CAN93: 2
## Max. :14.00000 Bristol-GBR93: 1
## (Other) : 8
## SB_resolved_from
## :1005
## abstraction : 2
## Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al: 2
## http://kcdc.labkm.net/vsd/database/gene_list.jsp?orgId=6&cuTag=CL0005&page=910&orderCol=&orderTag=&searchIn=&textIn= : 1
## origi l article/Zheng : 2
## Zheng : 10
##
## GGC CC
## Min. :0.0000 Min. : 0.000
## 1st Qu.:0.0000 1st Qu.: 0.000
## Median :0.0000 Median : 0.000
## Mean :0.1223 Mean : 0.365
## 3rd Qu.:0.0000 3rd Qu.: 0.000
## Max. :2.0000 Max. :17.000
##
## SC
## 0 :997
## H104-94-J : 2
## 95% homology with Sundsvall : 1
## 99 and 98% deduced amino acid identity with FAY=98 and KAS/00 , respectively (both 92% nt identity): 1
## BCCDC04-007 : 1
## Chiba : 1
## (Other) : 19
## new_ggc new_cc new_sc
## Min. :0.000000 Min. : 0.0000 0 :1018
## 1st Qu.:0.000000 1st Qu.: 0.0000 Fayetteville: 1
## Median :0.000000 Median : 0.0000 Leeds-GBR00 : 1
## Mean :0.006849 Mean : 0.0274 MOH99-HUN : 1
## 3rd Qu.:0.000000 3rd Qu.: 0.0000 Whiterose : 1
## Max. :2.000000 Max. :14.0000
##
## SC_resolved_from
## :1018
## abstraction : 1
## Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al: 1
## Zheng : 2
##
##
##
## GGD CD SD
## Min. :0.00000 0 :990 0 :1014
## 1st Qu.:0.00000 3 : 6 GII.b : 2
## Median :0.00000 4 : 5 Amsterdam : 1
## Mean :0.06067 8 : 5 BCCDC03-008 : 1
## 3rd Qu.:0.00000 6 : 4 Bristol : 1
## Max. :2.00000 15 : 3 Harrow/2001/UK_Mexico/1989/MX: 1
## (Other): 9 (Other) : 2
## new_ggd new_cd new_sd SD_resolved_from
## Min. :0 Min. :0 Min. :0 Mode:logical
## 1st Qu.:0 1st Qu.:0 1st Qu.:0 NA's:1022
## Median :0 Median :0 Median :0
## Mean :0 Mean :0 Mean :0
## 3rd Qu.:0 3rd Qu.:0 3rd Qu.:0
## Max. :0 Max. :0 Max. :0
##
## StrainOther
## 0 :980
## closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase region and 96% (over 283 bp) was also seen w/strain Arg320: 2
## GII/8 : 2
## GIIb : 2
## 1 : 1
## 100% similar to the calicivirus strains of S031/94/UK : 1
## (Other) : 34
## strainother_rc
## 0 :1013
## closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase re: 2
## 100% similar to the calicivirus strains of S031/94/UK : 1
## 2 strains only referred to as strain A and strain B : 1
## 6 : 1
## article discussed 2 separate strains found, but didn't identify either : 1
## (Other) : 3
## gge ce se
## 0 :994 Min. : 0.0000 0 :1012
## 1 : 7 1st Qu.: 0.0000 GIIb : 2
## 2 : 20 Median : 0.0000 BCCDC04-002 : 1
## Sindlesham: 1 Mean : 0.1272 Fayetteville: 1
## 3rd Qu.: 0.0000 GII.4 2006a : 1
## Max. :17.0000 GII.4a 2004 : 1
## (Other) : 4
## SE_resolved_from ggf cf
## :1016 Min. :0.00000 Min. : 0.00000
## abstraction of StrainOther: 6 1st Qu.:0.00000 1st Qu.: 0.00000
## Median :0.00000 Median : 0.00000
## Mean :0.02055 Mean : 0.08317
## 3rd Qu.:0.00000 3rd Qu.: 0.00000
## Max. :2.00000 Max. :14.00000
##
## sf ggg cg sg
## 0 :1021 Min. :0.0000 Min. : 0.00000 0 :1021
## BCCDC03-013: 1 1st Qu.:0.0000 1st Qu.: 0.00000 BCCDC04-006: 1
## Median :0.0000 Median : 0.00000
## Mean :0.0137 Mean : 0.05186
## 3rd Qu.:0.0000 3rd Qu.: 0.00000
## Max. :2.0000 Max. :12.00000
##
## ggh ch sh
## Min. :0.000000 Min. : 0.00000 0 :1020
## 1st Qu.:0.000000 1st Qu.: 0.00000 BCCDC03-032: 1
## Median :0.000000 Median : 0.00000 GIIb : 1
## Mean :0.006849 Mean : 0.02251
## 3rd Qu.:0.000000 3rd Qu.: 0.00000
## Max. :2.000000 Max. :14.00000
##
## ggi ci si
## Min. :0.000000 Min. :0.000000 0 :1021
## 1st Qu.:0.000000 1st Qu.:0.000000 BCCDC04-003: 1
## Median :0.000000 Median :0.000000
## Mean :0.002935 Mean :0.003914
## 3rd Qu.:0.000000 3rd Qu.:0.000000
## Max. :2.000000 Max. :3.000000
##
## ggj cj sj
## Min. :0.000000 Min. :0.000000 0 :1021
## 1st Qu.:0.000000 1st Qu.:0.000000 BCCDC04-008: 1
## Median :0.000000 Median :0.000000
## Mean :0.002935 Mean :0.006849
## 3rd Qu.:0.000000 3rd Qu.:0.000000
## Max. :2.000000 Max. :5.000000
##
## Country2 Veh1_D_2
## 0 :547 0 :711
## Sweden : 71 Oyster : 68
## United Kingdom : 51 Shellfish: 23
## The Netherlands: 49 oyster : 16
## Australia : 41 Oysters : 12
## Finland : 26 lettuce : 11
## (Other) :237 (Other) :181
## Veh2_D_2 Veh3_D_2
## 0 :1000 0 :1020
## Salad : 3 house salad : 1
## areas contami ted with index case vomit: 1 udon noodles: 1
## assymptomatic foodhandler : 1
## buffet spring rolls : 1
## coleslaw : 1
## (Other) : 15
## Action2_2
## 0 :887
## groups with affected members were excluded from camp activities and limited to specific bathrooms and water fountains : 3
## professio lly cleaned restaurant : 3
## 1 week sanitation and sterilization of the ship after cruise 1, however outbreak continued on the next 5 cruises : 1
## admission to the hospital closed 3 times, 34/41 guidlines for NoV outbreak control covered, control implemented via the hospital hygiene team: 1
## admissions suspended, handwashing, enviornmental cleaning, visitor restriction, linen cleaning, staff policy etc. : 1
## (Other) :126
## Comments_2
## 0 :318
## : 22
## Hosp A ward 7C : 2
## Hosp A ward 7E : 2
## Outbreak 13 of 19 Iritani 2008 : 2
## 1 of 12 outbreaks reported in shinkawa article; cases/persons at risk and the subsequent attack rate includes the food handler data presented in table 1: 1
## (Other) :675
## Path2_2 Setting_2 category1
## 0 :976 0 :350 Foodservice :309
## Kobuvirus : 4 Restaurant :154 Hospital/Nursi:225
## Adenovirus : 2 : 22 Leisure :153
## astrovirus : 2 Hotel : 18 Other :120
## Clostridium difficile: 2 cruise ship: 14 School/Daycare: 84
## rotavirus : 2 multiple : 11 Unknown : 74
## (Other) : 34 (Other) :453 (Other) : 57
## strainothergg2c4 gg2c4 Vomit IncInd
## Min. :0.000000 :716 Min. :0.0000 Min. :0.000000
## 1st Qu.:0.000000 Yes:306 1st Qu.:0.0000 1st Qu.:0.000000
## Median :0.000000 Median :0.0000 Median :0.000000
## Mean :0.005871 Mean :0.4907 Mean :0.001957
## 3rd Qu.:0.000000 3rd Qu.:1.0000 3rd Qu.:0.000000
## Max. :1.000000 Max. :1.0000 Max. :1.000000
## NA's :1
## SymInd PooledLat PooledSym PooledAge
## Min. :0.000000 Min. : 0.000 Min. : 0.000 Min. : 0.000
## 1st Qu.:0.000000 1st Qu.: 0.000 1st Qu.: 0.000 1st Qu.: 0.000
## Median :0.000000 Median : 0.000 Median : 0.000 Median : 0.000
## Mean :0.005871 Mean : 1.889 Mean : 3.154 Mean : 2.401
## 3rd Qu.:0.000000 3rd Qu.: 0.000 3rd Qu.: 0.000 3rd Qu.: 0.000
## Max. :1.000000 Max. :67.500 Max. :96.000 Max. :85.000
## NA's :2
## IndividualLatent IndividualSymptomatic
## Mode:logical :1017
## NA's:1022 Y: 5
##
##
##
##
##
## [1] "data.frame"
Here we can see there are 1022 observations (so just over 1,000). Each observation has 139 attached variables.
To first explore the data, I decided to remove those observations that didn’t have an EpiCurve, narrowing our total observations down to 231. This is a little over 5x less observations than in the raw data.
## id Author Pub_Year pubmedid EpiCurve
## 1 2 Akihara 2005 15841336 Y
## 2 17 Becker 2000 11071673 Y
## 3 75 CDC 1993 8246858 Y
## 4 76 CDC 2000 10738840 Y
## 5 77 CDC 2000 10738840 Y
## 6 83 CDC 2002 12530708 Y
## 7 84 CDC 2002 12530708 Y
## 8 85 CDC 2002 12530708 Y
## 9 86 CDC 2002 12530708 Y
## 10 88 CDC 2005 16224449 Y
## 11 94 CDC 2007 17625494 Y
## 12 111 Corwin 1999 10674667 Y
## 13 139 Dowell 1995 7769284 Y
## 14 143 Ewald 2000 10812750 Y
## 15 149 Ferreira 2008 18098155 Y
## 16 173 Grima 2009 19215711 Y
## 17 228 Hirakata 2005 15750067 Y
## 18 232 Holtby 2001 12109400 Y
## 19 233 Honish 2008 18802982 Y
## 20 318 Isakbaeva 2005 15705344 Y
## 21 396 Kohn 1995 7837364 Y
## 22 407 Leuenberger 2007 17299671 Y
## 23 410 Love 2002 12211579 Y
## 24 412 Lynn 2004 15014560 Y
## 25 513 Morioka 2006 16785709 Y
## 26 555 Oppermann 2001 11434217 Y
## 27 613 Parshionikar 2003 12957912 Y
## 28 649 Sasaki 2006 16517856 Y
## 29 650 Schmid 2005 16437316 Y
## 30 750 Verbelen 2004 15065694 Y
## 31 786 Ward 2000 11022388 Y
## 32 787 Ward 2000 11022388 Y
## 33 840 Yee 2007 17366445 Y
## 34 843 Zomer 2009 19765351 Y
## 35 847 CDC 2009 19816397 Y
## 36 848 CDC 2009 19816397 Y
## 37 849 CDC 2009 19816397 Y
## 38 872 Hicks 1996 8854448 Y
## 39 876 Kirking 2010 20353365 Y
## 40 880 Maunula 2009 20003905 Y
## 41 881 Maunula 2009 20003905 Y
## 42 882 Maunula 2009 20003905 Y
## 43 885 Nordgren 2010 20031047 Y
## 44 887 Rondy 2011 20492742 Y
## 45 897 Vivancos 2010 20359496 Y
## 46 900 Yang 2010 20889096 Y
## 47 916 Bruggink 2009 19626605 Y
## 48 917 Bruggink 2009 19626605 Y
## 49 922 Bruggink 2009 19626605 Y
## 50 923 Bruggink 2009 19626605 Y
## 51 924 Bruggink 2009 19626605 Y
## 52 925 Bruggink 2009 19626605 Y
## 53 926 Bruggink 2009 19626605 Y
## 54 927 Bruggink 2009 19626605 Y
## 55 928 Bruggink 2009 19626605 Y
## 56 929 Bruggink 2009 19626605 Y
## 57 938 CDC 2009 19574952 Y
## 58 16 Bailey 2005 16318711 Y
## 59 66 Calderon-Margalit 2005 15724708 Y
## 60 89 CDC 2006 16617287 Y
## 61 90 CDC 2006 16617287 Y
## 62 91 CDC 2006 16617287 Y
## 63 92 CDC 2006 16617287 Y
## 64 109 Chimo s 2008 18494695 Y
## 65 110 Cooper 2005 15796276 Y
## 66 113 Daniels 2000 10753727 Y
## 67 138 Dippold 2003 14679720 Y
## 68 151 Fretz 2003 14517725 Y
## 69 159 Fretz 2005 15962549 Y
## 70 161 Friedman 2005 16274502 Y
## 71 162 Gallimore 2005 15724709 Y
## 72 168 Gotz 2002 11928841 Y
## 73 172 Green 1998 9617683 Y
## 74 226 Herwaldt 1994 8027335 Y
## 75 320 Johansson 2002 11880395 Y
## 76 322 Jones 2007 17616868 Y
## 77 397 Koo 2009 19245344 Y
## 78 401 Kuusi 2004 15109411 Y
## 79 409 Liu 2003 12907999 Y
## 80 480 Martinelli 2007 17868612 Y
## 81 503 McEvoy 1996 8990576 Y
## 82 619 Ponka 1999 10694159 Y
## 83 620 Prato 2004 15383150 Y
## 84 638 Rodriguez 1996 8880231 Y
## 85 640 Russo 1997 9324510 Y
## 86 641 Russo 1997 9324510 Y
## 87 646 Sala 2005 15724726 Y
## 88 729 Telfer 2004 15657625 Y
## 89 749 Uchino 2006 16936350 Y
## 90 788 Webby 2007 17366444 Y
## 91 789 Webby 2007 17366444 Y
## 92 841 Yu 2007 17893314 Y
## 93 851 Borchardt 2011 20199588 Y
## 94 884 Miyoshi 2010 20093770 Y
## 95 888 Schmid 2011 21272956 Y
## 96 894 Tseng 2011 20334730 Y
## 97 931 Bruggink 2009 19626605 Y
## 98 932 Bruggink 2009 19626605 Y
## 99 933 Bruggink 2009 19626605 Y
## 100 936 CDC 2009 19574952 Y
## 101 945 Big rdi 2008 18621444 Y
## 102 1012 Calderon-Margalit 2005 15724708 Y
## 103 1013 Calderon-Margalit 2005 15724708 Y
## 104 1014 Calderon-Margalit 2005 15724708 Y
## 105 1015 Calderon-Margalit 2005 15724708 Y
## 106 1016 Calderon-Margalit 2005 15724708 Y
## 107 1016 Calderon-Margalit 2005 15724708 Y
## 108 1022 Fretz 2003 14517725 Y
## 109 1023 Fretz 2003 14517725 Y
## 110 1 Akihara 2005 15841336 Y
## 111 18 Beller 1997 9268277 Y
## 112 20 Boccia 2002 12023910 Y
## 113 49 Brugha 1999 10098798 Y
## 114 82 CDC 2002 12530708 Y
## 115 93 CDC 2007 17443123 Y
## 116 107 Cheng 2006 16825139 Y
## 117 156 Fretz 2005 15962549 Y
## 118 164 Gilbride 2009 19193019 Y
## 119 167 Goller 2004 15564004 Y
## 120 225 Heijne 2009 19116045 Y
## 121 231 Hoebe 2004 14767824 Y
## 122 473 Makary 2009 18387215 Y
## 123 474 Malek 2009 19025489 Y
## 124 476 Marks 2003 12948373 Y
## 125 508 Migliorati 2008 18325266 Y
## 126 511 Miyoshi 2006 16632921 Y
## 127 512 Miyoshi 2006 16632921 Y
## 128 614 Patterson 1997 9219424 Y
## 129 648 Sartorius 2007 17454896 Y
## 130 730 Thornton 2002 12392249 Y
## 131 731 Thornton 2002 12392249 Y
## 132 783 Vivancos 2009 19147386 Y
## 133 784 Vivancos 2009 19147386 Y
## 134 785 Ward 2000 11022388 Y
## 135 790 Webby 2007 17366444 Y
## 136 792 Werber 2009 19534843 Y
## 137 850 Barrabeig 2010 20843351 Y
## 138 890 ter Waarbeek 2010 20056481 Y
## 139 914 Scarcella 2009 19643050 Y
## 140 915 Bruggink 2009 19626605 Y
## 141 918 Bruggink 2009 19626605 Y
## 142 919 Bruggink 2009 19626605 Y
## 143 920 Bruggink 2009 19626605 Y
## 144 921 Bruggink 2009 19626605 Y
## 145 934 Bruggink 2009 19626605 Y
## 146 937 CDC 2009 19574952 Y
## 147 999 O'Reilley 2007 17243052 Y
## 148 1001 Phan 2006 16628578 Y
## 149 1020 Nygard 2004 15061496 Y
## 150 3 Anderson 2001 11724717 Y
## 151 4 Anderson 2003 12552455 Y
## 152 19 Berg 2000 10804152 Y
## 153 48 Brown 2001 11467799 Y
## 154 68 Carrique-Mas 2003 12948374 Y
## 155 87 CDC 2004 15343147 Y
## 156 95 CDC 2007 18030282 Y
## 157 96 CDC 2008 18172420 Y
## 158 106 Cheesbrough 2000 11057964 Y
## 159 114 David 2007 17883318 Y
## 160 115 De Wit 2007 17602749 Y
## 161 140 Doyle 2004 15075483 Y
## 162 141 Doyle 2004 15075483 Y
## 163 152 Fretz 2005 15962549 Y
## 164 153 Fretz 2005 15962549 Y
## 165 154 Fretz 2005 15962549 Y
## 166 155 Fretz 2005 15962549 Y
## 167 157 Fretz 2005 15962549 Y
## 168 158 Fretz 2005 15962549 Y
## 169 160 Fretz 2009 19280140 Y
## 170 174 Grotto 2004 15597223 Y
## 171 227 Hewitt 2007 17965205 Y
## 172 234 Iizuka 2005 16249634 Y
## 173 319 Isakbaeva 2005 15933572 Y
## 174 321 Johnston 2007 17682985 Y
## 175 386 Kamenov 2007 17868598 Y
## 176 387 Kanerva 2009 19157648 Y
## 177 388 Kassa 2001 11764683 Y
## 178 390 Khan 2003 14529638 Y
## 179 391 Kilgore 1996 8603955 Y
## 180 398 Kukkula 1999 10558930 Y
## 181 399 Kuo 2009 19280137 Y
## 182 400 Kuusi 2002 12211580 Y
## 183 411 Lynn 2004 15014560 Y
## 184 475 Marks 2000 10982072 Y
## 185 481 Marx 1999 10349945 Y
## 186 500 McCall 2002 12434696 Y
## 187 501 McDonnell 1997 8996048 Y
## 188 502 McDonnell 1997 8996048 Y
## 189 507 Medici 2009 19220341 Y
## 190 509 Milazzo 2002 12206380 Y
## 191 510 Miller 2002 12549523 Y
## 192 525 varro 2005 15796277 Y
## 193 530 Ng 2005 16321654 Y
## 194 611 Papadopoulos 2006 16680229 Y
## 195 612 Parashar 1998 10030711 Y
## 196 615 Pedalino 2003 12631977 Y
## 197 618 Podewils 2007 17076938 Y
## 198 621 Rao 2009 19619058 Y
## 199 643 Sakon 2005 16116265 Y
## 200 644 Sakon 2005 16116265 Y
## 201 645 Sakon 2005 16116265 Y
## 202 652 Schmid 2007 17646906 Y
## 203 723 Simon 2006 16716968 Y
## 204 725 Stafford 1997 9375446 Y
## 205 748 Turcios-Ruiz 2008 18534621 Y
## 206 825 Widdowson 2005 15840859 Y
## 207 826 Wu 2005 16276954 Y
## 208 842 Zingg 2005 15796278 Y
## 209 878 Le Guyader 2010 20053852 Y
## 210 883 Mesquita 2009 19883537 Y
## 211 886 Ohwaki 2009 19934537 Y
## 212 891 Tseng 2011 20334730 Y
## 213 892 Tseng 2011 20334730 Y
## 214 893 Tseng 2011 20334730 Y
## 215 895 Visser 2010 20650052 Y
## 216 896 Visser 2010 20650052 Y
## 217 898 Wadl 2010 20163705 Y
## 218 930 Bruggink 2009 19626605 Y
## 219 935 Bruggink 2009 19626605 Y
## 220 941 Beersma 2009 19147355 Y
## 221 943 Iijima 2008 18806359 Y
## 222 1018 Eriksen 2004 15511300 Y
## 223 1021 Chalmers 1995 7641830 Y
## 224 1024 Simmons 2007 17912982 Y
## 225 531 Ng 2005 16321654 Y
## 226 532 Ng 2005 16321654 Y
## 227 533 Ng 2005 16321654 Y
## 228 534 Ng 2005 16321654 Y
## 229 535 Ng 2005 16321654 Y
## 230 874 Kimura 2011 20429969 Y
## 231 899 Wikswo 2011 21429864 Y
## TDComment
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12 Not sure
## 13 Not sure
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22 Not sure
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80 Not sure
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100 Not sure if patients and employees should be separated into primary/secondary cases
## 101
## 102 Not sure
## 103
## 104
## 105
## 106
## 107
## 108 Staff treated as secondary cases
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116 Not sure
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158 Not sure
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183 Not sure
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194 Not sure
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206 Not sure
## 207
## 208 Not sure
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220 Not sure
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## AHComment Trans1 Trans1_O Trans2
## 1 Unspecified 0 (not applicable)
## 2 Foodborne 0 Person to Person
## 3 Foodborne 0 (not applicable)
## 4 Foodborne 0 (not applicable)
## 5 Person to Person 0 (not applicable)
## 6 Unspecified 0 (not applicable)
## 7 Foodborne 0 Person to Person
## 8 Unspecified 0 (not applicable)
## 9 Unspecified 0 (not applicable)
## 10 Person to Person 0 Environmental
## 11 Person to Person 0 Foodborne
## 12 Person to Person 0 (not applicable)
## 13 Foodborne 0 (not applicable)
## 14 Waterborne 0 Foodborne
## 15 Unspecified 0 (not applicable)
## 16 Person to Person 0 Environmental
## 17 Foodborne 0 Person to Person
## 18 Foodborne 0 (not applicable)
## 19 Environmental 0 Person to Person
## 20 Foodborne 0 Person to Person
## 21 Foodborne 0 (not applicable)
## 22 Person to Person 0 Environmental
## 23 Foodborne 0 Person to Person
## 24 Unspecified 0 (not applicable)
## 25 Foodborne 0 (not applicable)
## 26 Person to Person 0 (not applicable)
## 27 Waterborne 0 (not applicable)
## 28 Foodborne 0 Person to Person
## 29 Person to Person 0 Environmental
## 30 Person to Person 0 (not applicable)
## 31 Person to Person 0 (not applicable)
## 32 Unknown 0 (not applicable)
## 33 Person to Person 0 Environmental
## 34 Foodborne 0 (not applicable)
## 35 Unknown 0 (not applicable)
## 36 Unknown 0 (not applicable)
## 37 Unspecified 0 (not applicable)
## 38 Foodborne 0 (not applicable)
## 39 Person to Person 0 Environmental
## 40 Foodborne 0 (not applicable)
## 41 Foodborne 0 Person to Person
## 42 Foodborne 0 (not applicable)
## 43 Foodborne 0 (not applicable)
## 44 Unknown 0 Person to Person
## 45 Person to Person 0 (not applicable)
## 46 Person to Person 0 (not applicable)
## 47 Unspecified 0 (not applicable)
## 48 Unspecified 0 (not applicable)
## 49 Unspecified 0 (not applicable)
## 50 Unspecified 0 (not applicable)
## 51 Unspecified 0 (not applicable)
## 52 Unspecified 0 (not applicable)
## 53 Unspecified 0 (not applicable)
## 54 Unspecified 0 (not applicable)
## 55 Unspecified 0 (not applicable)
## 56 Unspecified 0 (not applicable)
## 57 Person to Person 0 (not applicable)
## 58 Unknown 0 (not applicable)
## 59 probably not usable Environmental 0 Person to Person
## 60 Foodborne 0 (not applicable)
## 61 Foodborne 0 (not applicable)
## 62 Foodborne 0 (not applicable)
## 63 Foodborne 0 (not applicable)
## 64 Person to Person 0 Environmental
## 65 Unspecified 0 (not applicable)
## 66 Foodborne 0 (not applicable)
## 67 Foodborne 0 (not applicable)
## 68 confirmed Person to Person 0 (not applicable)
## 69 Person to Person 0 (not applicable)
## 70 Foodborne 0 Person to Person
## 71 Foodborne 0 (not applicable)
## 72 Foodborne 0 (not applicable)
## 73 Unspecified 0 (not applicable)
## 74 Foodborne 0 (not applicable)
## 75 Foodborne 0 Person to Person
## 76 Person to Person 0 Environmental
## 77 Person to Person 0 Environmental
## 78 Waterborne 0 (not applicable)
## 79 Person to Person 0 Environmental
## 80 Waterborne 0 (not applicable)
## 81 Person to Person 0 (not applicable)
## 82 Foodborne 0 Person to Person
## 83 Foodborne 0 Person to Person
## 84 Person to Person 0 (not applicable)
## 85 Person to Person 0 (not applicable)
## 86 Person to Person 0 (not applicable)
## 87 Foodborne 0 (not applicable)
## 88 Foodborne 0 (not applicable)
## 89 Unknown 0 (not applicable)
## 90 confirmed Foodborne 0 (not applicable)
## 91 Foodborne 0 (not applicable)
## 92 Unspecified 0 (not applicable)
## 93 Waterborne 0 Foodborne
## 94 Unknown 0 (not applicable)
## 95 Foodborne 0 Person to Person
## 96 Unspecified 0 (not applicable)
## 97 Unspecified 0 (not applicable)
## 98 Unspecified 0 (not applicable)
## 99 Unspecified 0 (not applicable)
## 100 Person to Person 0 (not applicable)
## 101 Unspecified 0 (not applicable)
## 102 Person to Person 0 (not applicable)
## 103 Person to Person 0 (not applicable)
## 104 Person to Person 0 (not applicable)
## 105 Person to Person 0 (not applicable)
## 106 Person to Person 0 (not applicable)
## 107 Person to Person 0 (not applicable)
## 108 Unspecified 0 (not applicable)
## 109 Unspecified 0 (not applicable)
## 110 confirmed Unspecified 0 (not applicable)
## 111 Waterborne 0 (not applicable)
## 112 Waterborne 0 Person to Person
## 113 Waterborne 0 Foodborne
## 114 Unspecified 0 (not applicable)
## 115 Waterborne 0 (not applicable)
## 116 Unspecified 0 (not applicable)
## 117 Unspecified 0 (not applicable)
## 118 Unspecified 0 (not applicable)
## 119 Unspecified 0 (not applicable)
## 120 Person to Person 0 Environmental
## 121 Waterborne 0 (not applicable)
## 122 Foodborne 0 (not applicable)
## 123 Foodborne 0 Environmental
## 124 Person to Person 0 Environmental
## 125 Waterborne 0 Environmental
## 126 Person to Person 0 (not applicable)
## 127 Person to Person 0 (not applicable)
## 128 Foodborne 0 (not applicable)
## 129 Waterborne 0 Person to Person
## 130 Person to Person 0 (not applicable)
## 131 Person to Person 0 (not applicable)
## 132 Foodborne 0 (not applicable)
## 133 Foodborne 0 (not applicable)
## 134 Person to Person 0 (not applicable)
## 135 Foodborne 0 (not applicable)
## 136 Waterborne 0 (not applicable)
## 137 Foodborne 0 Person to Person
## 138 Waterborne 0 Person to Person
## 139 Waterborne 0 (not applicable)
## 140 Unspecified 0 (not applicable)
## 141 Unspecified 0 (not applicable)
## 142 Unspecified 0 (not applicable)
## 143 Unspecified 0 (not applicable)
## 144 Unspecified 0 (not applicable)
## 145 Unspecified 0 (not applicable)
## 146 Person to Person 0 (not applicable)
## 147 Waterborne 0 (not applicable)
## 148 Unspecified 0 (not applicable)
## 149 Waterborne 0 Person to Person
## 150 confirmed Foodborne 0 (not applicable)
## 151 confirmed Waterborne 0 Foodborne
## 152 Foodborne 0 (not applicable)
## 153 Waterborne 0 (not applicable)
## 154 Waterborne 0 Person to Person
## 155 Waterborne 0 (not applicable)
## 156 Foodborne 0 Environmental
## 157 Environmental 0 Person to Person
## 158 Environmental 0 (not applicable)
## 159 Foodborne 0 (not applicable)
## 160 Foodborne 0 (not applicable)
## 161 Foodborne 0 (not applicable)
## 162 Foodborne 0 (not applicable)
## 163 confirmed Foodborne 0 (not applicable)
## 164 Environmental 0 (not applicable)
## 165 Person to Person 0 Environmental
## 166 Waterborne 0 (not applicable)
## 167 Person to Person 0 (not applicable)
## 168 Person to Person 0 (not applicable)
## 169 Person to Person 0 Environmental
## 170 Foodborne 0 (not applicable)
## 171 Waterborne 0 (not applicable)
## 172 Unspecified 0 (not applicable)
## 173 probably not usable Person to Person 0 Environmental
## 174 Person to Person 0 Environmental
## 175 Person to Person 0 (not applicable)
## 176 Person to Person 0 (not applicable)
## 177 Foodborne 0 (not applicable)
## 178 Person to Person 0 (not applicable)
## 179 Foodborne 0 (not applicable)
## 180 Waterborne 0 (not applicable)
## 181 Person to Person 0 Environmental
## 182 Person to Person 0 Environmental
## 183 Unspecified 0 (not applicable)
## 184 Person to Person 0 (not applicable)
## 185 Person to Person 0 (not applicable)
## 186 Person to Person 0 (not applicable)
## 187 Foodborne 0 (not applicable)
## 188 Unspecified 0 (not applicable)
## 189 Foodborne 0 Environmental
## 190 Person to Person 0 (not applicable)
## 191 Person to Person 0 (not applicable)
## 192 Person to Person 0 (not applicable)
## 193 Foodborne 0 (not applicable)
## 194 Waterborne 0 (not applicable)
## 195 Foodborne 0 (not applicable)
## 196 Waterborne 0 Person to Person
## 197 Waterborne 0 (not applicable)
## 198 Person to Person 0 (not applicable)
## 199 Person to Person 0 (not applicable)
## 200 Person to Person 0 (not applicable)
## 201 Unspecified 0 (not applicable)
## 202 Foodborne 0 (not applicable)
## 203 Unknown 0 (not applicable)
## 204 Foodborne 0 (not applicable)
## 205 Unspecified 0 (not applicable)
## 206 Environmental 0 (not applicable)
## 207 Environmental 0 Person to Person
## 208 Unspecified 0 (not applicable)
## 209 Foodborne 0 (not applicable)
## 210 Foodborne 0 Person to Person
## 211 Foodborne 0 Person to Person
## 212 confirmed Unknown 0 (not applicable)
## 213 Unspecified 0 (not applicable)
## 214 Unspecified 0 (not applicable)
## 215 confirmed Foodborne 0 Person to Person
## 216 Foodborne 0 Person to Person
## 217 Foodborne 0 (not applicable)
## 218 Unspecified 0 (not applicable)
## 219 Unspecified 0 (not applicable)
## 220 Person to Person 0 (not applicable)
## 221 Person to Person 0 Foodborne
## 222 Foodborne 0 Person to Person
## 223 Foodborne 0 (not applicable)
## 224 Foodborne 0 (not applicable)
## 225 Foodborne 0 (not applicable)
## 226 Foodborne 0 (not applicable)
## 227 Foodborne 0 (not applicable)
## 228 Foodborne 0 (not applicable)
## 229 Foodborne 0 (not applicable)
## 230 Environmental 0 (not applicable)
## 231 Person to Person 0 Environmental
## Trans2_O Trans3 Trans3_O Risk1 Risk2 RiskAll
## 1 0 (not applicable) 0 0.00000 NA 0.00000
## 2 0 (not applicable) 0 108.00000 NA 108.00000
## 3 0 (not applicable) 0 0.00000 NA 0.00000
## 4 0 (not applicable) 0 509.00000 NA 509.00000
## 5 0 (not applicable) 0 36.00000 NA 36.00000
## 6 0 (not applicable) 0 0.00000 NA 0.00000
## 7 0 (not applicable) 0 2925.00000 NA 2925.00000
## 8 0 (not applicable) 0 3826.00000 NA 3826.00000
## 9 0 (not applicable) 0 1280.00000 NA 1280.00000
## 10 0 (not applicable) 0 24000.00000 NA 24000.00000
## 11 0 (not applicable) 0 53.00000 NA 53.00000
## 12 0 (not applicable) 0 4200.00000 NA 4200.00000
## 13 0 (not applicable) 0 0.00000 NA 0.00000
## 14 0 (not applicable) 0 38.00000 NA 38.00000
## 15 0 (not applicable) 0 0.00000 NA 0.00000
## 16 0 (not applicable) 0 135.00000 NA 135.00000
## 17 0 (not applicable) 0 1492.00000 NA 1492.00000
## 18 0 (not applicable) 0 72.00000 NA 72.00000
## 19 0 (not applicable) 0 1800.00000 NA 1800.00000
## 20 0 Environmental 0 1276.00000 NA 1276.00000
## 21 0 (not applicable) 0 127.00000 67.0000 194.00000
## 22 0 (not applicable) 0 224.00000 NA 224.00000
## 23 0 Environmental 0 0.00000 NA 0.00000
## 24 0 (not applicable) 0 0.00000 NA 0.00000
## 25 0 (not applicable) 0 105.00000 NA 105.00000
## 26 0 (not applicable) 0 211.00000 NA 211.00000
## 27 0 (not applicable) 0 111.00000 NA 111.00000
## 28 0 (not applicable) 0 37.00000 NA 37.00000
## 29 0 (not applicable) 0 147.00000 66.0000 213.00000
## 30 0 (not applicable) 0 0.00000 NA 0.00000
## 31 0 (not applicable) 0 175.00000 NA 175.00000
## 32 0 (not applicable) 0 179.00000 NA 179.00000
## 33 0 (not applicable) 0 6985.00000 NA 6985.00000
## 34 0 (not applicable) 0 1744.00000 NA 1744.00000
## 35 0 (not applicable) 0 5270.00000 NA 5270.00000
## 36 0 (not applicable) 0 3868.00000 NA 3868.00000
## 37 0 (not applicable) 0 6180.00000 NA 6180.00000
## 38 0 (not applicable) 0 107.00000 NA 107.00000
## 39 0 (not applicable) 0 37.00000 85.0000 122.00000
## 40 0 (not applicable) 0 30.00000 NA 30.00000
## 41 0 (not applicable) 0 69.00000 NA 69.00000
## 42 0 (not applicable) 0 30.00000 NA 30.00000
## 43 0 (not applicable) 0 83.00000 NA 83.00000
## 44 0 Other smoking 284.00000 NA 284.00000
## 45 0 (not applicable) 0 1714.00000 NA 1714.00000
## 46 0 (not applicable) 0 361.00000 NA 361.00000
## 47 0 (not applicable) 0 0.00000 NA NA
## 48 0 (not applicable) 0 0.00000 NA NA
## 49 0 (not applicable) 0 0.00000 NA NA
## 50 0 (not applicable) 0 0.00000 NA NA
## 51 0 (not applicable) 0 0.00000 NA NA
## 52 0 (not applicable) 0 0.00000 NA NA
## 53 0 (not applicable) 0 0.00000 NA NA
## 54 0 (not applicable) 0 0.00000 NA NA
## 55 0 (not applicable) 0 0.00000 NA NA
## 56 0 (not applicable) 0 0.00000 NA NA
## 57 0 (not applicable) 0 0.00000 NA NA
## 58 0 (not applicable) 0 13648.00000 NA 13648.00000
## 59 0 (not applicable) 0 0.00000 NA 0.00000
## 60 0 (not applicable) 0 29.00000 NA 29.00000
## 61 0 (not applicable) 0 95.00000 NA 95.00000
## 62 0 (not applicable) 0 18.00000 NA 18.00000
## 63 0 (not applicable) 0 0.00000 NA 0.00000
## 64 0 (not applicable) 0 1276.00000 NA 1276.00000
## 65 0 (not applicable) 0 0.00000 NA 0.00000
## 66 0 (not applicable) 0 2054.00000 NA 2054.00000
## 67 0 (not applicable) 0 113.00000 NA 113.00000
## 68 0 (not applicable) 0 0.00000 NA 0.00000
## 69 0 (not applicable) 0 0.00000 NA 0.00000
## 70 0 (not applicable) 0 7169.00000 NA 7169.00000
## 71 0 (not applicable) 0 370.00000 NA 370.00000
## 72 0 (not applicable) 0 524.00000 NA 524.00000
## 73 0 (not applicable) 0 56.00000 NA 56.00000
## 74 0 (not applicable) 0 500.00000 NA 500.00000
## 75 0 (not applicable) 0 219.00000 195.4545 414.45455
## 76 0 Foodborne 0 27.00000 NA 27.00000
## 77 0 (not applicable) 0 0.00000 NA 0.00000
## 78 0 (not applicable) 0 672.00000 NA 672.00000
## 79 0 (not applicable) 0 61.90476 NA 61.90476
## 80 0 (not applicable) 0 0.00000 NA 0.00000
## 81 0 (not applicable) 0 0.00000 NA 0.00000
## 82 0 (not applicable) 0 204.00000 NA 204.00000
## 83 0 (not applicable) 0 0.00000 NA 0.00000
## 84 0 (not applicable) 0 257.00000 NA 257.00000
## 85 0 (not applicable) 0 0.00000 NA 0.00000
## 86 0 (not applicable) 0 0.00000 NA 0.00000
## 87 0 (not applicable) 0 0.00000 NA 0.00000
## 88 0 (not applicable) 0 125.00000 NA 125.00000
## 89 0 (not applicable) 0 250.00000 NA 250.00000
## 90 0 (not applicable) 0 192.00000 NA 192.00000
## 91 0 (not applicable) 0 87.00000 NA 87.00000
## 92 0 (not applicable) 0 0.00000 NA 0.00000
## 93 0 (not applicable) 0 0.00000 NA 0.00000
## 94 0 (not applicable) 0 0.00000 NA 0.00000
## 95 0 Environmental 0 790.00000 NA 790.00000
## 96 0 (not applicable) 0 351.35135 NA 351.35135
## 97 0 (not applicable) 0 0.00000 NA NA
## 98 0 (not applicable) 0 0.00000 NA NA
## 99 0 (not applicable) 0 0.00000 NA NA
## 100 0 (not applicable) 0 0.00000 NA NA
## 101 0 (not applicable) 0 0.00000 NA NA
## 102 0 (not applicable) 0 0.00000 NA NA
## 103 0 (not applicable) 0 0.00000 NA NA
## 104 0 (not applicable) 0 0.00000 NA NA
## 105 0 (not applicable) 0 0.00000 NA NA
## 106 0 (not applicable) 0 0.00000 NA NA
## 107 0 (not applicable) 0 0.00000 NA NA
## 108 0 (not applicable) 0 0.00000 NA NA
## 109 0 (not applicable) 0 0.00000 NA NA
## 110 0 (not applicable) 0 0.00000 NA 0.00000
## 111 0 (not applicable) 0 1732.00000 NA 1732.00000
## 112 0 (not applicable) 0 0.00000 NA 0.00000
## 113 0 (not applicable) 0 0.00000 NA 0.00000
## 114 0 (not applicable) 0 3789.00000 NA 3789.00000
## 115 0 (not applicable) 0 210.00000 NA 210.00000
## 116 0 (not applicable) 0 242.00000 NA 242.00000
## 117 0 (not applicable) 0 25.00000 NA 25.00000
## 118 0 (not applicable) 0 0.00000 NA 0.00000
## 119 0 (not applicable) 0 200.00000 NA 200.00000
## 120 0 (not applicable) 0 4500.00000 NA 4500.00000
## 121 0 (not applicable) 0 191.00000 258.0000 449.00000
## 122 0 (not applicable) 0 273.00000 NA 273.00000
## 123 0 (not applicable) 0 0.00000 NA 0.00000
## 124 0 (not applicable) 0 492.00000 256.0000 748.00000
## 125 0 (not applicable) 0 0.00000 NA 0.00000
## 126 0 (not applicable) 0 220.00000 NA 220.00000
## 127 0 (not applicable) 0 181.00000 NA 181.00000
## 128 0 (not applicable) 0 94.00000 NA 94.00000
## 129 0 (not applicable) 0 0.00000 NA 0.00000
## 130 0 (not applicable) 0 2800.00000 NA 2800.00000
## 131 0 (not applicable) 0 4500.00000 NA 4500.00000
## 132 0 (not applicable) 0 26.00000 NA 26.00000
## 133 0 (not applicable) 0 106.00000 NA 106.00000
## 134 0 (not applicable) 0 795.00000 NA 795.00000
## 135 0 (not applicable) 0 0.00000 NA 0.00000
## 136 0 (not applicable) 0 16990.00000 NA 16990.00000
## 137 0 (not applicable) 0 80.00000 NA 80.00000
## 138 0 (not applicable) 0 84.00000 79.0000 163.00000
## 139 0 (not applicable) 0 0.00000 NA NA
## 140 0 (not applicable) 0 0.00000 NA NA
## 141 0 (not applicable) 0 0.00000 NA NA
## 142 0 (not applicable) 0 0.00000 NA NA
## 143 0 (not applicable) 0 0.00000 NA NA
## 144 0 (not applicable) 0 0.00000 NA NA
## 145 0 (not applicable) 0 0.00000 NA NA
## 146 0 (not applicable) 0 0.00000 NA NA
## 147 0 (not applicable) 0 0.00000 NA NA
## 148 0 (not applicable) 0 0.00000 NA NA
## 149 0 (not applicable) 0 0.00000 NA NA
## 150 0 (not applicable) 0 753.00000 NA 753.00000
## 151 0 (not applicable) 0 81.00000 NA 81.00000
## 152 0 (not applicable) 0 0.00000 NA 0.00000
## 153 0 (not applicable) 0 0.00000 NA 0.00000
## 154 0 (not applicable) 0 772.00000 NA 772.00000
## 155 0 (not applicable) 0 189.00000 NA 189.00000
## 156 0 (not applicable) 0 625.00000 NA 625.00000
## 157 0 (not applicable) 0 266.00000 NA 266.00000
## 158 0 (not applicable) 0 4517.00000 NA 4517.00000
## 159 0 (not applicable) 0 0.00000 NA 0.00000
## 160 0 (not applicable) 0 850.00000 NA 850.00000
## 161 0 (not applicable) 0 36.00000 NA 36.00000
## 162 0 (not applicable) 0 0.00000 NA 0.00000
## 163 0 (not applicable) 0 34.00000 NA 34.00000
## 164 0 (not applicable) 0 26.00000 NA 26.00000
## 165 0 (not applicable) 0 30.00000 NA 30.00000
## 166 0 (not applicable) 0 0.00000 NA 0.00000
## 167 0 (not applicable) 0 0.00000 NA 0.00000
## 168 0 (not applicable) 0 0.00000 NA 0.00000
## 169 0 (not applicable) 0 1067.00000 NA 1067.00000
## 170 0 (not applicable) 0 1195.48872 NA 1195.48872
## 171 0 (not applicable) 0 0.00000 NA 0.00000
## 172 0 (not applicable) 0 84.00000 NA 84.00000
## 173 0 (not applicable) 0 8.00000 NA 8.00000
## 174 0 (not applicable) 0 675.00000 NA 675.00000
## 175 0 (not applicable) 0 35000.00000 NA 35000.00000
## 176 0 (not applicable) 0 2447.00000 NA 2447.00000
## 177 0 (not applicable) 0 137.00000 NA 137.00000
## 178 0 (not applicable) 0 0.00000 NA 0.00000
## 179 0 (not applicable) 0 0.00000 NA 0.00000
## 180 0 (not applicable) 0 2585.00000 NA 2585.00000
## 181 0 (not applicable) 0 284.00000 NA 284.00000
## 182 0 (not applicable) 0 0.00000 NA 0.00000
## 183 0 (not applicable) 0 0.00000 NA 0.00000
## 184 0 (not applicable) 0 83.00000 NA 83.00000
## 185 0 (not applicable) 0 188.00000 NA 188.00000
## 186 0 (not applicable) 0 0.00000 NA 0.00000
## 187 0 (not applicable) 0 299.00000 NA 299.00000
## 188 0 (not applicable) 0 0.00000 NA 0.00000
## 189 0 Person to Person 0 61.00000 NA 61.00000
## 190 0 (not applicable) 0 182.00000 NA 182.00000
## 191 0 (not applicable) 0 0.00000 NA 0.00000
## 192 0 (not applicable) 0 0.00000 NA 0.00000
## 193 0 (not applicable) 0 154.00000 NA 154.00000
## 194 0 (not applicable) 0 0.00000 NA 0.00000
## 195 0 (not applicable) 0 234.00000 NA 234.00000
## 196 0 (not applicable) 0 234.00000 NA 234.00000
## 197 0 (not applicable) 0 189.00000 74.0000 263.00000
## 198 0 (not applicable) 0 0.00000 NA 0.00000
## 199 0 (not applicable) 0 0.00000 NA 0.00000
## 200 0 (not applicable) 0 0.00000 NA 0.00000
## 201 0 (not applicable) 0 0.00000 NA 0.00000
## 202 0 (not applicable) 0 325.00000 NA 325.00000
## 203 0 (not applicable) 0 0.00000 NA 0.00000
## 204 0 (not applicable) 0 0.00000 NA 0.00000
## 205 0 (not applicable) 0 35.00000 NA 35.00000
## 206 0 (not applicable) 0 107.00000 NA 107.00000
## 207 0 (not applicable) 0 427.00000 NA 427.00000
## 208 0 (not applicable) 0 203.00000 NA 203.00000
## 209 0 (not applicable) 0 34.00000 NA 34.00000
## 210 0 (not applicable) 0 21.00000 NA 21.00000
## 211 0 Environmental 0 698.00000 NA 698.00000
## 212 0 (not applicable) 0 319.63470 NA 319.63470
## 213 0 (not applicable) 0 348.31461 NA 348.31461
## 214 0 (not applicable) 0 331.42857 NA 331.42857
## 215 0 (not applicable) 0 34.00000 NA 34.00000
## 216 0 (not applicable) 0 41.00000 NA 41.00000
## 217 0 (not applicable) 0 815.00000 NA 815.00000
## 218 0 (not applicable) 0 0.00000 NA NA
## 219 0 (not applicable) 0 0.00000 NA NA
## 220 0 (not applicable) 0 0.00000 NA NA
## 221 0 (not applicable) 0 0.00000 NA NA
## 222 0 (not applicable) 0 0.00000 NA NA
## 223 0 (not applicable) 0 0.00000 NA NA
## 224 0 (not applicable) 0 0.00000 NA NA
## 225 0 (not applicable) 0 41.00000 NA 41.00000
## 226 0 (not applicable) 0 28.00000 NA 28.00000
## 227 0 (not applicable) 0 47.00000 NA 47.00000
## 228 0 (not applicable) 0 134.00000 NA 134.00000
## 229 0 (not applicable) 0 39.00000 NA 39.00000
## 230 0 (not applicable) 0 0.00000 NA 0.00000
## 231 0 (not applicable) 0 1533.00000 NA 1533.00000
## Cases1 Cases2 CasesAll Rate1 Rate2 RateAll Hospitalizations
## 1 15 NA 15 NA NA 0.000000 0
## 2 43 22 65 39.814815 NA 39.814815 0
## 3 180 4 184 NA NA 0.000000 3
## 4 191 NA 191 37.524558 NA 37.524558 0
## 5 19 NA 19 53.000000 NA 53.000000 0
## 6 704 NA 704 NA NA 0.000000 0
## 7 369 NA 369 12.615385 NA 12.615385 0
## 8 131 NA 131 3.423941 NA 3.423941 0
## 9 492 NA 492 38.437500 NA 38.437500 0
## 10 1169 NA 1169 4.870833 NA 4.870833 0
## 11 28 4 32 58.000000 NA 58.000000 0
## 12 1806 NA 1806 44.000000 NA 44.000000 NA
## 13 130 16 146 NA NA 0.000000 1
## 14 13 NA 13 34.210526 NA 34.210526 NA
## 15 112 NA 112 NA NA 0.000000 NA
## 16 44 NA 44 32.592593 NA 32.592593 0
## 17 660 23 683 44.200000 NA 44.200000 0
## 18 47 4 51 65.277778 NA 65.277778 0
## 19 139 NA 139 7.722222 NA 7.722222 0
## 20 212 175 387 16.614420 NA 16.614420 0
## 21 73 4 77 57.480315 6.0000 63.480315 0
## 22 77 NA 77 34.375000 NA 34.375000 0
## 23 116 NA 116 NA NA 0.000000 0
## 24 24 NA 24 NA NA 0.000000 0
## 25 85 14 99 80.952381 NA 80.952381 0
## 26 83 NA 83 39.336493 NA 39.336493 NA
## 27 84 NA 84 76.000000 NA 76.000000 0
## 28 26 NA 26 70.000000 NA 70.000000 NA
## 29 53 7 60 36.054422 10.6000 46.654422 0
## 30 33 NA 33 NA NA 0.000000 0
## 31 18 NA 18 10.285714 NA 10.285714 NA
## 32 65 NA 65 36.312849 NA 36.312849 0
## 33 1173 NA 1173 17.000000 NA 17.000000 0
## 34 413 NA 413 24.000000 NA 24.000000 0
## 35 478 NA 478 9.070209 NA 9.070209 0
## 36 451 NA 451 11.659772 NA 11.659772 0
## 37 156 NA 156 2.524272 NA 2.524272 10
## 38 26 4 30 24.299065 NA 24.299065 0
## 39 15 7 22 41.000000 8.0000 49.000000 2
## 40 15 NA 15 50.000000 NA 50.000000 0
## 41 40 6 46 57.971014 NA 57.971014 0
## 42 15 NA 15 50.000000 NA 50.000000 0
## 43 33 NA 33 40.000000 NA 40.000000 0
## 44 104 NA 104 36.000000 NA 36.000000 0
## 45 196 NA 196 11.440000 NA 11.440000 NA
## 46 51 NA 51 14.100000 NA 14.100000 13
## 47 4 NA 4 NA NA NA 0
## 48 5 NA 5 NA NA NA 0
## 49 3 NA 3 NA NA NA 0
## 50 2 NA 2 NA NA NA 0
## 51 1 NA 1 NA NA NA 0
## 52 2 NA 2 NA NA NA 0
## 53 1 NA 1 NA NA NA 0
## 54 1 NA 1 NA NA NA 0
## 55 2 NA 2 NA NA NA 0
## 56 2 NA 2 NA NA NA 0
## 57 145 NA 145 NA NA NA 0
## 58 1340 NA 1340 9.818288 NA 9.818288 NA
## 59 279 NA 279 NA NA 0.000000 25
## 60 23 NA 23 80.000000 NA 80.000000 0
## 61 55 NA 55 58.000000 NA 58.000000 0
## 62 9 NA 9 50.000000 NA 50.000000 0
## 63 28 NA 28 NA NA 0.000000 0
## 64 359 NA 359 28.134796 NA 28.134796 0
## 65 66 NA 66 NA NA 0.000000 0
## 66 125 NA 125 6.085686 NA 6.085686 23
## 67 64 NA 64 56.637168 NA 56.637168 0
## 68 69 455 524 NA NA 0.000000 0
## 69 69 NA 69 NA NA 0.000000 0
## 70 2700 NA 2700 38.000000 NA 38.000000 8
## 71 37 NA 37 10.000000 NA 10.000000 NA
## 72 142 53 195 37.000000 NA 37.000000 0
## 73 29 NA 29 51.785714 NA 51.785714 0
## 74 245 NA 245 49.000000 NA 49.000000 0
## 75 158 43 201 72.000000 22.0000 94.000000 0
## 76 20 NA 20 74.000000 NA 74.000000 0
## 77 29 NA 29 NA NA 0.000000 0
## 78 368 NA 368 55.000000 NA 55.000000 0
## 79 26 NA 26 42.000000 NA 42.000000 2
## 80 2860 NA 2860 NA NA 0.000000 NA
## 81 378 NA 378 NA NA 0.000000 0
## 82 108 NA 108 53.000000 NA 53.000000 NA
## 83 81 22 103 NA NA 0.000000 0
## 84 126 NA 126 49.000000 NA 49.000000 3
## 85 60 NA 60 NA NA 0.000000 0
## 86 32 NA 32 NA NA 0.000000 0
## 87 37 3 40 NA NA 0.000000 0
## 88 73 NA 73 59.000000 NA 59.000000 1
## 89 71 NA 71 28.400000 NA 28.400000 0
## 90 45 2 47 23.437500 NA 23.437500 0
## 91 34 NA 34 39.080460 NA 39.080460 0
## 92 82 NA 82 NA NA 0.000000 0
## 93 229 8 237 NA NA 0.000000 0
## 94 48 NA 48 NA NA 0.000000 NA
## 95 204 56 260 25.800000 NA 25.800000 0
## 96 13 NA 13 3.700000 NA 3.700000 0
## 97 1 NA 1 NA NA NA 0
## 98 1 NA 1 NA NA NA 0
## 99 1 NA 1 NA NA NA 0
## 100 57 NA 57 NA NA NA 0
## 101 NA NA NA NA NA NA 0
## 102 33 NA 33 49.300000 NA 49.300000 11
## 103 8 NA 8 19.000000 NA 19.000000 0
## 104 103 NA 103 44.900000 NA 44.900000 6
## 105 17 NA 17 28.800000 NA 28.800000 3
## 106 57 NA 57 54.300000 NA 54.300000 0
## 107 28 NA 28 31.800000 NA 31.800000 5
## 108 47 32 79 NA NA NA 0
## 109 38 28 66 17.000000 11.0000 28.000000 0
## 110 5 NA 5 NA NA 0.000000 0
## 111 433 NA 433 25.000000 NA 25.000000 0
## 112 344 NA 344 NA NA 0.000000 5
## 113 134 NA 134 NA NA 0.000000 NA
## 114 395 NA 395 10.424914 NA 10.424914 0
## 115 141 NA 141 67.142857 NA 67.142857 NA
## 116 11 NA 11 4.545455 NA 4.545455 0
## 117 21 NA 21 84.000000 NA 84.000000 0
## 118 25 NA 25 NA NA 0.000000 0
## 119 66 NA 66 33.000000 NA 33.000000 0
## 120 326 NA 326 7.200000 NA 7.200000 54
## 121 90 39 129 47.000000 15.0000 62.000000 3
## 122 150 NA 150 55.000000 NA 55.000000 0
## 123 137 NA 137 NA NA 0.000000 0
## 124 153 76 229 31.000000 29.6875 60.687500 0
## 125 183 NA 183 NA NA 0.000000 NA
## 126 37 NA 37 16.818182 NA 16.818182 0
## 127 27 NA 27 14.917127 NA 14.917127 0
## 128 47 NA 47 50.000000 NA 50.000000 0
## 129 163 37 200 NA NA 0.000000 2
## 130 162 NA 162 6.000000 NA 6.000000 0
## 131 425 NA 425 9.000000 NA 9.000000 0
## 132 19 NA 19 73.100000 NA 73.100000 0
## 133 60 NA 60 56.600000 NA 56.600000 0
## 134 166 NA 166 20.880503 NA 20.880503 0
## 135 4 NA 4 NA NA 0.000000 0
## 136 1699 NA 1699 10.000000 NA 10.000000 NA
## 137 42 2 44 52.500000 NA 52.500000 0
## 138 71 16 87 85.000000 20.0000 105.000000 40
## 139 17 NA 17 8.900000 NA 8.900000 0
## 140 6 NA 6 NA NA NA 0
## 141 5 NA 5 NA NA NA 0
## 142 2 NA 2 NA NA NA 0
## 143 5 NA 5 NA NA NA 0
## 144 4 NA 4 NA NA NA 0
## 145 1 NA 1 NA NA NA 0
## 146 86 NA 86 NA NA NA 0
## 147 1450 NA 1450 NA NA NA 21
## 148 125 NA 125 NA NA NA 125
## 149 134 NA 134 65.000000 NA 65.000000 8
## 150 333 NA 333 44.000000 NA 44.000000 3
## 151 35 NA 35 43.209877 NA 43.209877 1
## 152 75 NA 75 NA NA 0.000000 0
## 153 448 NA 448 NA NA 0.000000 0
## 154 175 NA 175 22.668394 NA 22.668394 0
## 155 53 NA 53 28.000000 NA 28.000000 1
## 156 381 6 387 60.960000 NA 60.960000 0
## 157 103 NA 103 39.000000 NA 39.000000 0
## 158 942 NA 942 20.854549 NA 20.854549 0
## 159 79 NA 79 NA NA 0.000000 0
## 160 231 NA 231 27.500000 NA 27.500000 0
## 161 21 NA 21 58.000000 NA 58.000000 0
## 162 69 NA 69 NA NA 0.000000 0
## 163 29 NA 29 85.000000 NA 85.000000 0
## 164 21 NA 21 81.000000 NA 81.000000 0
## 165 13 NA 13 43.000000 NA 43.000000 0
## 166 650 NA 650 NA NA 0.000000 0
## 167 28 NA 28 NA NA 0.000000 0
## 168 35 NA 35 NA NA 0.000000 0
## 169 70 NA 70 6.560450 NA 6.560450 0
## 170 159 NA 159 13.300000 NA 13.300000 0
## 171 218 NA 218 NA NA 0.000000 0
## 172 28 11 39 33.333333 NA 33.333333 NA
## 173 6 1 7 75.000000 NA 75.000000 0
## 174 355 NA 355 52.592593 NA 52.592593 0
## 175 977 NA 977 2.791429 NA 2.791429 NA
## 176 445 NA 445 18.185533 NA 18.185533 0
## 177 80 NA 80 58.394161 NA 58.394161 1
## 178 63 NA 63 NA NA 0.000000 0
## 179 188 NA 188 NA NA 0.000000 NA
## 180 542 1113 1655 20.967118 NA 20.967118 0
## 181 176 NA 176 61.900000 NA 61.900000 4
## 182 331 NA 331 NA NA 0.000000 0
## 183 41 NA 41 NA NA 0.000000 0
## 184 52 NA 52 63.000000 NA 63.000000 0
## 185 142 8 150 75.531915 NA 75.531915 4
## 186 58 NA 58 NA NA 0.000000 0
## 187 131 9 140 43.812709 NA 43.812709 5
## 188 60 NA 60 NA NA 0.000000 0
## 189 35 NA 35 57.400000 NA 57.400000 0
## 190 79 2 81 43.406593 NA 43.406593 NA
## 191 281 13 294 NA NA 0.000000 4
## 192 51 9 60 NA NA 0.000000 0
## 193 69 NA 69 44.805195 NA 44.805195 0
## 194 709 NA 709 NA NA 0.000000 18
## 195 85 NA 85 36.000000 NA 36.000000 0
## 196 71 NA 71 30.000000 NA 30.000000 0
## 197 53 16 69 28.000000 21.6000 49.600000 0
## 198 258 NA 258 NA NA 0.000000 0
## 199 39 NA 39 NA NA 0.000000 0
## 200 105 NA 105 NA NA 0.000000 0
## 201 77 NA 77 NA NA 0.000000 0
## 202 172 10 182 52.900000 NA 52.900000 10
## 203 13 NA 13 NA NA 0.000000 0
## 204 97 NA 97 NA NA 0.000000 0
## 205 8 NA 8 22.857143 NA 22.857143 0
## 206 13 NA 13 12.149533 NA 12.149533 2
## 207 211 NA 211 49.414520 NA 49.414520 37
## 208 42 NA 42 20.689655 NA 20.689655 0
## 209 23 NA 23 67.647059 NA 67.647059 0
## 210 16 3 19 73.000000 NA 73.000000 0
## 211 102 NA 102 14.600000 NA 14.600000 0
## 212 70 NA 70 21.900000 NA 21.900000 0
## 213 31 NA 31 8.900000 NA 8.900000 0
## 214 58 NA 58 17.500000 NA 17.500000 0
## 215 18 8 26 53.000000 NA 53.000000 6
## 216 20 11 31 49.000000 NA 49.000000 6
## 217 101 NA 101 12.400000 NA 12.400000 0
## 218 3 NA 3 NA NA NA 0
## 219 1 NA 1 NA NA NA 0
## 220 221 NA 221 NA NA NA 197
## 221 NA NA NA NA NA NA 0
## 222 48 NA 48 53.000000 NA 53.000000 0
## 223 14 NA 14 NA NA NA 0
## 224 115 NA 115 30.000000 NA 30.000000 0
## 225 23 NA 23 56.097561 NA 56.097561 0
## 226 16 NA 16 57.142857 NA 57.142857 0
## 227 14 NA 14 29.787234 NA 29.787234 0
## 228 86 NA 86 64.179104 NA 64.179104 0
## 229 15 NA 15 38.461538 NA 38.461538 0
## 230 444 NA 444 NA NA 0.000000 0
## 231 236 NA 236 15.400000 NA 15.400000 12
## Deaths
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 NA
## 13 0
## 14 NA
## 15 NA
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 1
## 23 0
## 24 0
## 25 0
## 26 NA
## 27 0
## 28 NA
## 29 0
## 30 0
## 31 NA
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 4
## 45 NA
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 NA
## 59 5
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 1
## 69 0
## 70 0
## 71 NA
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 NA
## 81 0
## 82 NA
## 83 0
## 84 2
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 NA
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 3
## 103 0
## 104 0
## 105 1
## 106 0
## 107 1
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 NA
## 114 0
## 115 NA
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 NA
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 NA
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 NA
## 173 0
## 174 0
## 175 NA
## 176 9
## 177 0
## 178 0
## 179 NA
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 3
## 186 0
## 187 0
## 188 0
## 189 0
## 190 NA
## 191 1
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 2
## 206 0
## 207 9
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## Vehicle_1
## 1 0
## 2 Boxed Lunch
## 3 Oysters
## 4 Potato Salad
## 5 0
## 6 0
## 7 embarkation lunch
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 Contami ted oyster
## 14 0
## 15 0
## 16 0
## 17 Boiled broccoli (handled by foodworkers)
## 18 salad
## 19 0
## 20 0
## 21 Oysters
## 22 Infected Patients
## 23 Coleslaw
## 24 0
## 25 School Lunch
## 26 0
## 27 Contami ted Well Water
## 28 Shellfish
## 29 Direct person-to person spread and/or contact with diverse contami ted environmental surfaces
## 30 nusing assistant that placed bread on trays and served food to people
## 31 0
## 32 0
## 33 0
## 34 Tomato
## 35 0
## 36 0
## 37 0
## 38 pasta in mayon ise
## 39 0
## 40 Frozen raspberries
## 41 Frozen raspberries
## 42 Frozen raspberries
## 43 Lunch prepared by ill worker
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 Sub Sandwich
## 61 sandwich lettuce
## 62 0
## 63 0
## 64 Contami ted surfaces/fomites
## 65 0
## 66 deli sandwiches
## 67 0
## 68 0
## 69 Infected Persons
## 70 Wedding Cake
## 71 Salad
## 72 Pumpkin Salad
## 73 0
## 74 Fresh Fruit
## 75 0
## 76 Contami ted surfaces/fomites
## 77 0
## 78 municiple water system
## 79 Infected Persons
## 80 Tap water
## 81 Infected Persons
## 82 Raspberries
## 83 Mussels
## 84 0
## 85 0
## 86 0
## 87 Sandwiches
## 88 ready-to-eat foods
## 89 0
## 90 oysters
## 91 oysters
## 92 0
## 93 drinking water
## 94 0
## 95 sliced pork salad and rolled pancake with spi ch
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 Well Water
## 112 Tap Water
## 113 Tap Water
## 114 0
## 115 Sewage contami ted well water
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Recreatio l fountain
## 122 raw vegetables/salad
## 123 Deli meat
## 124 Aerosolized vomit
## 125 Drinking water
## 126 Infected Persons
## 127 0
## 128 Potato Salad
## 129 Contami ted Lake Water
## 130 0
## 131 0
## 132 food prepared by same food handler as that in 784
## 133 salad
## 134 0
## 135 oysters
## 136 Municiple water supply
## 137 round of beef
## 138 Well water
## 139 water
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Side salad, most likely a pasta salad
## 151 Well Water
## 152 Oysters
## 153 Tap Water
## 154 Tap water/Community water supply A
## 155 Public Swiming Pool Water
## 156 Garlic mashed potatoes, antipasta platter
## 157 Contami ted computer equipment
## 158 Contami ted surfaces/fomites
## 159 Oysters
## 160 Rolls
## 161 Oysters
## 162 Oysters
## 163 0
## 164 Contami ted surfaces/fomites
## 165 0
## 166 Contami ted tap water
## 167 Infected persons
## 168 Infected Persons
## 169 0
## 170 Salad
## 171 Contami ted Drinking Water
## 172 0
## 173 0
## 174 0
## 175 0
## 176 prolonged outbreak in community
## 177 Tossed Salad
## 178 0
## 179 Salad (bar itmes)
## 180 Contami ted Tap Water
## 181 Aerosolized vomit
## 182 Contami ted surfaces/fomites
## 183 0
## 184 Aerosolized Vomit
## 185 Infected Persons
## 186 Infected Persons
## 187 oysters
## 188 Oysters contami ted by lake water with overboard feces dumping
## 189 thin soup
## 190 0
## 191 0
## 192 Infected Persons
## 193 Raw Oysters
## 194 Well water
## 195 Sandwiches
## 196 Ice cubes
## 197 Fecal contami ted pool water
## 198 0
## 199 0
## 200 Vomit
## 201 0
## 202 salad
## 203 0
## 204 oysters
## 205 0
## 206 0
## 207 Contami ted surfaces/fomites
## 208 0
## 209 oysters
## 210 Soup
## 211 standard diet lunch
## 212 0
## 213 0
## 214 0
## 215 Taps on juice containers
## 216 Taps on juice containers
## 217 salad from self-serve salad buffet
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 Raw Oysters
## 226 Raw Oysters
## 227 Raw Oysters
## 228 Raw Oysters
## 229 Raw Oysters
## 230 0
## 231 0
## Veh1
## 1 Unspecified
## 2 Yes
## 3 Yes
## 4 Yes
## 5 Yes
## 6 Unspecified
## 7 Yes
## 8 Unspecified
## 9 Unspecified
## 10 Yes
## 11 Yes
## 12 Yes
## 13 Yes
## 14 Yes
## 15 Yes
## 16 Unknown
## 17 Yes
## 18 Yes
## 19 Yes
## 20 Yes
## 21 Yes
## 22 Yes
## 23 Yes
## 24 Unspecified
## 25 Yes
## 26 Yes
## 27 Yes
## 28 Yes
## 29 Yes
## 30 Yes
## 31 Unknown
## 32 Unknown
## 33 Unspecified
## 34 Yes
## 35 Unknown
## 36 Yes
## 37 Unspecified
## 38 Yes
## 39 Unspecified
## 40 Yes
## 41 Yes
## 42 Yes
## 43 Yes
## 44 Yes
## 45 Unspecified
## 46 Yes
## 47 Unspecified
## 48 Unspecified
## 49 Unspecified
## 50 Unspecified
## 51 Unspecified
## 52 Unspecified
## 53 Unspecified
## 54 Unspecified
## 55 Unspecified
## 56 Unspecified
## 57 Unspecified
## 58 Unknown
## 59 Yes
## 60 Yes
## 61 Yes
## 62 Yes
## 63 Yes
## 64 Yes
## 65 Unspecified
## 66 Yes
## 67 Yes
## 68 Yes
## 69 Yes
## 70 Yes
## 71 Yes
## 72 Yes
## 73 Unspecified
## 74 Yes
## 75 Yes
## 76 Yes
## 77 Unknown
## 78 Yes
## 79 Yes
## 80 Yes
## 81 Yes
## 82 Yes
## 83 Yes
## 84 Yes
## 85 Unknown
## 86 Yes
## 87 Yes
## 88 Yes
## 89 Unknown
## 90 Yes
## 91 Yes
## 92 Unspecified
## 93 Yes
## 94 Unknown
## 95 Yes
## 96 Unspecified
## 97 Unspecified
## 98 Unspecified
## 99 Unspecified
## 100 Unspecified
## 101 Unspecified
## 102 Unspecified
## 103 Unspecified
## 104 Unspecified
## 105 Unspecified
## 106 Unspecified
## 107 Unspecified
## 108 Unspecified
## 109 Unspecified
## 110 Unspecified
## 111 Yes
## 112 Yes
## 113 Yes
## 114 Unspecified
## 115 Yes
## 116 Unspecified
## 117 Yes
## 118 No
## 119 Unspecified
## 120 Unspecified
## 121 Yes
## 122 Yes
## 123 Yes
## 124 Yes
## 125 Yes
## 126 Yes
## 127 Yes
## 128 Yes
## 129 Yes
## 130 Unknown
## 131 Unknown
## 132 Yes
## 133 Yes
## 134 Unknown
## 135 Yes
## 136 Yes
## 137 Yes
## 138 Yes
## 139 Yes
## 140 Unspecified
## 141 Unspecified
## 142 Unspecified
## 143 Unspecified
## 144 Unspecified
## 145 Unspecified
## 146 Unspecified
## 147 Yes
## 148 Unspecified
## 149 Unspecified
## 150 Yes
## 151 Yes
## 152 Yes
## 153 Yes
## 154 Yes
## 155 Yes
## 156 Yes
## 157 Yes
## 158 Yes
## 159 Yes
## 160 Yes
## 161 Yes
## 162 Yes
## 163 Yes
## 164 Yes
## 165 Yes
## 166 Yes
## 167 Yes
## 168 Yes
## 169 Yes
## 170 Yes
## 171 Yes
## 172 Unspecified
## 173 Yes
## 174 Yes
## 175 Yes
## 176 Yes
## 177 Yes
## 178 Yes
## 179 Yes
## 180 Yes
## 181 Yes
## 182 Yes
## 183 Unspecified
## 184 Yes
## 185 Yes
## 186 Yes
## 187 Yes
## 188 Yes
## 189 Yes
## 190 Yes
## 191 Yes
## 192 Yes
## 193 Yes
## 194 Yes
## 195 Yes
## 196 Yes
## 197 Yes
## 198 Unspecified
## 199 Yes
## 200 Yes
## 201 Unspecified
## 202 Yes
## 203 Unknown
## 204 Yes
## 205 Unspecified
## 206 Unknown
## 207 Yes
## 208 Unspecified
## 209 Yes
## 210 Yes
## 211 Yes
## 212 Unknown
## 213 Unspecified
## 214 Unspecified
## 215 Yes
## 216 Yes
## 217 Yes
## 218 Unspecified
## 219 Unspecified
## 220 Unspecified
## 221 Yes
## 222 Unspecified
## 223 Yes
## 224 Yes
## 225 Yes
## 226 Yes
## 227 Yes
## 228 Yes
## 229 Yes
## 230 Unknown
## 231 Yes
## Veh1_D_1
## 1 0
## 2 Turkey Sandwich in boxed lunch
## 3 Oysters
## 4 Potato Salad
## 5 Infected Student
## 6 0
## 7 embarkation lunch
## 8 0
## 9 0
## 10 Infected Persons
## 11 Infected Persons
## 12 Infected Persons
## 13 oysters from Grand Pass and off of LA coast
## 14 Contami ted Tap Water
## 15 Infected Persons
## 16 0
## 17 deep-fried spring roll
## 18 salad
## 19 Contami ted Surfaces
## 20 Ship Restaurants
## 21 Oysters
## 22 Infected Patients
## 23 Coleslaw
## 24 0
## 25 School Lunch
## 26 Infected Persons
## 27 Contami ted Well Water
## 28 Contami ted Seafood
## 29 Infected Persons
## 30 nursing assistant was source
## 31 0
## 32 0
## 33 0
## 34 tomatoes from salad bar
## 35 0
## 36 food handler
## 37 0
## 38 pasta in mayon ise
## 39 0
## 40 frozen raspberry used for cake toppings
## 41 Frozen Raspberries
## 42 Frozen Raspberry cake toppings
## 43 lunch
## 44 aerosilized
## 45 0
## 46 infected/contami ted HCW
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 direct contact w/vomitus or feces
## 60 Sub Sandwich
## 61 Sub Sandwich
## 62 Sub Sandwich
## 63 Sub Sandwich
## 64 point source or mutliple passengers with virus
## 65 0
## 66 Deli food, ham
## 67 Salad
## 68 Infected Persons
## 69 Infected Persons
## 70 Wedding Cake
## 71 Salad
## 72 Pumpkin Salad
## 73 0
## 74 Fresh Fruit
## 75 Food
## 76 close quarters, shared bathrooms, and shared meals
## 77 0
## 78 Contami ted Water
## 79 Infected Persons
## 80 Tap water
## 81 Infected Persons
## 82 Raspberries
## 83 Mussels
## 84 Infected Persons
## 85 0
## 86 nurse from ward B who worked in ward X while symptomatic w/gastroenteritis
## 87 Sandwiches
## 88 ready-to-eat foods
## 89 0
## 90 oysters
## 91 oysters
## 92 0
## 93 drinking water
## 94 0
## 95 sliced pork dish with salad
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 Well Water
## 112 Tap Water
## 113 Tap Water
## 114 0
## 115 Fecal Contami ted Well Water
## 116 0
## 117 Ill girl
## 118 0
## 119 0
## 120 0
## 121 Contaminted Fountain Water
## 122 Salad
## 123 batch 1 of sliced deli meat
## 124 Aerosolized vomit
## 125 Contami ted Water
## 126 Infected Persons
## 127 Infected Persons
## 128 Potato Salad
## 129 Contami ted Lake Water
## 130 0
## 131 0
## 132 caterer who prepared salads
## 133 caterer who prepared salads
## 134 0
## 135 oysters
## 136 municipal water system
## 137 round of beef
## 138 drinking water from farmer's well
## 139 stag nt water from resevoir
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 Fecal contami tion of ground water aquifer
## 148 0
## 149 0
## 150 Side salad, most likely a pasta salad
## 151 Well Water
## 152 Oysters
## 153 Tap Water
## 154 municipal water supply
## 155 Public Swiming Pool Water
## 156 antipasta, garlic mashed potatoes
## 157 Contami ted computer equipment
## 158 Contami ted Surfaces
## 159 Oysters
## 160 Rolls
## 161 Oysters
## 162 Oysters
## 163 shared meal
## 164 Contami ted House
## 165 Infected Persons
## 166 Contami ted Drinking Water
## 167 Infected persons
## 168 Infected Persons
## 169 i ppropriate floor disinfectants between December 3, 2006 and January 31, 2007
## 170 Salad served on base
## 171 Contami ted Drinking Water
## 172 0
## 173 Infected Infant
## 174 Infected Persons
## 175 Infected Persons
## 176 prolonged outbreak in community
## 177 Tossed Salad
## 178 Infected Persons
## 179 salad
## 180 Contami ted Tap Water
## 181 Vomit
## 182 toilet seat
## 183 0
## 184 Aerosolized Vomit
## 185 Infected Persons
## 186 Infected Persons
## 187 oysters
## 188 Contami ted lake water
## 189 thin soup
## 190 Infected Persons
## 191 Infected Persons
## 192 Infected Persons
## 193 Raw Oysters
## 194 City Water Supply
## 195 Sandwiches
## 196 Ice
## 197 Fecal contami ted pool water
## 198 0
## 199 Infected Persons
## 200 Vomit
## 201 0
## 202 salad
## 203 0
## 204 oysters
## 205 0
## 206 0
## 207 Contami ted surfaces
## 208 0
## 209 oysters
## 210 soup
## 211 lunch standard diet
## 212 0
## 213 0
## 214 0
## 215 juice served in containers from self served tap
## 216 juice served in containers from self-serve taps
## 217 self-serve salad bar
## 218 0
## 219 0
## 220 0
## 221 Dirty hands form foodserivce worker
## 222 Suspected jam and dried fruit to be point source of foodborne transmission
## 223 Oysters
## 224 Korean oysters
## 225 Raw Oysters
## 226 Raw Oysters
## 227 Raw Oysters
## 228 Raw Oysters
## 229 Raw Oysters
## 230 0
## 231 aerosilized vomit
## Veh2
## 1 No
## 2 Yes
## 3 No
## 4 No
## 5 No
## 6 No
## 7 Yes
## 8 No
## 9 No
## 10 No
## 11 Yes
## 12 No
## 13 No
## 14 No
## 15 No
## 16 Yes
## 17 Yes
## 18 No
## 19 Yes
## 20 Yes
## 21 Yes
## 22 Yes
## 23 Yes
## 24 No
## 25 No
## 26 No
## 27 No
## 28 Yes
## 29 Yes
## 30 No
## 31 No
## 32 No
## 33 Yes
## 34 Yes
## 35 No
## 36 No
## 37 No
## 38 Yes
## 39 No
## 40 No
## 41 No
## 42 No
## 43 No
## 44 Yes
## 45 No
## 46 No
## 47 No
## 48 No
## 49 No
## 50 No
## 51 No
## 52 No
## 53 No
## 54 No
## 55 No
## 56 No
## 57 No
## 58 No
## 59 Yes
## 60 No
## 61 Yes
## 62 No
## 63 No
## 64 Yes
## 65 No
## 66 No
## 67 Yes
## 68 No
## 69 No
## 70 No
## 71 No
## 72 No
## 73 No
## 74 No
## 75 Yes
## 76 No
## 77 No
## 78 No
## 79 Yes
## 80 Yes
## 81 No
## 82 Yes
## 83 Yes
## 84 No
## 85 No
## 86 No
## 87 Yes
## 88 Yes
## 89 No
## 90 No
## 91 No
## 92 No
## 93 Yes
## 94 No
## 95 Yes
## 96 No
## 97 No
## 98 No
## 99 No
## 100 No
## 101 No
## 102 No
## 103 No
## 104 No
## 105 No
## 106 No
## 107 No
## 108 No
## 109 No
## 110 No
## 111 No
## 112 No
## 113 Yes
## 114 No
## 115 Yes
## 116 No
## 117 No
## 118 No
## 119 No
## 120 No
## 121 No
## 122 No
## 123 Yes
## 124 Yes
## 125 Yes
## 126 No
## 127 No
## 128 No
## 129 Yes
## 130 No
## 131 No
## 132 Yes
## 133 Yes
## 134 No
## 135 No
## 136 No
## 137 Yes
## 138 No
## 139 No
## 140 No
## 141 No
## 142 No
## 143 No
## 144 No
## 145 No
## 146 No
## 147 No
## 148 No
## 149 No
## 150 No
## 151 No
## 152 No
## 153 No
## 154 No
## 155 No
## 156 Yes
## 157 Yes
## 158 No
## 159 No
## 160 No
## 161 No
## 162 No
## 163 No
## 164 No
## 165 Yes
## 166 No
## 167 No
## 168 No
## 169 Yes
## 170 No
## 171 No
## 172 No
## 173 Yes
## 174 Yes
## 175 No
## 176 No
## 177 No
## 178 No
## 179 No
## 180 No
## 181 No
## 182 Yes
## 183 No
## 184 No
## 185 Yes
## 186 No
## 187 No
## 188 No
## 189 Yes
## 190 No
## 191 Yes
## 192 No
## 193 No
## 194 No
## 195 No
## 196 Yes
## 197 No
## 198 No
## 199 No
## 200 No
## 201 No
## 202 No
## 203 No
## 204 No
## 205 No
## 206 No
## 207 Yes
## 208 No
## 209 No
## 210 Yes
## 211 No
## 212 No
## 213 No
## 214 No
## 215 No
## 216 No
## 217 No
## 218 No
## 219 No
## 220 No
## 221 No
## 222 No
## 223 No
## 224 No
## 225 No
## 226 No
## 227 No
## 228 No
## 229 No
## 230 No
## 231 Yes
## Veh2_D_1
## 1 0
## 2 Football players
## 3 0
## 4 0
## 5 0
## 6 0
## 7 Infected persons
## 8 0
## 9 0
## 10 0
## 11 Scalloped Potatoes
## 12 0
## 13 0
## 14 0
## 15 0
## 16 initial resident is likely to have been infected by outside source
## 17 broccoli
## 18 0
## 19 Infected Persons
## 20 Infected Room Mates
## 21 Routine disposal of sewage in oyster harvesting area
## 22 Contami ted Surfaces
## 23 Infected Persons
## 24 0
## 25 0
## 26 0
## 27 0
## 28 Infected Persons
## 29 Contami ted Surfaces
## 30 0
## 31 0
## 32 0
## 33 Contami ted Surfaces
## 34 hamburgers
## 35 0
## 36 0
## 37 0
## 38 spring rolls
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 HCW
## 45 0
## 46 0
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58 0
## 59 indirect contact w/contami ted environmental surfaces
## 60 0
## 61 Jalepeno peppers
## 62 0
## 63 0
## 64 Toilets
## 65 0
## 66 0
## 67 Water
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 Infected Persons
## 76 0
## 77 0
## 78 0
## 79 Contami ted Surfaces
## 80 Sea water
## 81 0
## 82 Infected Persons
## 83 Infected Persons
## 84 0
## 85 0
## 86 0
## 87 Salad
## 88 Ham Sandwich
## 89 0
## 90 0
## 91 0
## 92 0
## 93 ice
## 94 0
## 95 hand-rolled pancake filled with spi ch
## 96 0
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110 0
## 111 0
## 112 0
## 113 Custard
## 114 0
## 115 chicken
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 meat slicer
## 124 Contami ted Surfaces
## 125 contami ted toilets
## 126 0
## 127 0
## 128 0
## 129 Infected Persons
## 130 0
## 131 0
## 132 salad
## 133 salad
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 Contami ted kitchen surfaces
## 157 Infected Contacts
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 accommodation environment on day of arrival
## 166 0
## 167 0
## 168 0
## 169 airborne transmission after aerosolization of vomit
## 170 0
## 171 0
## 172 0
## 173 Contami ted Surfaces
## 174 Contami ted Surfaces
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 bathroom door handle
## 183 0
## 184 0
## 185 Aerosolized droplets
## 186 0
## 187 0
## 188 0
## 189 infected staff member
## 190 0
## 191 Aerosolized droplets
## 192 0
## 193 0
## 194 0
## 195 0
## 196 Infected Persons
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 Dining Table
## 208 0
## 209 0
## 210 lettuce salad
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 possible environmental contami tion
## Veh3 Veh3_D_1 PCRSect OBYear Hemisphere season
## 1 No 0 Capsid 1999 Northern Fall
## 2 No 0 Polymerase 1998 Northern Fall
## 3 No 0 Unspecified 1993 Northern Fall
## 4 No 0 Unspecified 1999 Northern Fall
## 5 No 0 Unspecified 1999 Northern Fall
## 6 No 0 Unspecified 2002 Northern Fall
## 7 No 0 Unspecified 2002 Northern Fall
## 8 No 0 Unspecified 2002 Northern Fall
## 9 No 0 Unspecified 2002 Northern Fall
## 10 No 0 Unspecified 2005 Northern Fall
## 11 Yes Chicken Polymerase 2006 Northern Fall
## 12 No 0 Unspecified 1997 Northern Fall
## 13 No 0 Unspecified 1993 Northern Fall
## 14 No 0 Unspecified 1998 Southern Fall
## 15 No 0 Both 2005 Southern Fall
## 16 No 0 Unspecified 2008 Northern Fall
## 17 Yes lettuce Capsid 2003 Northern Fall
## 18 No 0 Unspecified 2000 Northern Fall
## 19 No 0 Unspecified 2006 Northern Fall
## 20 Yes Contami ted Surfaces Capsid 2002 Northern Fall
## 21 No 0 Polymerase 1993 Northern Fall
## 22 No 0 Both 2003 Northern Fall
## 23 Yes Contami ted Surfaces Unspecified 2000 Northern Fall
## 24 No 0 Unspecified 2002 Southern Fall
## 25 No 0 Unspecified 2005 Northern Fall
## 26 No 0 Unspecified 1999 Northern Fall
## 27 No 0 Polymerase 2001 Northern Fall
## 28 No 0 Both 1999 Northern Fall
## 29 No 0 Unspecified 2004 Northern Fall
## 30 No 0 Polymerase 2002 Northern Fall
## 31 No 0 Unspecified 1999 Southern Fall
## 32 No 0 Unspecified 1999 Southern Fall
## 33 No 0 Capsid 2005 Northern Fall
## 34 No 0 Capsid 2007 Northern Fall
## 35 No 0 Unspecified 2008 Northern Fall
## 36 No 0 Unspecified 2008 Northern Fall
## 37 No 0 Unspecified 2008 Northern Fall
## 38 No 0 Unspecified 1995 Northern Fall
## 39 No 0 Unspecified 2008 Northern Fall
## 40 No 0 Both 2009 Northern Fall
## 41 No 0 Both 2009 Northern Fall
## 42 No 0 Both 2009 Northern Fall
## 43 No 0 Both 2007 Northern Fall
## 44 No 0 Both 2008 Northern Fall
## 45 No 0 Unspecified 2008 Northern Fall
## 46 No 0 Unspecified 2006 Northern Fall
## 47 No Both 2002 Southern Fall
## 48 No Both 2002 Southern Fall
## 49 No Both 2004 Southern Fall
## 50 No Both 2004 Southern Fall
## 51 No Both 2004 Southern Fall
## 52 No Both 2004 Southern Fall
## 53 No Both 2004 Southern Fall
## 54 No Both 2004 Southern Fall
## 55 No Both 2004 Southern Fall
## 56 No Both 2004 Southern Fall
## 57 No Unspecified 2007 Northern Fall
## 58 No 0 Both 2003 Northern Spring
## 59 Yes staff Unspecified 2002 Northern Spring
## 60 No 0 Unspecified 2005 Northern Spring
## 61 Yes Onions Unspecified 2005 Northern Spring
## 62 No 0 Unspecified 2005 Northern Spring
## 63 No 0 Unspecified 2005 Northern Spring
## 64 No 0 Both 2004 Northern Spring
## 65 No 0 Unspecified 2002 Southern Spring
## 66 No 0 Both 1998 Northern Spring
## 67 No 0 Unspecified 2000 Northern Spring
## 68 No 0 Polymerase 2002 Northern Spring
## 69 No 0 Polymerase 2003 Northern Spring
## 70 No 0 Polymerase 2002 Northern Spring
## 71 No 0 Polymerase 2003 Northern Spring
## 72 No 0 Polymerase 1999 Northern Spring
## 73 No 0 Unspecified 1994 Northern Spring
## 74 No 0 Polymerase 1990 Northern Spring
## 75 No 0 Polymerase 2000 Northern Spring
## 76 No 0 Polymerase 2004 Northern Spring
## 77 No 0 Capsid 2008 Northern Spring
## 78 No 0 Unspecified 2000 Northern Spring
## 79 No 0 Unspecified 2002 Southern Spring
## 80 No 0 Polymerase 2006 Northern Spring
## 81 No 0 Unspecified 1995 Northern Spring
## 82 No 0 Unspecified 1998 Northern Spring
## 83 No 0 Polymerase 2002 Northern Spring
## 84 No 0 Unspecified 1994 Northern Spring
## 85 No 0 Unspecified 1995 Southern Spring
## 86 No 0 Unspecified 1995 Southern Spring
## 87 No 0 Unspecified 2002 Northern Spring
## 88 Yes Morning Tea Unspecified 2003 Southern Spring
## 89 No 0 Both 2005 Northern Spring
## 90 No 0 Polymerase 2003 Southern Spring
## 91 No 0 Polymerase 2003 Southern Spring
## 92 No 0 Unspecified 2005 Northern Spring
## 93 Yes house salad Polymerase 2007 Northern Spring
## 94 No 0 Both 2009 Northern Spring
## 95 Yes sliced cold sausage Unspecified 2009 Northern Spring
## 96 No 0 Unspecified 2007 Northern Spring
## 97 No Both 2004 Southern Spring
## 98 No Both 2004 Southern Spring
## 99 No Both 2004 Southern Spring
## 100 No Unspecified 2007 Northern Spring
## 101 No Unspecified 2007 Northern Spring
## 102 No Unspecified 2002 Northern Spring
## 103 No Unspecified 2002 Northern Spring
## 104 No Unspecified 2002 Northern Spring
## 105 No Unspecified 2002 Northern Spring
## 106 No Unspecified 2002 Northern Spring
## 107 No Unspecified 2002 Northern Spring
## 108 No Unspecified 2002 Northern Spring
## 109 No Unspecified 2002 Northern Spring
## 110 No 0 Capsid 1999 Northern Summer
## 111 No 0 Polymerase 1995 Northern Summer
## 112 No 0 Polymerase 2000 Northern Summer
## 113 No 0 Both 1994 Northern Summer
## 114 No 0 Unspecified 2002 Northern Summer
## 115 No 0 Unspecified 2006 Northern Summer
## 116 No 0 Unspecified 0 Northern Summer
## 117 No 0 Polymerase 2001 Northern Summer
## 118 No 0 Unspecified 2006 Northern Summer
## 119 No 0 Unspecified 2003 Southern Summer
## 120 No 0 Unspecified 2004 Northern Summer
## 121 No 0 Unspecified 2002 Northern Summer
## 122 No 0 Both 2006 Northern Summer
## 123 No 0 Both 2005 Northern Summer
## 124 Yes Infected Persons Polymerase 2001 Northern Summer
## 125 No 0 Polymerase 2003 Northern Summer
## 126 No 0 Capsid 2005 Northern Summer
## 127 No 0 Capsid 2005 Northern Summer
## 128 No 0 Unspecified 1996 Northern Summer
## 129 No 0 Unspecified 2004 Northern Summer
## 130 No 0 Unspecified 1999 Northern Summer
## 131 No 0 Unspecified 1999 Northern Summer
## 132 No 0 Capsid 2007 Northern Summer
## 133 No 0 Capsid 2007 Northern Summer
## 134 No 0 Unspecified 1999 Southern Summer
## 135 No 0 Polymerase 2004 Southern Summer
## 136 No 0 Both 2008 Northern Summer
## 137 No 0 Polymerase 2005 Northern Summer
## 138 No 0 Unspecified 2007 Northern Summer
## 139 No Unspecified 2009 Northern Summer
## 140 No Both 2002 Southern Summer
## 141 No Both 2003 Southern Summer
## 142 No Both 2003 Southern Summer
## 143 No Both 2003 Southern Summer
## 144 No Both 2004 Southern Summer
## 145 No Both 2004 Southern Summer
## 146 No Unspecified 2007 Northern Summer
## 147 No Unspecified 2004 Northern Summer
## 148 No Unspecified 2004 Northern Summer
## 149 No Unspecified 2002 Northern Summer
## 150 No 0 Polymerase 2000 Northern Winter
## 151 No 0 Polymerase 2001 Northern Winter
## 152 No 0 Unspecified 1996 Northern Winter
## 153 No 0 Unspecified 1998 Northern Winter
## 154 No 0 Unspecified 2002 Northern Winter
## 155 No 0 Unspecified 2004 Northern Winter
## 156 No 0 Unspecified 2006 Northern Winter
## 157 No 0 Polymerase 2007 Northern Winter
## 158 No 0 Unspecified 1996 Northern Winter
## 159 No 0 Capsid 2004 Northern Winter
## 160 No 0 Polymerase 2001 Northern Winter
## 161 No 0 Unspecified 2002 Northern Winter
## 162 No 0 Unspecified 2002 Northern Winter
## 163 No 0 Polymerase 2001 Northern Winter
## 164 No 0 Polymerase 2001 Northern Winter
## 165 No 0 Polymerase 2001 Northern Winter
## 166 No 0 Polymerase 2001 Northern Winter
## 167 No 0 Polymerase 2003 Northern Winter
## 168 No 0 Polymerase 2003 Northern Winter
## 169 No 0 Unspecified 2006 Northern Winter
## 170 No 0 Unspecified 1999 Northern Winter
## 171 No 0 Polymerase 2006 Southern Winter
## 172 No 0 Unspecified 2005 Northern Winter
## 173 No 0 Unspecified 2003 Northern Winter
## 174 No 0 Polymerase 2004 Northern Winter
## 175 No 0 Polymerase 2007 Northern Winter
## 176 No 0 Both 2006 Northern Winter
## 177 No 0 Unspecified 1999 Northern Winter
## 178 No 0 Polymerase 2001 Northern Winter
## 179 No 0 Unspecified 1994 Northern Winter
## 180 No 0 Polymerase 1998 Northern Winter
## 181 No 0 Unspecified 2007 Northern Winter
## 182 Yes physiotherapy instrument Unspecified 1999 Northern Winter
## 183 No 0 Unspecified 2000 Southern Winter
## 184 No 0 Polymerase 1998 Northern Winter
## 185 No 0 Both 1996 Northern Winter
## 186 No 0 Unspecified 2001 Northern Winter
## 187 No 0 Polymerase 1994 Northern Winter
## 188 No 0 Polymerase 1994 Northern Winter
## 189 No 0 Both 2006 Northern Winter
## 190 No 0 Unspecified 2000 Southern Winter
## 191 No 0 Unspecified 2002 Southern Winter
## 192 No 0 Unspecified 2001 Northern Winter
## 193 No 0 Unspecified 2003 Northern Winter
## 194 No 0 Unspecified 2005 Northern Winter
## 195 No 0 Both 1997 Northern Winter
## 196 No 0 Unspecified 2002 Northern Winter
## 197 No 0 Polymerase 2004 Northern Winter
## 198 No 0 Unspecified 2007 Northern Winter
## 199 No 0 Unspecified 2004 Northern Winter
## 200 No 0 Unspecified 2004 Northern Winter
## 201 No 0 Unspecified 2004 Northern Winter
## 202 No 0 Unspecified 2006 Northern Winter
## 203 No 0 Unspecified 2004 Northern Winter
## 204 No 0 Unspecified 1996 Southern Winter
## 205 No 0 Unspecified 1998 Northern Winter
## 206 No 0 Unspecified 2002 Northern Winter
## 207 No 0 Polymerase 2003 Northern Winter
## 208 No 0 Unspecified 2003 Northern Winter
## 209 No 0 Unspecified 2008 Northern Winter
## 210 No 0 Unspecified 2008 Northern Winter
## 211 No 0 Unspecified 2007 Northern Winter
## 212 No 0 Unspecified 2005 Northern Winter
## 213 No 0 Unspecified 2006 Northern Winter
## 214 No 0 Unspecified 2006 Northern Winter
## 215 No 0 Capsid 2009 Northern Winter
## 216 No 0 Capsid 2009 Northern Winter
## 217 No 0 Unspecified 2008 Northern Winter
## 218 No Both 2004 Southern Winter
## 219 No Both 2005 Southern Winter
## 220 No Unspecified 2002-2007 Northern Winter
## 221 No Unspecified 2006 Northern Winter
## 222 No Unspecified 2002 Northern Winter
## 223 No Unspecified 1993 Northern Winter
## 224 No Unspecified 2006 Southern Winter
## 225 No 0 Unspecified 2003 Northern
## 226 No 0 Unspecified 2003 Northern
## 227 No 0 Unspecified 2003 Northern
## 228 No 0 Unspecified 2003 Northern
## 229 No 0 Unspecified 2004 Northern
## 230 No 0 Capsid 2006 Northern Winter
## 231 No 0 Unspecified 2009 Unspecified
## MeanI1 MedianI1 Range_S_I1 Range_L_I1 MeanD1 MedianD1 Range_S_D1
## 1 0 0 0 0.0 0.0 0 0.0
## 2 0 37 0 0.0 0.0 36 0.0
## 3 0 34 0 0.0 0.0 37 0.0
## 4 0 33 6 96.0 0.0 24 5.0
## 5 0 0 0 0.0 24.0 0 4.0
## 6 0 0 0 0.0 0.0 0 0.0
## 7 0 0 0 0.0 0.0 0 0.0
## 8 0 0 0 0.0 0.0 0 0.0
## 9 0 0 0 0.0 0.0 0 0.0
## 10 0 0 0 0.0 0.0 0 0.0
## 11 0 0 20 61.0 0.0 54 6.0
## 12 0 0 0 0.0 37.0 0 3.0
## 13 34 0 31 39.0 47.0 0 32.0
## 14 0 46 0 0.0 0.0 36 0.0
## 15 0 0 0 0.0 0.0 0 0.0
## 16 0 0 0 0.0 0.0 0 0.0
## 17 31 0 0 0.0 0.0 0 0.0
## 18 32 33 8 60.0 43.0 0 12.0
## 19 0 0 0 0.0 48.0 48 0.0
## 20 0 0 0 0.0 0.0 0 0.0
## 21 0 31 5 52.0 0.0 36 6.0
## 22 0 0 0 0.0 0.0 0 0.0
## 23 0 0 0 0.0 0.0 0 0.0
## 24 0 0 0 0.0 0.0 0 0.0
## 25 0 0 24 42.0 0.0 0 0.0
## 26 0 0 0 0.0 0.0 0 24.0
## 27 0 0 0 0.0 48.0 0 0.0
## 28 0 0 0 0.0 0.0 0 0.0
## 29 0 0 0 0.0 0.0 48 0.0
## 30 0 0 0 0.0 0.0 0 0.0
## 31 0 0 0 0.0 0.0 0 0.0
## 32 0 0 0 0.0 0.0 0 0.0
## 33 0 0 0 0.0 0.0 0 0.0
## 34 0 0 0 0.0 21.0 0 2.0
## 35 0 0 0 0.0 58.0 0 0.0
## 36 0 0 0 0.0 0.0 0 0.0
## 37 0 0 0 0.0 0.0 48 0.0
## 38 0 0 0 0.0 0.0 0 0.0
## 39 0 0 0 0.0 0.0 0 0.0
## 40 0 0 0 0.0 0.0 0 0.0
## 41 33 0 14 76.0 22.0 0 1.0
## 42 0 0 0 0.0 0.0 0 0.0
## 43 36 0 24 72.0 35.0 0 0.0
## 44 0 0 0 0.0 72.0 0 24.0
## 45 0 0 0 0.0 0.0 0 0.0
## 46 0 0 0 0.0 0.0 0 0.0
## 47 0 0 0 0.0 0.0 0 0.0
## 48 0 0 0 0.0 0.0 0 0.0
## 49 0 0 0 0.0 0.0 0 0.0
## 50 0 0 0 0.0 0.0 0 0.0
## 51 0 0 0 0.0 0.0 0 0.0
## 52 0 0 0 0.0 0.0 0 0.0
## 53 0 0 0 0.0 0.0 0 0.0
## 54 0 0 0 0.0 0.0 0 0.0
## 55 0 0 0 0.0 0.0 0 0.0
## 56 0 0 0 0.0 0.0 0 0.0
## 57 0 0 0 0.0 0.0 0 0.0
## 58 0 0 0 0.0 0.0 0 0.0
## 59 0 0 0 0.0 0.0 0 0.0
## 60 0 0 8 56.0 0.0 0 0.0
## 61 0 0 0 0.0 0.0 0 0.0
## 62 0 0 0 0.0 0.0 0 0.0
## 63 0 0 0 0.0 0.0 0 0.0
## 64 0 0 0 0.0 0.0 0 0.0
## 65 0 0 0 0.0 0.0 0 0.0
## 66 0 0 24 48.0 0.0 48 24.0
## 67 0 0 0 0.0 0.0 24 5.0
## 68 0 0 0 0.0 0.0 0 0.0
## 69 0 0 0 0.0 0.0 0 0.0
## 70 0 35 6 74.0 0.0 4 2.0
## 71 0 0 0 0.0 0.0 0 0.0
## 72 0 34 2 61.0 0.0 0 0.0
## 73 0 0 0 0.0 12.0 0 6.0
## 74 0 0 0 0.0 0.0 0 0.0
## 75 0 0 0 0.0 0.0 0 0.0
## 76 0 0 0 0.0 67.0 0 24.0
## 77 0 0 0 0.0 0.0 0 0.0
## 78 0 0 0 0.0 0.0 0 0.0
## 79 7 65 0 0.0 0.0 36 24.0
## 80 0 0 0 0.0 0.0 0 0.0
## 81 0 0 0 0.0 0.0 0 24.0
## 82 0 41 12 119.0 0.0 48 2.0
## 83 0 0 0 0.0 0.0 0 0.0
## 84 0 0 0 0.0 0.0 0 0.0
## 85 0 0 0 0.0 0.0 0 0.0
## 86 0 0 0 0.0 0.0 0 0.0
## 87 0 27 15 37.0 0.0 0 0.0
## 88 0 0 0 0.0 0.0 0 0.0
## 89 0 0 0 0.0 0.0 0 0.0
## 90 0 34 0 0.0 0.0 54 0.0
## 91 0 34 0 0.0 0.0 48 0.0
## 92 0 0 0 0.0 0.0 0 0.0
## 93 0 36 8 72.0 0.0 48 24.0
## 94 0 0 0 0.0 0.0 0 0.0
## 95 0 0 0 0.0 0.0 48 24.0
## 96 0 0 0 0.0 36.0 0 24.0
## 97 0 0 0 0.0 0.0 0 0.0
## 98 0 0 0 0.0 0.0 0 0.0
## 99 0 0 0 0.0 0.0 0 0.0
## 100 0 0 0 0.0 0.0 0 0.0
## 101 0 0 0 0.0 0.0 0 0.0
## 102 0 0 0 0.0 0.0 0 0.0
## 103 0 0 0 0.0 0.0 0 0.0
## 104 0 0 0 0.0 0.0 0 0.0
## 105 0 0 0 0.0 0.0 0 0.0
## 106 0 0 0 0.0 0.0 0 0.0
## 107 0 0 0 0.0 0.0 0 0.0
## 108 0 0 0 0.0 0.0 0 0.0
## 109 0 0 0 0.0 0.0 0 0.0
## 110 0 0 0 0.0 0.0 0 0.0
## 111 0 0 0 0.0 0.0 0 0.0
## 112 0 0 0 0.0 0.0 0 0.0
## 113 0 0 0 0.0 0.0 0 0.0
## 114 0 0 0 0.0 0.0 0 0.0
## 115 0 0 0 0.0 0.0 0 0.0
## 116 0 0 0 0.0 0.0 72 48.0
## 117 0 0 0 0.0 0.0 0 0.0
## 118 0 0 0 0.0 0.0 0 0.0
## 119 0 0 0 0.0 0.0 0 0.0
## 120 0 0 0 0.0 0.0 0 0.0
## 121 30 0 7 72.0 0.0 0 0.0
## 122 0 0 4 54.0 49.0 0 5.0
## 123 0 0 0 0.0 0.0 24 5.0
## 124 0 0 0 0.0 55.2 48 1.0
## 125 0 0 0 0.0 0.0 0 0.0
## 126 0 0 0 0.0 0.0 0 0.0
## 127 0 0 0 0.0 0.0 0 0.0
## 128 39 39 20 65.0 0.0 0 0.0
## 129 48 48 1 168.0 0.0 0 0.0
## 130 0 0 0 0.0 0.0 0 0.0
## 131 0 0 0 0.0 0.0 0 0.0
## 132 32 0 15 55.0 37.0 0 24.0
## 133 39 0 11 64.0 44.0 0 1.0
## 134 0 0 0 0.0 0.0 0 0.0
## 135 0 34 0 0.0 0.0 0 0.0
## 136 0 0 0 0.0 0.0 0 0.0
## 137 32 0 25 45.0 0.0 0 0.0
## 138 0 0 24 72.0 0.0 60 48.0
## 139 0 0 0 0.0 0.0 0 0.0
## 140 0 0 0 0.0 0.0 0 0.0
## 141 0 0 0 0.0 0.0 0 0.0
## 142 0 0 0 0.0 0.0 0 0.0
## 143 0 0 0 0.0 0.0 0 0.0
## 144 0 0 0 0.0 0.0 0 0.0
## 145 0 0 0 0.0 0.0 0 0.0
## 146 0 0 0 0.0 0.0 0 0.0
## 147 0 0 0 0.0 0.0 96 24.0
## 148 0 0 0 0.0 0.0 0 0.0
## 149 0 0 0 0.0 0.0 48 24.0
## 150 0 0 24 0.0 0.0 48 24.0
## 151 0 0 0 0.0 0.0 48 24.0
## 152 0 0 0 0.0 0.0 0 0.0
## 153 0 0 0 0.0 0.0 0 0.0
## 154 0 0 0 0.0 0.0 0 0.0
## 155 0 30 8 62.0 0.0 0 0.0
## 156 0 32 0 0.0 0.0 42 2.0
## 157 0 0 0 0.0 0.0 36 0.2
## 158 0 0 0 0.0 0.0 0 0.0
## 159 0 0 0 0.0 0.0 0 0.0
## 160 0 31 0 0.0 0.0 48 0.0
## 161 0 34 4 58.0 36.0 0 24.0
## 162 0 34 2 68.0 0.0 0 0.0
## 163 0 0 0 0.0 0.0 0 0.0
## 164 0 0 0 0.0 0.0 0 0.0
## 165 0 0 0 0.0 0.0 0 0.0
## 166 0 0 0 0.0 0.0 0 0.0
## 167 0 0 0 0.0 0.0 0 0.0
## 168 0 0 0 0.0 0.0 0 0.0
## 169 0 0 0 0.0 0.0 0 0.0
## 170 0 0 0 0.0 0.0 0 0.0
## 171 0 0 0 0.0 0.0 0 0.0
## 172 0 0 0 0.0 0.0 0 0.0
## 173 0 0 21 34.0 0.0 0 12.0
## 174 0 0 0 0.0 0.0 0 0.0
## 175 0 0 0 0.0 0.0 0 12.0
## 176 0 0 0 0.0 0.0 0 0.0
## 177 0 31 1 86.0 0.0 0 72.0
## 178 0 0 0 0.0 0.0 0 0.0
## 179 0 0 0 0.0 36.0 0 24.0
## 180 0 0 0 0.0 0.0 0 0.0
## 181 0 0 0 0.0 0.0 48 24.0
## 182 0 0 0 0.0 0.0 0 0.0
## 183 0 0 0 0.0 0.0 0 0.0
## 184 0 0 0 0.0 0.0 0 0.0
## 185 0 0 0 0.0 0.0 0 24.0
## 186 0 0 0 0.0 0.0 0 0.0
## 187 0 48 12 90.0 0.0 48 4.0
## 188 0 0 0 0.0 0.0 0 0.0
## 189 43 0 29 74.0 0.0 24 2.0
## 190 0 0 0 0.0 0.0 0 0.0
## 191 0 0 0 0.0 0.0 0 0.0
## 192 0 0 0 0.0 0.0 48 0.0
## 193 0 0 0 0.0 0.0 0 0.0
## 194 0 0 0 0.0 0.0 0 0.0
## 195 0 0 0 0.0 0.0 18 12.0
## 196 0 0 0 0.0 0.0 48 10.0
## 197 0 30 8 62.0 0.0 0 0.0
## 198 0 0 0 0.0 0.0 0 0.0
## 199 0 0 0 0.0 0.0 0 0.0
## 200 0 0 0 0.0 0.0 0 0.0
## 201 0 0 0 0.0 0.0 0 0.0
## 202 0 0 0 0.0 0.0 48 24.0
## 203 0 0 0 0.0 0.0 0 0.0
## 204 0 35 5 60.0 0.0 48 6.0
## 205 0 0 0 0.0 0.0 0 0.0
## 206 0 0 0 0.0 0.0 0 0.0
## 207 0 0 0 0.0 0.0 0 0.0
## 208 0 0 0 0.0 0.0 0 0.0
## 209 33 0 8 50.0 96.0 0 12.0
## 210 28 0 18 60.0 45.0 0 12.0
## 211 0 0 1 59.0 0.0 0 0.0
## 212 0 0 0 0.0 67.0 0 24.0
## 213 0 0 0 0.0 58.0 0 24.0
## 214 0 0 0 0.0 29.0 0 24.0
## 215 0 0 0 0.0 0.0 0 0.0
## 216 0 0 0 0.0 0.0 0 0.0
## 217 0 0 0 0.0 0.0 0 0.0
## 218 0 0 0 0.0 0.0 0 0.0
## 219 0 0 0 0.0 0.0 0 0.0
## 220 0 0 0 0.0 127.2 0 24.0
## 221 0 0 0 0.0 0.0 0 0.0
## 222 0 0 0 0.0 0.0 0 0.0
## 223 0 36 30 45.0 0.0 36 8.0
## 224 32 0 19 53.5 24.0 0 0.0
## 225 0 0 0 0.0 0.0 0 0.0
## 226 0 0 0 0.0 0.0 0 0.0
## 227 0 0 0 0.0 0.0 0 0.0
## 228 0 0 0 0.0 0.0 0 0.0
## 229 0 0 0 0.0 0.0 0 0.0
## 230 36 0 0 0.0 0.0 0 0.0
## 231 0 0 0 0.0 0.0 48 1.0
## Range_L_D1 MeanA1 MedianA1 Range_Y_A1 Range_O_A1 Action1
## 1 0 NA NA 0.75 2.000 Unspecified
## 2 0 NA NA 0 0.000 Unspecified
## 3 0 NA NA 0 0.000 Yes
## 4 120 NA NA 0 0.000 Unspecified
## 5 33 NA NA 0 0.000 Unspecified
## 6 0 NA NA 0 0.000 Yes
## 7 0 NA NA 0 0.000 Yes
## 8 0 NA NA 0 0.000 Yes
## 9 0 NA NA 0 0.000 Yes
## 10 0 NA NA 0 0.000 Yes
## 11 135 NA NA 0 0.000 Yes
## 12 96 28.0000 NA 19 54.000 Unspecified
## 13 59 NA NA 0 0.000 Yes
## 14 0 NA NA 22 61.000 Yes
## 15 0 NA NA 0 0.000 Unspecified
## 16 0 NA NA 0 0.000 Yes
## 17 0 17.0000 NA 11 74.000 Yes
## 18 84 33.0000 36 14 53.000 Yes
## 19 0 NA NA 0 0.000 Yes
## 20 0 NA NA 0 0.000 Yes
## 21 216 NA 39 5 77.000 Yes
## 22 0 NA NA 0 0.000 Yes
## 23 0 NA NA 0 0.000 Yes
## 24 0 NA NA 0 0.000 Yes
## 25 0 NA NA 0 0.000 Yes
## 26 360 NA NA 0 46.000 Yes
## 27 0 NA NA 0 0.000 Yes
## 28 0 43.0000 NA 24 56.000 Yes
## 29 0 NA NA 0 0.000 Yes
## 30 0 NA NA 0 0.000 Yes
## 31 0 NA NA 0 0.000 Unspecified
## 32 0 NA NA 0 0.000 Unspecified
## 33 0 NA NA 0 0.000 Yes
## 34 120 NA 36 22 65.000 Yes
## 35 0 2.0000 NA 0 0.000 Yes
## 36 0 NA NA 0 0.000 Yes
## 37 0 NA NA 0 0.000 Yes
## 38 0 NA NA 0 0.000 Yes
## 39 0 NA 79 23 84.000 Yes
## 40 0 NA NA 0 0.000 Yes
## 41 72 NA NA 0 0.000 Yes
## 42 0 NA NA 0 0.000 Yes
## 43 0 NA NA 0 0.000 Unspecified
## 44 384 NA NA 0 0.000 Yes
## 45 0 72.0000 NA 0 0.000 Yes
## 46 0 NA NA 0 0.000 Yes
## 47 0 1.7500 NA 0 0.000 Unspecified
## 48 0 9.0000 NA 0 0.000 Unspecified
## 49 0 86.6700 NA 0 0.000 Unspecified
## 50 0 4.0000 NA 0 0.000 Unspecified
## 51 0 69.0000 NA 0 0.000 Unspecified
## 52 0 11.0000 NA 0 0.000 Unspecified
## 53 0 83.0000 NA 0 0.000 Unspecified
## 54 0 18.0000 NA 0 0.000 Unspecified
## 55 0 82.5000 NA 0 0.000 Unspecified
## 56 0 1.5000 NA 0 0.000 Unspecified
## 57 0 NA NA 0 0.000 Yes
## 58 0 NA NA 0 0.000 Unspecified
## 59 0 NA NA 0 0.000 Yes
## 60 0 NA NA 0 0.000 Yes
## 61 0 NA NA 0 0.000 Yes
## 62 0 NA NA 0 0.000 Yes
## 63 0 NA NA 0 0.000 Yes
## 64 0 56.0000 NA 0 0.000 Yes
## 65 0 NA NA 0 0.000 Yes
## 66 240 NA NA 0 0.000 Yes
## 67 72 NA NA 0 0.000 Unspecified
## 68 0 NA NA 0 0.000 Unspecified
## 69 0 NA NA 0 0.000 Unspecified
## 70 133 NA 43 6 83.000 Unspecified
## 71 0 NA NA 0 0.000 Yes
## 72 0 NA NA 1 61.000 Yes
## 73 69 NA NA 0 0.000 Yes
## 74 0 NA NA 0 0.000 Unspecified
## 75 0 46.0000 45 1 83.000 Yes
## 76 168 68.0000 NA 50 85.000 Yes
## 77 0 NA NA 0 0.000 Yes
## 78 0 NA 27 8 70.000 Yes
## 79 72 83.0000 NA 0 0.000 Yes
## 80 0 25.0000 NA 0 0.000 Yes
## 81 120 NA NA 0 0.000 Yes
## 82 120 NA NA 0 0.000 Unspecified
## 83 0 NA NA 0 0.000 Unspecified
## 84 0 NA NA 16 101.000 Yes
## 85 0 NA NA 0 0.000 Yes
## 86 0 81.0000 NA 67 91.000 Yes
## 87 0 NA NA 0 0.000 Yes
## 88 0 43.0000 NA 18 70.000 Yes
## 89 0 NA NA 0 0.000 Unspecified
## 90 0 NA NA 0 0.000 Yes
## 91 0 NA NA 0 0.000 Yes
## 92 0 19.0000 NA 18 23.000 Unspecified
## 93 168 NA 6 5 92.000 Yes
## 94 0 NA NA 0 0.000 Unspecified
## 95 96 NA 53 0 0.000 Yes
## 96 72 6.0000 NA 0 0.000 Yes
## 97 0 NA NA 0 0.000 Unspecified
## 98 0 8.0000 NA 0 0.000 Unspecified
## 99 0 NA NA 0 0.000 Unspecified
## 100 0 NA NA 0 0.000 Yes
## 101 0 NA NA 0 0.000 Yes
## 102 0 NA NA 0 0.000 Unspecified
## 103 0 NA NA 0 0.000 Unspecified
## 104 0 NA NA 0 0.000 Unspecified
## 105 0 NA NA 0 0.000 Unspecified
## 106 0 NA NA 0 0.000 Unspecified
## 107 0 NA NA 0 0.000 Unspecified
## 108 0 NA NA 0 0.000 Unspecified
## 109 0 NA NA 0 0.000 Unspecified
## 110 0 NA NA 0.167 0.833 Unspecified
## 111 0 NA NA 0 0.000 Yes
## 112 0 NA NA 0 0.000 Yes
## 113 0 NA NA 0 0.000 Yes
## 114 0 NA NA 0 0.000 Yes
## 115 0 NA 12 0 0.000 Yes
## 116 144 NA 5 0.333 22.000 Yes
## 117 0 NA NA 0 0.000 Yes
## 118 0 NA NA 0 0.000 Yes
## 119 0 NA NA 0 0.000 Unspecified
## 120 0 NA NA 0 0.000 Yes
## 121 0 9.0000 NA 4 12.000 Yes
## 122 156 NA NA 0 0.000 Unspecified
## 123 144 NA NA 0 0.000 Yes
## 124 312 NA NA 3 0.000 Yes
## 125 0 NA NA 0 0.000 Unspecified
## 126 0 NA NA 0 0.000 Unspecified
## 127 0 NA NA 0 0.000 Unspecified
## 128 0 NA NA 0 0.000 Yes
## 129 0 19.0000 12 0 0.000 Yes
## 130 0 NA NA 0 0.000 Yes
## 131 0 NA NA 0 0.000 Yes
## 132 72 39.0000 NA 13 83.000 Yes
## 133 120 34.0000 NA 0 0.000 Yes
## 134 0 NA NA 0 0.000 Yes
## 135 0 NA NA 0 0.000 Yes
## 136 0 NA 13 0 0.000 Yes
## 137 0 NA 11 9 50.000 Unspecified
## 138 120 13.0000 NA 7 47.000 Yes
## 139 0 39.0000 NA 0 88.000 Yes
## 140 0 66.0000 NA 0 0.000 Unspecified
## 141 0 84.2000 NA 0 0.000 Unspecified
## 142 0 NA NA 0 0.000 Unspecified
## 143 0 2.2000 NA 0 0.000 Unspecified
## 144 0 0.0833 NA 0 0.000 Unspecified
## 145 0 2.0000 NA 0 0.000 Unspecified
## 146 0 NA NA 0 0.000 Yes
## 147 1248 NA 4 <1 52.000 Yes
## 148 0 1.2000 NA 5 months 8.000 Unspecified
## 149 336 NA NA 0 0.000 Yes
## 150 192 NA 37 3 89.000 Yes
## 151 216 NA 37 15 84.000 Yes
## 152 0 NA NA 0 0.000 Yes
## 153 0 NA NA 0 0.000 Yes
## 154 0 NA NA 0 0.000 Yes
## 155 0 NA 7 0.417 61.000 Yes
## 156 172 NA 4 1 92.000 Yes
## 157 96 NA NA 3 66.000 Yes
## 158 0 NA NA 0 0.000 Yes
## 159 0 43.0000 NA 23 68.000 Yes
## 160 0 NA 39 17 63.000 Yes
## 161 72 NA 45 3 88.000 Yes
## 162 0 NA NA 0 0.000 Unspecified
## 163 0 NA NA 0 0.000 Yes
## 164 0 NA NA 0 0.000 Yes
## 165 0 NA NA 0 0.000 Yes
## 166 0 NA NA 0 0.000 Unspecified
## 167 0 NA NA 0 0.000 Unspecified
## 168 0 NA NA 0 0.000 Unspecified
## 169 0 NA NA 0 0.000 Yes
## 170 0 NA NA 0 0.000 Yes
## 171 0 NA NA 0 0.000 Yes
## 172 0 NA NA 0 0.000 Unspecified
## 173 96 NA NA 0.833 0.000 Yes
## 174 0 NA NA 0 0.000 Yes
## 175 60 NA NA 0 0.000 Yes
## 176 0 NA NA 0 0.000 Yes
## 177 168 NA NA 0 0.000 Unspecified
## 178 0 NA NA 0 0.000 Yes
## 179 168 NA 18 16 28.000 Yes
## 180 0 NA NA 0 0.000 Yes
## 181 96 NA NA 0 0.000 Yes
## 182 0 NA NA 0 0.000 Yes
## 183 0 NA NA 0 0.000 Yes
## 184 0 NA NA 0 0.000 Yes
## 185 336 NA NA 0 0.000 Yes
## 186 0 NA NA 0 0.000 Yes
## 187 336 NA 37 3 68.000 Unspecified
## 188 0 NA NA 0 0.000 Yes
## 189 84 NA 74 19 97.000 Yes
## 190 0 NA NA 0 0.000 Yes
## 191 0 NA NA 0 0.000 Yes
## 192 0 NA NA 0 0.000 Yes
## 193 0 NA NA 0 0.000 Unspecified
## 194 0 24.0000 NA 0 0.000 Yes
## 195 48 NA NA 0 0.000 Unspecified
## 196 264 31.0000 NA 1 72.000 Unspecified
## 197 0 NA 7 0.417 61.000 Yes
## 198 0 NA NA 0 0.000 Yes
## 199 0 NA NA 0 0.000 Unspecified
## 200 0 NA NA 0 0.000 Yes
## 201 0 NA NA 0 0.000 Unspecified
## 202 192 38.0000 4 31 45.000 Yes
## 203 0 NA 4 0 0.000 Yes
## 204 240 NA NA 13 83.000 Yes
## 205 0 NA NA 0 0.000 Yes
## 206 0 NA NA 0 0.000 Yes
## 207 0 NA NA 0 0.000 Yes
## 208 0 NA NA 0 0.000 Yes
## 209 144 43.0000 NA 23 60.000 Unspecified
## 210 76 NA NA 0 0.000 Unspecified
## 211 0 NA NA 20 98.000 Yes
## 212 144 43.0000 NA 0 0.000 Yes
## 213 312 48.0000 NA 0 0.000 Yes
## 214 72 49.0000 NA 0 0.000 Yes
## 215 0 NA NA 0 0.000 Yes
## 216 0 NA NA 0 0.000 Yes
## 217 0 NA 22 18 64.000 Yes
## 218 0 89.3300 NA 0 0.000 Unspecified
## 219 0 56.0000 NA 0 0.000 Unspecified
## 220 216 NA NA 0 0.000 Unspecified
## 221 0 NA NA 0 0.000 Unspecified
## 222 0 NA 48 18 80.000 Yes
## 223 144 NA NA 0 0.000 Yes
## 224 0 NA NA 0 0.000 Unspecified
## 225 0 NA NA 0 0.000 Unspecified
## 226 0 NA NA 0 0.000 Unspecified
## 227 0 NA NA 0 0.000 Unspecified
## 228 0 NA NA 0 0.000 Unspecified
## 229 0 NA NA 0 0.000 Unspecified
## 230 0 NA NA 0 0.000 Yes
## 231 240 NA 63 5 91.000 Yes
## Action2_1
## 1 0
## 2 0
## 3 Harvest area closed, oysters were recalled, warning issued to consumers
## 4 0
## 5 0
## 6 Dissinfection of ship, quarentine, cancelation of further voyages for 10 days
## 7 Reinforced sanitation measures, excluded ill foodhandlers from work
## 8 quarantine of ill staff, reinforcement of sanitation practices, disinfection of ship
## 9 Disinfection and sanitation measures, removed from service for agressive cleaning
## 10 Sinks installed, hand sanitizer made available, warnings and flyers were distributed
## 11 suspected infectioned isolated, etoh based hand sanitizers distributed, portable sinks installed, educatio l hygiene materials
## 12 0
## 13 recall and destroying some oysters harvested from LA coast from Nov 9-12, although most are still accounted for
## 14 Water line was flushed regularly
## 15 0
## 16 wing ma ger meeting about hand washing, cleaning and disposal of soiled items, protection methods for staff, disinfection techniques and food-handling precautions
## 17 Restaurant was immediately closed
## 18 kitchen was thoroughly cleaned, demonstration of infective link b/n chef and cases stressed food hygiene to staff
## 19 Signs, improved hygine, isolation of sick, cleaning, removal of self-service from dining halls
## 20 Ship was cleaned for a week following the second week of outbreaks
## 21 Oyster beds were closed to harvesting for a period of time
## 22 Hand hygine emphasized, sick policy implimented
## 23 Sick policy implimented, hand hygiene emphasized, hotel was closed for 8 hours for extensive cleaning
## 24 Strict staffing policy, hand hygiene emphasized, ward closed and cleaned
## 25 School was closed for several days
## 26 Signs were posted not to swim, guests were seperated while eating
## 27 Saloon was closed
## 28 Ship came into port early
## 29 Staff policy, hand hygiene emphasized, changed type of disinfectant, additio l cleaning, use of ppe
## 30 handrubbing with a hydroalcolic gel, surfaces washed with a solution of glucoprotamine, washbowls washed with hypochlorite
## 31 0
## 32 0
## 33 additio l portable bathrooms, education on hygiene, newsletters, alcohol-based hand sanitizers, increase access to soap & water, rehydration area, isolation room
## 34 ill food handler went home after vomiting
## 35 alcohol hand sanitizers installed
## 36 campus closed, students and staff instructed to stay home (staff for 72 hours, until asymptomatic)
## 37 cleaning of dormitories, public restrooms, and commu l areas was implemented with cleaning agents approved for norovirus
## 38 guests of symptomatic cases advised not to go into work until 48 hours atfer stools returned to normal
## 39 lavatory closed
## 40 \tContami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states.
## 41 Contami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states.
## 42 Contami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states
## 43 0
## 44 \tGlove wearing implemented in four wards of HC building; three wards thoroughly disinfected and isolated from ward associated with outbreak wave; social activities canceled and staff asked to limit cross-contact between wards.
## 45 inspections were conducted at every port, jacuzzi and pool was closed, AC intake filters were sanitized, and a termi l cleaning took place
## 46 usage of ethanol-based produccts to wash hands, all areas of building thoroughly disinfected 3 times a day, PPE used by HCWs
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 Infection control measures
## 58 0
## 59 staff wore gloves and aprons, discarding gloves and apron after treating each patient, isolating the affected from the u ffected, and using disposable plates and cutlery for the duration of the outbreak
## 60 Restaurant was cleaned, closed, then professio lly cleaned
## 61 Restaurant was cleaned, closed, then professio lly cleaned
## 62 Restaurant was cleaned, closed, then professio lly cleaned
## 63 Restaurant was cleaned, closed, then professio lly cleaned
## 64 voluntary 24 hr isolation period suggested by staff to decrease contami ted surfaces and fomites
## 65 Infection control measured applied, staff educated on transmission, ward were cleaned, patients were cohorted
## 66 Deli bar was closed
## 67 0
## 68 0
## 69 0
## 70 0
## 71 Hygiene procedures implimented, toilets were seperated, facilities cleaned
## 72 Sick food handlers asked to stay home, investigation of caterer's kitchen
## 73 Nurse cohorting, infection controls, ward closure, staff sick policy instituted
## 74 0
## 75 Hotel and restaurant were closed for 14 days for extensive cleaning, associated hospital instituted employee sick policy
## 76 wiped down surfaces such as vinyl tablecloths, doorknobs, vinyl mattresses, food containers, and other hard surfaces with a diluted bleach solution of unknown concentration
## 77 new admissions to psychiatric ward were halted, healthcare workers to not report to work until at least 72h after the resolution of symptoms, careful surveillance for new cases, disinfection of patientsÂ\220 rooms, strict hand hygiene practice
## 78 A boil water notice was posted
## 79 Resident Contact was minimized, hand hygiene emphasized, sick policy implimented
## 80 Water system was chlori ted
## 81 Infected rooms were steam cleaned, sanitation inspections improved practices
## 82 0
## 83 0
## 84 Closed to admissions, staff sick policy implimented, using perso l protective equipment
## 85 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 86 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 87 Sick policy implimented, hand hygine emphasized
## 88 Greater Murray Area Health Service issued local media releases to remind food businesses and the public about proper food preparation, catering company voluntarily ceased all operations from 16 October for a short period
## 89 0
## 90 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 91 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 92 0
## 93 voluntary closure of restaurant
## 94 0
## 95 closed and disinfected the kitchen, disposed of food
## 96 Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home
## 97 0
## 98 0
## 99 0
## 100 Infection control measures
## 101 Quarantine put in place; bleach solution used to sanitize environment
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 The restaruant was closed twice, one bus company stoped using the restaurant, and an investigation was conducted
## 112 Chlori tion of water, using a clean moble water supply, conducted an investigation of piping
## 113 Infected staff advised to stay off work for 48 hours
## 114 Ship was cleaned, when outbreak persisted, proximal cruise was cancled and ship was cleaned for a week
## 115 Camp was closed during investigation, implimented new sewage system and periodic testing
## 116 Infection control measures taken, area deep cleaned, ward was closed to new patients, infected were isolated
## 117 trace back of food from the catering company, no further cases found
## 118 contact precautions (hand washing, gloves, gowns) as well as masks those cleaning vomitus or feces, discouraged ill patients from leaving room, restrict ill visitors, ill staff took leave til asymptomatic for 48 h
## 119 0
## 120 proper hand hygiene, soap pumps & disposable paper towels, separate toilets for sick participants, guidelines for cleaning toilets & contami ted surfaces with a 1,000-ppm chlorine solution
## 121 Fountain shut down, water chlori ted, new systems put in place to moniter water
## 122 0
## 123 processing plant began a log to track employee illnesses, instituted use of NoV-approved sanitizer for product contact surfaces, hand-washing, plastic gloves when handling ready-to-eat product
## 124 School was disinfected with amonia, later closed and disinfected with chlorine
## 125 0
## 126 0
## 127 0
## 128 Surfaces were disinfected with bleach after having been vomited on
## 129 Public advised not to swim in lakes
## 130 ill food handlers were removed of duty
## 131 ill food handlers were removed of duty
## 132 caterer was advised on appropriate methods of food storage and refrigeration during transportation
## 133 caterer was advised on appropriate methods of food storage and refrigeration during transportation
## 134 public health unit advised that affected staff should not return to work until 48 hours after cessation of symptoms
## 135 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 136 increase the chlorine concentration at the main water-treatment works
## 137 0
## 138 hygeinic procedures were taken and camp was cancelled
## 139 environmental investigation by regio l health authorities
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 Infection control measures
## 147 Press release warning visitors of contami ted water, investigation of water sources/septic tanks, providing water to residents of nearby towns
## 148 0
## 149 Hygiene advice, boiling of drinking water
## 150 Banquet program was cancled, investigations were carried out, Caterer was closed to comply with regulations
## 151 The lodge was closed and an investigation was conducted
## 152 prohibit oyster harvesting within one mile of oil rig, implement stricter regulation of sewage treatment systems on oil facilities, require toilets on harvest boats, have regular inspection and water acceptance station at docks
## 153 Hotel was closed, water was superchlori ted, superheated, and flushed follwing investigation
## 154 boil notice for water supply
## 155 Hyperchlori tion of pool water, outbreak investigation, maintanence errors fixed
## 156 All food was discarded, facility was cleaned twice
## 157 Cleaned most surfaces with bleach, followed by investigation, cleaned all surfaces with bleach, ill told to stay at home for 72 hours
## 158 Guests were seperated, all food was cooked, hotel was closed and deep cleaned
## 159 Public anouncements, revising oyster harvesting regulations, coordi ted with harvesters
## 160 Ill food handlers did not work until 48 hrs. post symptoms, hygiene emphasized
## 161 Harvesters were asked to place their oysters in purification bins prior to sale
## 162 0
## 163 Camp was clean, closed and the fi lly professio lly cleaned
## 164 Camp was clean, closed and the fi lly professio lly cleaned
## 165 Camp was clean, closed and the fi lly professio lly cleaned
## 166 0
## 167 0
## 168 0
## 169 Enforced hand hygiene and environmental cleaning, cohort isolation of infected hospital patients, banning ill medical staff from working and awareness-building in general
## 170 Kitchen and mess hall were closed, troops ate battle rations, ill and healthy were separated
## 171 Sick policy implimented, hand hygiene sig ge, emergency chlori tion, thorough cleaning
## 172 0
## 173 index case was promtly removed and changed
## 174 Extensive outbreak control including cleaning, patient cohorting, hygiene, sick policy, and ward closure
## 175 Public was warned, hygiene was emphasized
## 176 temporary closure of wards, patient contact isolation til 2 days after recovery, patient transfers discouraged, keep list of gastroenteritis cases, contami ted surfaces & rooms cleaned w chlorine disinfectant
## 177 0
## 178 Extensive cleaning and disinfection, patients no longer transfered
## 179 closed dining hall
## 180 Water system was super chlori ted
## 181 index case was given a single room to prevent further exposure, exposed surfaces and fomites in the hostel were cleaned and disinfected using alcohol-based disinfectants
## 182 Surfaces, Rooms, and Equipment were disinfected, hand hygine was emphasized, sick patients told to remain in their rooms
## 183 Strict staffing policy, ward was closed, areas were disinfected
## 184 Cleaned and disinfected vomitus
## 185 Infection control measures taken, hand hygiene emphasized, employee sick plolicy, areas closed to admission, restricted visitors
## 186 Ward closed to admissions, staffing policy implimented, infection control measures and deep cleaning
## 187 0
## 188 records indicated increased absentees from school clerks, antidiarrheal medicines
## 189 enforcement of hygiene measures
## 190 Infection control implimented, staff sick policy, isolation of cases, signs erected
## 191 Infection control measures, staff sick policy, no admissions or transfers, isolate cases
## 192 Sick policy, hand hygiene, disinfection
## 193 0
## 194 Use of water supply forbidden, water was super chlori ted, encouraged hand washing and protective equipment
## 195 0
## 196 0
## 197 Pool was hyperchlori ted and the chlorine dispensor was fixed
## 198 isolated ill patients, canceled congregate activities, diverted patients to alter te hospitals, removed alcohol-based hand hygiene products, encouraged handwashing w/soap, used chlorine disinfectant, ill staff stay home til asympomatic for 48h
## 199 0
## 200 Cleaning solution switched to hypochlorous acid
## 201 0
## 202 closure of the kitchen; canteen area, restroom, and kitchen were appropriately; kitchen staff had to undergo refresher training in basic kitchen and food hygiene before being readmitted to work
## 203 hand cleansing agent changed to one w/certified activity against NV, which contains 95% (v/v) ethanol, use of masks when having symptomatic patient contact, cohorting patients
## 204 Terranora oysters were removed from retail and wholesale outlets, harvesting of oysters was prohibited from the river for several months until water quality met recommended standards and a comprehensive ongoing quality assurance program was in place
## 205 cohort staff & infants, mandatory gowns and gloves when providing any care to newborns, hand washing, replacing antiquated sinks, ill staff & visitors discouraged to work/visit
## 206 Crew were removed from service at onset and seated at the back of the plane
## 207 hand hygiene, contact precautions, use masks when aiding vomiting residents cleaning soiled fomites, employees stayed home til 48 h after symptoms subsided, clean environmental surfaces w/phenolic agent
## 208 isolated affected patients & healthcare workers wore gloves & gowns during direct patient contact, admission from the community or from other wards & transfers to other wards were suspended, handwashing, decontami ted room surfaces
## 209 0
## 210 0
## 211 disinfected doorknobs and floors, told sick employees to stay home, monthly collection of stool samples from kitchen works, Employees given through education on handwashing,Food sanitation manual was revised
## 212 Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home
## 213 Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home
## 214 Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home
## 215 an environmental health investigation was conducted and the coach was thoroughly cleaned and subsequent passengers were not allowed
## 216 an environmental health investigation was conducted and the coach was thoroughly cleaned and subsequent passengers were not allowed
## 217 strict perso l hygiene, isolation of both sick and healthy, hand disinfectants distributed, thorough kitchen cleaning, sick and healthy employees sent home. Contami ted areas cleaned and disinfected.
## 218 0
## 219 0
## 220 0
## 221 0
## 222 Hand hygiene, no food buffets, sick personnel put on leave
## 223 Testing of oysters
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 Disinfection of restaurants, kitchens, and toilets performed and main kitchen in hotel restaurant closed
## 231 investigators boarded cruise, increased sanitation procedures were taken, isolation of case and cabin mates
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 No 0 0 0 0 0 0
## 2 Yes 0 0 0 0 0 0
## 3 Yes 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## 7 No 0 0 0 0 0 0
## 8 No 0 0 0 0 0 0
## 9 No 0 0 0 0 0 0
## 10 No 0 0 0 0 0 0
## 11 Yes 0 0 0 0 0 0
## 12 No 0 0 0 0 0 0
## 13 Yes 0 0 0 0 0 0
## 14 No 0 0 0 0 0 0
## 15 No 0 0 0 0 0 0
## 16 No 0 0 0 0 0 0
## 17 Yes 0 0 0 0 0 0
## 18 Yes 0 0 0 0 0 0
## 19 No 0 0 0 0 0 0
## 20 Yes 0 0 0 0 0 0
## 21 Yes 0 0 0 0 0 0
## 22 No 0 0 0 0 0 0
## 23 No 0 0 0 0 0 0
## 24 No 0 0 0 0 0 0
## 25 Yes 0 0 0 0 0 0
## 26 No 0 0 0 0 0 0
## 27 No 0 0 0 0 0 0
## 28 No 0 0 0 0 0 0
## 29 Yes 0 0 0 0 0 0
## 30 No 0 0 0 0 0 0
## 31 No 0 0 0 0 0 0
## 32 No 0 0 0 0 0 0
## 33 No 0 0 0 0 0 0
## 34 No 0 0 0 0 0 0
## 35 No 0 0 0 0 0 0
## 36 No 0 0 0 0 0 0
## 37 No 0 0 0 0 0 0
## 38 Yes 0 0 60 96 0 0
## 39 Yes 0 0 0 0 0 0
## 40 No 0 0 0 0 0 0
## 41 Yes 0 0 0 0 0 0
## 42 No 0 0 0 0 0 0
## 43 No 0 0 0 0 0 0
## 44 No 0 0 0 0 0 0
## 45 No 0 0 0 0 0 0
## 46 No 0 0 0 0 0 0
## 47 No 0 0 0 0 0 0
## 48 No 0 0 0 0 0 0
## 49 No 0 0 0 0 0 0
## 50 No 0 0 0 0 0 0
## 51 No 0 0 0 0 0 0
## 52 No 0 0 0 0 0 0
## 53 No 0 0 0 0 0 0
## 54 No 0 0 0 0 0 0
## 55 No 0 0 0 0 0 0
## 56 No 0 0 0 0 0 0
## 57 No 0 0 0 0 0 0
## 58 No 0 0 0 0 0 0
## 59 No 0 0 0 0 0 0
## 60 No 0 0 0 0 0 0
## 61 No 0 0 0 0 0 0
## 62 No 0 0 0 0 0 0
## 63 No 0 0 0 0 0 0
## 64 No 0 0 0 0 0 0
## 65 No 0 0 0 0 0 0
## 66 No 0 0 0 0 0 0
## 67 No 0 0 0 0 0 0
## 68 Yes 0 0 0 0 0 0
## 69 No 0 0 0 0 0 0
## 70 No 0 0 0 0 0 0
## 71 No 0 0 0 0 0 0
## 72 Yes 0 0 0 0 0 0
## 73 No 0 0 0 0 0 0
## 74 No 0 0 0 0 0 0
## 75 Yes 0 0 0 0 0 0
## 76 No 0 0 0 0 0 0
## 77 No 0 0 0 0 0 0
## 78 No 0 0 0 0 0 0
## 79 No 0 0 0 0 0 0
## 80 No 0 0 0 0 0 0
## 81 No 0 0 0 0 0 0
## 82 No 0 0 0 0 0 0
## 83 Yes 0 0 0 0 0 0
## 84 No 0 0 0 0 0 0
## 85 No 0 0 0 0 0 0
## 86 No 0 0 0 0 0 0
## 87 Yes 0 0 0 0 0 0
## 88 No 0 0 0 0 0 0
## 89 No 0 0 0 0 0 0
## 90 Yes 0 0 0 0 0 0
## 91 No 0 0 0 0 0 0
## 92 No 0 0 0 0 0 0
## 93 Yes 0 0 0 0 0 0
## 94 No 0 0 0 0 0 0
## 95 Yes 0 0 0 0 0 0
## 96 No 0 0 0 0 0 0
## 97 No 0 0 0 0 0 0
## 98 No 0 0 0 0 0 0
## 99 No 0 0 0 0 0 0
## 100 No 0 0 0 0 0 0
## 101 No 0 0 0 0 0 0
## 102 No 0 0 0 0 0 0
## 103 No 0 0 0 0 0 0
## 104 No 0 0 0 0 0 0
## 105 No 0 0 0 0 0 0
## 106 No 0 0 0 0 0 0
## 107 No 0 0 0 0 0 0
## 108 Yes 0 0 0 0 0 0
## 109 Yes 0 0 0 0 0 0
## 110 No 0 0 0 0 0 0
## 111 No 0 0 0 0 0 0
## 112 No 0 0 0 0 0 0
## 113 No 0 0 0 0 0 0
## 114 No 0 0 0 0 0 0
## 115 No 0 0 0 0 0 0
## 116 No 0 0 0 0 0 0
## 117 No 0 0 0 0 0 0
## 118 No 0 0 0 0 0 0
## 119 No 0 0 0 0 0 0
## 120 No 0 0 0 0 0 0
## 121 Yes 0 0 0 0 0 0
## 122 No 0 0 0 0 0 0
## 123 No 0 0 0 0 0 0
## 124 Yes 0 0 0 0 0 0
## 125 No 0 0 0 0 0 0
## 126 No 0 0 0 0 0 0
## 127 No 0 0 0 0 0 0
## 128 No 0 0 0 0 0 0
## 129 Yes 0 0 0 0 0 0
## 130 No 0 0 0 0 0 0
## 131 No 0 0 0 0 0 0
## 132 No 0 0 0 0 0 0
## 133 No 0 0 0 0 0 0
## 134 No 0 0 0 0 0 0
## 135 No 0 0 0 0 0 0
## 136 No 0 0 0 0 0 0
## 137 Yes 81 0 78 83 0 0
## 138 Yes 0 0 0 0 0 0
## 139 No 0 0 0 0 0 0
## 140 No 0 0 0 0 0 0
## 141 No 0 0 0 0 0 0
## 142 No 0 0 0 0 0 0
## 143 No 0 0 0 0 0 0
## 144 No 0 0 0 0 0 0
## 145 No 0 0 0 0 0 0
## 146 No 0 0 0 0 0 0
## 147 No 0 0 0 0 0 0
## 148 No 0 0 0 0 0 0
## 149 Yes 0 0 0 0 0 0
## 150 No 0 0 0 0 0 0
## 151 No 0 0 0 0 0 0
## 152 No 0 0 0 0 0 0
## 153 No 0 0 0 0 0 0
## 154 No 0 0 0 0 0 0
## 155 No 0 0 0 0 0 0
## 156 Yes 0 0 0 0 0 0
## 157 No 0 0 0 0 0 0
## 158 No 0 0 0 0 0 0
## 159 No 0 0 0 0 0 0
## 160 No 0 0 0 0 0 0
## 161 No 0 0 0 0 0 0
## 162 No 0 0 0 0 0 0
## 163 No 0 0 0 0 0 0
## 164 No 0 0 0 0 0 0
## 165 No 0 0 0 0 0 0
## 166 No 0 0 0 0 0 0
## 167 No 0 0 0 0 0 0
## 168 No 0 0 0 0 0 0
## 169 No 0 0 0 0 0 0
## 170 No 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 Yes 0 0 0 0 0 0
## 173 Yes 0 0 0 0 0 0
## 174 No 0 0 0 0 0 0
## 175 No 0 0 0 0 0 0
## 176 No 0 0 0 0 0 0
## 177 No 0 0 0 0 0 0
## 178 No 0 0 0 0 0 0
## 179 No 0 0 0 0 0 0
## 180 Yes 0 0 0 0 0 0
## 181 No 0 0 0 0 0 0
## 182 No 0 0 0 0 0 0
## 183 No 0 0 0 0 0 0
## 184 No 0 0 0 0 0 0
## 185 Yes 0 0 0 0 0 0
## 186 No 0 0 0 0 0 0
## 187 Yes 0 0 0 0 0 0
## 188 No 0 0 0 0 0 0
## 189 No 0 0 0 0 0 0
## 190 Yes 0 0 0 18 0 0
## 191 Yes 0 0 0 0 0 0
## 192 Yes 0 48 24 168 0 0
## 193 No 0 0 0 0 0 0
## 194 No 0 0 0 0 0 0
## 195 No 0 0 0 0 0 0
## 196 No 0 0 0 0 0 0
## 197 Yes 0 0 0 0 0 0
## 198 No 0 0 0 0 0 0
## 199 No 0 0 0 0 0 0
## 200 No 0 0 0 0 0 0
## 201 No 0 0 0 0 0 0
## 202 Yes 0 0 0 0 0 0
## 203 No 0 0 0 0 0 0
## 204 No 0 0 0 0 0 0
## 205 No 0 0 0 0 0 0
## 206 No 0 0 0 0 0 0
## 207 No 0 0 0 0 0 0
## 208 No 0 0 0 0 0 0
## 209 No 0 0 0 0 0 0
## 210 Yes 0 0 0 0 0 0
## 211 No 0 0 0 0 0 0
## 212 No 0 0 0 0 0 0
## 213 No 0 0 0 0 0 0
## 214 No 0 0 0 0 0 0
## 215 Yes 0 0 0 0 0 0
## 216 Yes 0 0 0 0 0 0
## 217 No 0 0 0 0 0 0
## 218 No 0 0 0 0 0 0
## 219 No 0 0 0 0 0 0
## 220 No 0 0 0 0 0 0
## 221 No 0 0 0 0 0 0
## 222 No 0 0 0 0 0 0
## 223 No 0 0 0 0 0 0
## 224 No 0 0 0 0 0 0
## 225 No 0 0 0 0 0 0
## 226 No 0 0 0 0 0 0
## 227 No 0 0 0 0 0 0
## 228 No 0 0 0 0 0 0
## 229 No 0 0 0 0 0 0
## 230 No 0 0 0 0 0 0
## 231 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 10
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 49 11 73
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 0 0 0 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 36 0 2 80
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 24 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## Comments_1
## 1 Outbreak took place during a study on gasteroenteritus in a day care center. Same paper as outbreak # 2
## 2 Secondary cases include both persons from NC and FL, some secondary cases were included in # at risk of primary infection
## 3 Multistate outbreak caused by oysters from LA, cases are listed as "at least 180", investigation ongoing at date of publication
## 4 Outbreak 1 of 2, Cases include all employees and restaruant patrons that presented, attack rates differed in groups
## 5 Outbreak 2 of 2, "primary cases" include index cases and secondary cases, "secondary cases" include tertiary and quatery cases
## 6 Outbreak 2 of 5, attack rate applys to passagers from cruise 1, cases includes passengers and crew from all 3 voyages
## 7 Outbreak 3 of 5, attack rates from survey used to calulate cases (combined employees and passengers)
## 8 Outbreak 4 of 5, attack rates different among passengers and staff, cases are only those who went to infirmary
## 9 Outbreak 5 of 5, cases calculated using attack rate found in servey, attack rates among staff and passengers differed significantly
## 10 Outbreak at refugee camp in texas after katri hit New Orleans, at point of publication investigation was ongoing
## 11 Multistate outbreak caused by infected food/persons at a family reunion in WV.
## 12 Outbreak on a US aircraft carier, cases and at risk extrapoalted from small cross sectio l study onboard
## 13 multi-state NV outbreak due to contami ted oysters off coast of LA; secondary cases noted 1-2 wks following for family members of cases who had not eaten oysters
## 14 Only visiters to Aborigi l community were affected, possible Aborigi l immunity
## 15 Outbreak in daycare lead to community outbreaks in local area, state of Rio de Janeiro, Brazil
## 16 secondary cases noted among family members and visitors some of which were parallel cases as those of the residents, but were not included in the study
## 17 Large outbreak in Japan, from infected food handlers at a Restaruant
## 18 chef that prepared salads had been sick and came back to work after symptom-free for 48 h
## 19 Outbreak at a University in Ca da, restricted to residential facilities on campus
## 20 Outbreak persisted for 6 cruise trips, one passenger later became an index case for an outbreak at a longterm care facility
## 21 Outbreak from contami ted oyster beds
## 22 Outbreak at a hospital in switzerland
## 23 outbreak among three groups at a hotel in Virginia
## 24 Outbreak 2 of 2
## 25 Outbreak at a primary school lunch in Japan
## 26 Outbreak at a Mother-Child health clinic
## 27 Waterborne outbreak in Wyoming, well placement was in violation of state laws
## 28 Outbreak on a ship off the coast of Japan, two possible sources of infection (seafood and persons)
## 29 Outbreak at a nursing home, the transfered to a hospital with additio l cases among patients and staff
## 30 GII outbreak in Belgian hospital w/nursing assistant as source, which spread to patients, staff, and other hospital workers; strain related to Camberwell virus (92% nucleotide identity)
## 31 outbreak B in Table; outbreak occurred in both patients and staff w/no indication of foodborne illness, but one member of the nursing staff reported a gastrointesti l illness 4 days prior to the outbreak
## 32 outbreak C in Table; occurred in nursing home where patients had dementia and were not asked to complete a question ire; 11 cases among staff were still symptomatic when they returned to work
## 33 large outbreak that occurred after Hurricane Katri when ppl affected were placed in a megashelter in Houston; cases were desig ted by if they had GE & had entered clinics; detected mostly sequivants of GI.17 w/slight nucleotide differences
## 34 outbreak took place at Swedish manufacturing company canteen where food handler sick with gastroenteritis vomited and contami ted tomatoes and hamburger buns
## 35 outbreak 1 of 3
## 36 outbreak 2 of 3
## 37 outbreak 3 of 3
## 38 0
## 39 non-tour group members were the secondary cases since exposed on plane
## 40 Outbreak 1 of 3 in a cluster.
## 41 Most cases in children less than 7 years old. This study is in line with the proportion of non-GII.4 outbreaks that is found to be higher in food-borne outbreaks whereas GII.4 outbreaks were mostly linked to person-to-person transmission. Cluster 2 of 3
## 42 Cluster of outbreaks; Outbreak 1 of 3 in cluster
## 43 This data was also a lyzed with respect to blood groups and Lewish Phenotypes. Cook was ill 4 days before and other restaurant employees became sick 3 days 50/83 members were asymptomatic may include unexposed persons.
## 44 Mortality was 16 times higher in early (primary) cases than in late (secondary) cases. There were also 25/183 HCWs in the outbreak but recorded most statistics for residents
## 45 5/520 crew affected which indicates they were using proper outbreak control measures. average 7.75 hr delay in reporting illness preventing prompt response. Greatest risk to cruise passengers were those in cabins on Main deck from contaimated environment
## 46 10 HCW affected (out of 125, and 41 residents (out of 265). 1 HCW was the index case. 83% of residents had disabilities in daily activities; 63% needed tube feedings, Foley insertions or chronic tracheotomies.
## 47 Outbreak 2 of 21
## 48 Outbreak 3 of 21
## 49 Outbreak 8 of 21
## 50 Outbreak 9 of 21
## 51 Outbreak 10 of 21
## 52 Outbreak 11 of 21
## 53 Outbreak 12 of 21
## 54 Outbreak 13 of 21
## 55 Outbreak 14 of 21
## 56 Outbreak 15 of 21
## 57 Outbreak 3 of 3
## 58 Cases include both troops and hospital staff, at risk include 50% of troops and all hospital staff, hospital staff may be secondary cases but it was not specified
## 59 largest outbreak in nursing homes (6 total) in Israel which took place for 3 wks, infecting both staff and residents
## 60 Outbreak 1 of 3 + community cases, catered event to school staff
## 61 Outbreak 2 of 3 + community cases, catered lunch to a corporation
## 62 Outbreak 3 of 3 + community cases, catered lunch at a social service organization
## 63 Community Cases in an article containing 3 outbreaks, 90% of community cases from same restaruant
## 64 outbreak on a cruise ship, question ire for passengersl although crew got sick as well
## 65 Outbreak in three wards of a long term care facility in Australia, norovirus confirmed on two of three wards
## 66 Outbreak at a university in TX, foodhandler's infant was sick, foodhandler infected ham and deli foods, students became infected from deli food
## 67 Number at risk were the number interviewed, cases only include guests, cases in body and abstract do not match
## 68 Cases include staff and patients, secondary cases are from both the nursing homes and hospital in France
## 69 Outbreak 3 of three from fourth part of article, 21 cases from hospital and 48 from nursing home
## 70 Large outbreak from wedding cakes served at 42 weddings during one weekend
## 71 Outbreak aboard a british vy ship deployed in the Arabian Gulf
## 72 Outbreak at 30 locations from 1 caterer, double attack rate among adults
## 73 Outbreak in a mental hospital, infection control limited outbreak, staff and patients combined in cases
## 74 Outbreak of Norovirus onboard a cruse ship, early use of RTPCR
## 75 Foodborne outbreak from restaurant at a hotel associated with a hospital
## 76 participants of three consecutive 5-night educatio l boating trips became ill, index case was most likely a participant who arrived displaying symptoms of gastroenteritis
## 77 outbreak at hospital origi lly thought to be caused by C. difficile w 2 clusters of cases
## 78 Outbreak information was gathered by use of a computer survey on a common network within the community
## 79 Outbreak at a retirement home in Australia, envornmental and person to person spread
## 80 Large waterborne outbreak in Italy, Rotavirus (+) in 48% of samples, more than norovirus
## 81 Outbreak on a cruise ship in Med Sea 1996
## 82 Outbreak in Finland due to raspberries at a company lunch
## 83 Number of primary cases is secondary cases subtracted from total cases. Same math used for 2ndary at risk number
## 84 Outbreak in a nursing home in Maryland in 1994
## 85 PCR results are not discussed in detail; there was a second outbreak in an acute ward in a separate building (see record 31)
## 86 this outbreak occurred in ward X of Alfred Hospital w/the suspected source being a nurse who had worked in ward B in a separate building which had also had a NV outbreak (see record 8)
## 87 Outbreak at a cafeteria in a hospital
## 88 outbreak caused by unsanitary practices and illness of food handlers of catering company who had provided food for 14 events in two days
## 89 outbreak occurred in nursery affecting both newborns and staff (GI and GII NV)
## 90 occurred in restaurant from grilled oysters & interviews were conducted on those who ate on Fri & Sat nights b/n Oct 31 & Nov 19; NoV was detected in stool specimens but paper made unclear which strains correlated w/specific outbreaks
## 91 point-source outbreak occurred at a function where they served oyster cocktails; NoV was detected in stool specimens but paper made unclear which strains correlated w/specific outbreaks
## 92 outbreak occurred at Worcester Polytechnic Institute, medical records & question ires were used to assess inclusion criteria including symptoms of usea, vomiting, diarrhea, and abdomi l pain
## 93 steak also implicated as vehicle; primary case data (incubation, duration, age) from patrons (n=211)
## 94 There was another outbreak in the same school district with SV present, NV was not tested for. Not sure how outbreaks may have been related
## 95 Soup/bread vehicle also. 152/550 patients/residents affected (27.6%) and 52/240 staff members affected (21.7%) HC facility served by central kitchen. Asymptomatic kitchen staff sources of food contami tion. no review of kitchen hygiene practices
## 96 Outbreak 4 of 4
## 97 Outbreak 17 of 21
## 98 Outbreak 18 of 21
## 99 Outbreak 19 of 21
## 100 Outbreak 1 of 3
## 101
## 102 Home A
## 103 Home B
## 104 Home C
## 105 Home D
## 106 Home E
## 107 Home F
## 108
## 109
## 110 Outbreak from a longitudi l study on diarrheal illnesses in infants in daycare. All infants in this outbreak had co-infection with astrovirus
## 111 Outbreak at a restaurant along a bus route, cases were backcalculated in the article from the number at risk and the attack rate found in their study
## 112 Outbreak at a summer resort in Southern Italy. Fecal contami tion of water supply, 24 day outbreak period
## 113 Outbreak due to contami ted water at bakery, bakers became sick, custard made with contami ted water infected satalite stores in communities
## 114 Oubtreak 1 of 5 in article, data is combined passengers and crew for two back-2-back cruises
## 115 CDC reported outbreak at a Summer camp in WY, waterborne from fecal contami ted well water, co-infection with Campylobacter jejuni
## 116 Outbreak in Hong Kong pediatric unit, effective control measures prevented further spread of virus
## 117 Third outbreak section in article, transmission following a meal with multiple families, transmission route inconclusive
## 118 outbreak caused by index case at Univ of Alberta Hospital was controlled, but difficult b/c i bility to restrict psychiatric patients to their rooms and to maintain isolation precautions
## 119 Limited information available, outbreak mentioned briefly in article
## 120 scout jamboree was divided into camps A-G, all of which had NoV cases; paper focused on finding reproduction number (defined as the average number of secondary cases caused by 1 typical case in the absence of and after enhanced hygiene measures)
## 121 Outbreak at recreatio l water fountain, some information on secondary cases included
## 122 Outbreak among three canteens in Finland on the same date, related to salad consumption
## 123 outbreak during 13 of 91 rafting trips from different companies, but the ill rafters had eaten ready-to-eat meat product infected by ill worker at processing company who had sliced the meat w/bare hands
## 124 Secondary cases: at risk are those from 75 infected students returning survey, each primary case = 1.01 secondary cases
## 125 Outbreak due to fecal contami tion in drinking water
## 126 1 of 2, limited information available
## 127 2 of 2, limited information available
## 128 Outbreak in England from contami ted food (vomiting food handler) at a wedding
## 129 Large outbreak at a lake in sweden, number of cases are those used in the case control study
## 130 G1 (80% identity Desert Shield) outbreak on USS Peleliu was caused by unidentified source, however, crew members shared quarters, restrooms closely throughout 6 mo deployment
## 131 G1 (97% identity Southampton virus) outbreak on USS Peleliu was caused by unidentified source, however, crew members shared quarters, restrooms closely throughout 6 mo deployment
## 132 desig ted outbreak A in paper took place at BBQ as GGII.6 hypothesized to be the result of ill food handler who prepared salads; estimated 28 attended but only 26 completed survey; this catering company also spread NoV to another BBQ on the same day
## 133 outbreak B took place at BBQ as GGII.6 hypothesized to be the result of ill food handler who prepared salads; estimated 250 attended but only received 106/194 surveyed; this catering company also spread NoV to another BBQ on the same day
## 134 desig ted outbreak A in paper; early cases occurred in the hostel section with subsequent spread to the nursing home; staff may have transmitted the virus while moving within the facility but source unclear
## 135 outbreak occurred in 2 hotels from oyster eating raw and cooked oysters; No contact details were available for other attendees at the 2 hotels b/c contact details for patrons were not recorded
## 136 this was a large outbreak that affected the whole capital city of Podgorica in Montenegro due to munipal water source contami tion, total size of outbreak estimated to be 10 000-15 000 from population 136,000 w/an attack rate of 10%.
## 137 0
## 138 secondary cases were likely underrepresented since those who were ill were more likely to return questio ire
## 139 data applies to confirmed norovirus cases
## 140 Outbreak 1 of 21
## 141 Outbreak 4 of 21
## 142 Outbreak 5 of 21
## 143 Outbreak 6 of 21
## 144 Outbreak 7 of 21
## 145 Outbreak 20 of 21
## 146 Outbreak 2 of 3
## 147
## 148
## 149 No information on secondary cases given
## 150 Boxed banquet sent to car dealerships with contami ted salad, 14 states involved
## 151 Waterborne outbreak at 2 snowmobile lodges in WY, contami ted sewage seeped into ground water
## 152 Limited info available, 2nd outbreak of 3 described in a review article, other 2 outbreaks recorded in origi l article
## 153 Outbreak at a Bermuda Hotel. Fecal contami tion of water by broken and outdated plumbing system
## 154 Although 3 cohorts were studied (i.e. school children, skiers, and local residents) the outbreak was correlated with a common source municipal water supply, and thus was treated as one outbreak.
## 155 CDC reported outbreak in a pool in Vermont, low chlori tion did not i ctivate virus due to maintenence problems with chlori tion
## 156 Outbreak at a restaurant in MI, transmission from sick employees to patrons and other employees
## 157 Outbreak at Elementary school, attack rates differed amon staff and students, all had some squence region b
## 158 Prolonged outbreak at a hotel, staff not included in case count, cases only comprise guests who became sick through April 1st
## 159 Many strains here, three month ourtbreak from raw oysters in British Columbia, could not trace back oysters to a specific harvest site
## 160 Large outbreak from catered event, cases do not include restaruant workers, attack rate and number at risk are median estimates
## 161 Outbreak 1 of 3 in article, oysters from contami te oyster beds from storm sewer overflow
## 162 Outbreak 2 of 3 in article, oysters from contami ted oyster beds from storm sewer overflow
## 163 Outbreak 1 of 3 from this section of article
## 164 Outbreak 2 of 3 from this section of article
## 165 Outbreak 3 of 3 from this section of article
## 166 Second outbreak description in article, untreated water from purification plant responsible
## 167 Outbreak 1 of three from fourth part of article, this outbreak not actually confirmed by RTPCR but epi-evidence would suggest NoV is responsible
## 168 Outbreak 2 of three from fourth part of article, 29 cases from hospital and 6 from nursing home
## 169 outbreak occurred in 3 clusters between Dec 2006 and Feb 2007 w/dept closures after each
## 170 Foodborne outbreak from a point source on an Israeli military base
## 171 Outbreak at a New Zealand Ski Resort, due to sewage flow in to drinking water supply
## 172 Outbreak of NoV and E.Coli at same time, some secondary cases reported
## 173 Outbreak during playgroup at private home, all mothers and two infants sick from infant index case
## 174 17 week outbreak at John's Hopkins Hospital, extensive description of efforts to stop transmission
## 175 Source of outbreak not determined, number of cases most likely much greater, sequencing was pending
## 176 outbreak at Helsinki University Central Hospital that spread throughout wards and had 3 peaks of outbreaks between Dec 2006 and May 2007 that may have been caused by NV spread in community
## 177 Outbreak at a catered event, may be a discrepancy between number ill (93) and number with gastroenteritis (80)
## 178 Outbreak in Swiss hospital, infection control measures were limited because of staff shortage
## 179 cases were mostly freshmen at a university in Cambridge, MA and a sick chef who worked one day after onset of symptoms was suspected as the source of outbreak, mentioned secondary cases but did not give any information
## 180 Secondary cases calculated by subtracting the number of primary cases from number at risk and total cases
## 181 outbreak caused by index case, a child who vomited on the bus ride to a youth hostel in Salzburg for a holiday skiing weekend and immediately on arrival in the lobby; cases were among students and teachers from 4 different schools
## 182 Outbreak at a rehabilitation center, prolonged over three months
## 183 Outbreak 1 of 2, post-operative ward
## 184 Airborne outbreak from aerosolized vomit during a private dinner at a hotel
## 185 Outbreak at a long-term geriatric care facility, several patients died as a result
## 186 Outbreak in an elderly care ward in Ireland
## 187 outbreak A which occurred in 38 separate gatherings of people celebrating New Years on oyster roast boats where implicated oysters were eaten; contami tion suspected as a result of human waste dumped overboard
## 188 outbreak B in 2 communities surrounding Apalachicola Bay among people who ate oysters; described as spreading from children to rest of household in 1-2 days
## 189 outbreak at Christmas party in Italian nursing home most likely caused by thin soup and other foods served, spread through vomiting and immunocompromised residents
## 190 Outbreak in an adged care facility in australia, only 2 cases had coinfection with rotavirus
## 191 Outbreak at three facilities, all linked via sick patient transfers
## 192 Outbreak in a Spanish hospital, most cases were elderly
## 193 1 of 6, limited information
## 194 Waterborne outbreak in a community in Greece
## 195 Outbreak in Ohio due to contami ted sandwiches at a company lunch
## 196 Outbreak among tourists in Andorra, conducted by athorities in the UK
## 197 Outbreak at a recreatio l pool in Vermont
## 198 outbreak occurred in staff workers before patients
## 199 1 of 3, limited information
## 200 2 of 3, large outbreak in a nursing home
## 201 3 of 3, limited information available
## 202 outbreak occurred at telephone company canteen in Austra where a single kitchen worker acted as the continuous source of food contami tion through salad
## 203 11 patients and 2 visitors were affected in outbreak, patients were infected w/same virus subtype, declared 20 total people infected in entirety of 2004
## 204 outbreak occurred in South Wales, Queensland affecting people in different functions where they ate or had contact w/oysters harvested from Terranora Broadwater area at Tweed Heads
## 205 necrotizing enterocolitis (NEC) outbreak in hospital NICU caused by NV affecting newborns
## 206 this is the first known NoV outbreak w/probable transmission of norovirus on an aircraft; vomiting only occurred in the bathroom and it seemed that only ppl who visited the bathroom during the flight were at risk
## 207 outbreak occurred in long-term care facility over several months; NoV was not only confirmed in patients, but also on environmental surfaces
## 208 outbreak in tertiary-care hospital; A case was defined as a patient or HCW who developed acute diarrhea, usea, and vomiting during the outbreak period
## 209 0
## 210 0
## 211 This outbreak was broken up into staff (47/285) and patients (55/413). We add the figures together to get a conglomerate attack rate.
## 212 Outbreak 1 of 4
## 213 Outbreak 2 of 4
## 214 Outbreak 3 of 4
## 215 secondary (late) case number was not explicitly stated but was inferred from table. Coach A of outbreak that occurred in two coaches
## 216 Late case number was inferred from table. Coach B as part of another outbreak in Coach A
## 217 a descriptive study (total) and cohort study was done on a division 1 (5 soldier divisions plus civilians) 27 cases (AR 15.2%). Dose-response curve for meals at salad canteen bar
## 218 Outbreak 16 of 21
## 219 Outbreak 21 of 21
## 220 Covers outbreaks from 2002 to 2007
## 221 Covers 95 norovirus outbreaks
## 222
## 223
## 224
## 225 2 of 6, limited information
## 226 3 of 6, limited information
## 227 4 of 6, limited information
## 228 5 of 6, limited information
## 229 6 of 6, limited information
## 230 mean incubation period obtained for 198 guest cases
## 231 Increased risk factors were having an ill cabinmate and witnessing vomiting during boarding, 40% didn't report to infirmary when ill
## Path1
## 1 No
## 2 No
## 3 Unspecified
## 4 No
## 5 No
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 Unspecified
## 10 No
## 11 No
## 12 Yes
## 13 No
## 14 Yes
## 15 Yes
## 16 No
## 17 Yes
## 18 No
## 19 Unspecified
## 20 Unspecified
## 21 No
## 22 Unspecified
## 23 No
## 24 No
## 25 Unspecified
## 26 Yes
## 27 Unspecified
## 28 Yes
## 29 No
## 30 No
## 31 Yes
## 32 No
## 33 No
## 34 No
## 35 Unspecified
## 36 Unspecified
## 37 Unspecified
## 38 No
## 39 Unspecified
## 40 Unspecified
## 41 Unspecified
## 42 Unspecified
## 43 Unspecified
## 44 Yes
## 45 Yes
## 46 No
## 47 Unspecified
## 48 Unspecified
## 49 Unspecified
## 50 Unspecified
## 51 Unspecified
## 52 Unspecified
## 53 Unspecified
## 54 Unspecified
## 55 Unspecified
## 56 Unspecified
## 57 No
## 58 No
## 59 Yes
## 60 Unspecified
## 61 Unspecified
## 62 Unspecified
## 63 Yes
## 64 Unknown
## 65 No
## 66 No
## 67 Unspecified
## 68 No
## 69 Unspecified
## 70 No
## 71 Yes
## 72 No
## 73 No
## 74 No
## 75 No
## 76 Unspecified
## 77 Yes
## 78 No
## 79 No
## 80 Yes
## 81 No
## 82 Yes
## 83 No
## 84 No
## 85 No
## 86 No
## 87 Unspecified
## 88 No
## 89 Unknown
## 90 Unspecified
## 91 Unspecified
## 92 No
## 93 Yes
## 94 Yes
## 95 No
## 96 Unspecified
## 97 Unspecified
## 98 Unspecified
## 99 Unspecified
## 100 No
## 101 Unspecified
## 102 Unspecified
## 103 Unspecified
## 104 Unspecified
## 105 Unspecified
## 106 Unspecified
## 107 Unspecified
## 108 No
## 109 No
## 110 Yes
## 111 No
## 112 Yes
## 113 Yes
## 114 Unspecified
## 115 Yes
## 116 Unspecified
## 117 Unspecified
## 118 No
## 119 No
## 120 Unspecified
## 121 Yes
## 122 No
## 123 Unspecified
## 124 Unspecified
## 125 Yes
## 126 Unspecified
## 127 Unspecified
## 128 Unspecified
## 129 Yes
## 130 No
## 131 No
## 132 No
## 133 No
## 134 No
## 135 Unspecified
## 136 Yes
## 137 No
## 138 No
## 139 Yes
## 140 Unspecified
## 141 Unspecified
## 142 Unspecified
## 143 Unspecified
## 144 Unspecified
## 145 Unspecified
## 146 No
## 147 Unspecified
## 148 Yes
## 149 Yes
## 150 No
## 151 No
## 152 Unspecified
## 153 No
## 154 No
## 155 Unspecified
## 156 No
## 157 No
## 158 Unspecified
## 159 No
## 160 No
## 161 No
## 162 No
## 163 Unspecified
## 164 Unspecified
## 165 Unspecified
## 166 Unspecified
## 167 Unspecified
## 168 Unspecified
## 169 No
## 170 No
## 171 Yes
## 172 Yes
## 173 Unspecified
## 174 Unspecified
## 175 Yes
## 176 Unspecified
## 177 No
## 178 No
## 179 Yes
## 180 No
## 181 Unspecified
## 182 No
## 183 Yes
## 184 No
## 185 No
## 186 Unspecified
## 187 No
## 188 No
## 189 Yes
## 190 Yes
## 191 No
## 192 No
## 193 No
## 194 No
## 195 No
## 196 Unspecified
## 197 Unspecified
## 198 Unspecified
## 199 Unspecified
## 200 Unspecified
## 201 Unspecified
## 202 No
## 203 Unspecified
## 204 No
## 205 No
## 206 Unspecified
## 207 No
## 208 No
## 209 Yes
## 210 No
## 211 Yes
## 212 Unspecified
## 213 Unspecified
## 214 Unspecified
## 215 No
## 216 No
## 217 Yes
## 218 Unspecified
## 219 Unspecified
## 220 Unspecified
## 221 Unspecified
## 222 Unspecified
## 223 Yes
## 224 Unspecified
## 225 No
## 226 No
## 227 No
## 228 No
## 229 No
## 230 No
## 231 Unspecified
## Path2_1
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 Salmonella groups C and D
## 13 0
## 14 Campylobacter jejuni
## 15 Astrovirus, Adenovirus
## 16 0
## 17 s. aureus, Aeromo s hydrophila
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 Astrovirus
## 27 0
## 28 Astrovirus
## 29 0
## 30 0
## 31 Staphylococcus aureus was isolated from one faecal specimen
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 C. difficile in one person
## 45 positive for Campylobacter and NoV but author didn't think was related to outbreak since all else was same
## 46 0
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58 0
## 59 E. Coli
## 60 0
## 61 0
## 62 0
## 63 C. Jejuni
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 Rotavirus, Sapovirus
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 C. difficile
## 78 0
## 79 0
## 80 Rotavirus G9
## 81 0
## 82 Clostridium perfringens, S. aureus
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 Campylobacter; Salmonella enterica subspecies enterica
## 94 SV G1/2
## 95 0
## 96 0
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110 Astrovirus
## 111 0
## 112 C. Perfringens
## 113 Escherichia coli, faecal streptococci, Salmonella mbandaka, Campylobacter, Staphylococcus aureus,
## 114 0
## 115 Campylobacter jejuni
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Giardia lamblia
## 122 0
## 123 0
## 124 0
## 125 Campylobacter, Rotavirus
## 126 0
## 127 0
## 128 0
## 129 Campylobacter
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 adenovirus, rotavirus
## 137 0
## 138 0
## 139 rotavirus, enterovirus, astrovirus, Salmonella sp., Clostridium perfringens, Campylobacter sp.
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148 rotavirus A, astrovirus, adenovirus, sapovirus
## 149 Campylobacter, rotavirus, adenovirus
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 rotavirus, cryptosporidium, campylobacter
## 172 E. Coli 026:H11 (VT1+)
## 173 0
## 174 0
## 175 Rotavirus
## 176 0
## 177 0
## 178 0
## 179 Yersinia fredricksinii (commensual floar of humans)
## 180 0
## 181 0
## 182 0
## 183 Clostridium difficile
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 Blastocystis hominis in one stool sample
## 190 Rotavirus
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 sapovirus; aichi virus
## 210 0
## 211 non-toxigenic S. aureus
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 rotavirus, Campylobacter, EHEC
## 218
## 219
## 220
## 221
## 222
## 223 Campylobacter
## 224
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## Country Category
## 1 Japan Daycare
## 2 USA Foodservice
## 3 USA Other
## 4 USA Foodservice
## 5 USA School
## 6 USA Leisure
## 7 Multiple Leisure
## 8 Multiple Leisure
## 9 Multiple Leisure
## 10 USA Other
## 11 USA Leisure
## 12 Japan Military
## 13 USA Foodservice
## 14 Other Foodservice
## 15 Other Daycare
## 16 Other Nursing Home
## 17 Japan Foodservice
## 18 Other Foodservice
## 19 Other School
## 20 Multiple Leisure
## 21 USA Other
## 22 Other Hospital
## 23 USA Leisure
## 24 Other Hospital
## 25 Japan School
## 26 Other Other Medical Setting
## 27 USA Foodservice
## 28 Japan Other
## 29 Other Nursing Home
## 30 Other Hospital
## 31 Other Nursing Home
## 32 Other Nursing Home
## 33 USA Other
## 34 Other Foodservice
## 35 USA School
## 36 USA School
## 37 USA School
## 38 Other Leisure
## 39 USA Leisure
## 40 Other Foodservice
## 41 Other Daycare
## 42 Other Foodservice
## 43 Other Foodservice
## 44 Multiple Other
## 45 Multiple Leisure
## 46 Other Nursing Home
## 47 Australia Daycare
## 48 Australia Nursing Home
## 49 Australia Nursing Home
## 50 Australia Leisure
## 51 Australia Nursing Home
## 52 Australia Foodservice
## 53 Australia Nursing Home
## 54 Australia Foodservice
## 55 Australia Nursing Home
## 56 Australia Daycare
## 57 USA Nursing Home
## 58 Other Military
## 59 Other Nursing Home
## 60 USA Foodservice
## 61 USA Foodservice
## 62 USA Foodservice
## 63 USA Foodservice
## 64 Multiple Leisure
## 65 Other Nursing Home
## 66 USA Foodservice
## 67 USA Foodservice
## 68 Multiple Nursing Home
## 69 Other Nursing Home
## 70 USA Leisure
## 71 Other Military
## 72 Other Foodservice
## 73 Other Hospital
## 74 USA Leisure
## 75 Other Leisure
## 76 USA Leisure
## 77 USA Hospital
## 78 Other Other
## 79 Other Nursing Home
## 80 Other Other
## 81 Other Leisure
## 82 Other Foodservice
## 83 Other Other
## 84 USA Nursing Home
## 85 Other Hospital
## 86 Other Hospital
## 87 Other Foodservice
## 88 Other Foodservice
## 89 Japan Daycare
## 90 Other Foodservice
## 91 Other Leisure
## 92 USA School
## 93 USA Foodservice
## 94 Japan School
## 95 Other Other Medical Setting
## 96 Other Hospital
## 97 Australia Leisure
## 98 Australia Leisure
## 99 Australia Leisure
## 100 USA Nursing Home
## 101 UK Hospital
## 102 Israel Nursing Home
## 103 Israel Nursing Home
## 104 Israel Nursing Home
## 105 Israel Nursing Home
## 106 Israel Nursing Home
## 107 Israel Nursing Home
## 108 France Other
## 109 France Other
## 110 Japan Daycare
## 111 USA Foodservice
## 112 Other Leisure
## 113 Other Foodservice
## 114 Multiple Leisure
## 115 USA Leisure
## 116 Other Hospital
## 117 Other Foodservice
## 118 Other Hospital
## 119 Other Nursing Home
## 120 Other Leisure
## 121 Other Leisure
## 122 Other Foodservice
## 123 USA Leisure
## 124 Other School
## 125 Other Leisure
## 126 Japan Nursing Home
## 127 Japan School
## 128 Other Foodservice
## 129 Other Leisure
## 130 Multiple Military
## 131 Multiple Military
## 132 Other Foodservice
## 133 Other Foodservice
## 134 Other Nursing Home
## 135 Other Foodservice
## 136 Other Other
## 137 Other Leisure
## 138 Multiple Leisure
## 139 Italy Leisure
## 140 Australia Nursing Home
## 141 Australia Hospital
## 142 Australia Leisure
## 143 Australia Hospital
## 144 Australia Daycare
## 145 Australia Daycare
## 146 USA Nursing Home
## 147 USA Leisure
## 148 Japan Hospital
## 149 Norway Leisure
## 150 USA Foodservice
## 151 USA Leisure
## 152 USA Unknown
## 153 Other Leisure
## 154 Other Leisure
## 155 USA Leisure
## 156 USA Foodservice
## 157 USA School
## 158 Other Leisure
## 159 Other Unknown
## 160 Other Foodservice
## 161 Other Unknown
## 162 Other Foodservice
## 163 Other Leisure
## 164 Other Leisure
## 165 Other Leisure
## 166 Other Other
## 167 Other Hospital
## 168 Other Hospital
## 169 Other Hospital
## 170 Other Military
## 171 Other Leisure
## 172 Japan School
## 173 USA Other
## 174 USA Hospital
## 175 Other Other
## 176 Other Hospital
## 177 USA Foodservice
## 178 Other Hospital
## 179 USA School
## 180 Other Other
## 181 Other Leisure
## 182 Other Other Medical Setting
## 183 Other Hospital
## 184 Other Foodservice
## 185 USA Nursing Home
## 186 Other Hospital
## 187 USA Leisure
## 188 USA Other
## 189 Other Nursing Home
## 190 Other Nursing Home
## 191 Other Nursing Home
## 192 Other Hospital
## 193 Other Foodservice
## 194 Other Other
## 195 USA Foodservice
## 196 Other Leisure
## 197 USA Leisure
## 198 USA Hospital
## 199 Japan Nursing Home
## 200 Japan Nursing Home
## 201 Japan Nursing Home
## 202 Other Foodservice
## 203 Other Hospital
## 204 Other Other
## 205 USA Hospital
## 206 Multiple Leisure
## 207 USA Nursing Home
## 208 Other Hospital
## 209 Other Foodservice
## 210 Other Foodservice
## 211 Japan Hospital
## 212 Other Hospital
## 213 Other Hospital
## 214 Other Hospital
## 215 Multiple Leisure
## 216 Multiple Leisure
## 217 Other Military
## 218 Australia Nursing Home
## 219 Australia Other
## 220 Netherlands Hospital
## 221 Japan Other
## 222 Spain Other Medical Setting
## 223 Scotland Leisure
## 224 New Zealand Other
## 225 Other Foodservice
## 226 Other Foodservice
## 227 Other Foodservice
## 228 Other Foodservice
## 229 Other Foodservice
## 230 Unspecified Leisure
## 231 Unspecified Leisure
## State
## 1 0
## 2 NC, FL
## 3 LA, MD, MS, NC
## 4 AK
## 5 WI
## 6 WA, FL
## 7 FL
## 8 FL
## 9 FL
## 10 TX
## 11 WV, MD, FL, NY, PA, VA
## 12 0
## 13 MD, TX, NC, PA, MS
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 FL
## 21 LA, MS, MD, NC
## 22 0
## 23 VA
## 24 0
## 25 0
## 26 0
## 27 WY
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 TX
## 34 0
## 35 CA
## 36 MI
## 37 WI
## 38 0
## 39 1
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 OR
## 58 0
## 59 0
## 60 MI
## 61 MI
## 62 MI
## 63 MI
## 64 AK
## 65 0
## 66 TX
## 67 CO
## 68 0
## 69 0
## 70 MA
## 71 0
## 72 0
## 73 0
## 74 HI
## 75 0
## 76 AZ
## 77 TX
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 MD
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 MA
## 93 WI
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 OR
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 AK
## 112 0
## 113 0
## 114 AK
## 115 WY
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 AZ
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 OR
## 147 OH
## 148 0
## 149 0
## 150 14 states: CA, UT, KS, WI, IL, IN, OH, GA, FL, NC, VA, WV, NY, PA,
## 151 WY
## 152 LA
## 153 0
## 154 0
## 155 VT
## 156 MI
## 157 DC
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 MD
## 175 0
## 176 0
## 177 OH
## 178 0
## 179 MA
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 WA
## 186 0
## 187 FL
## 188 FL
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 OH
## 196 0
## 197 VT
## 198 NC
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 PA
## 207 PA
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## Setting_1
## 1 Daycare Center
## 2 Boxed lunch, football game
## 3 Many, family dinner to large festival
## 4 Luncheon and Restaruant
## 5 College Dorm
## 6 Cruise Ship
## 7 Cruise Ship
## 8 Cruise Ship
## 9 Cruise Ship
## 10 Refugee camp
## 11 Family Reunion
## 12 Aircraft Carier
## 13 annual festival, oyster roast, banquet, restaurant, church supper
## 14 Catered Meal
## 15 Daycare
## 16 3 wings that connect through central foyer
## 17 Restaurant
## 18 restaurant
## 19 University
## 20 Cruise Ship
## 21 0
## 22 Hospital
## 23 Hotel
## 24 Hospital
## 25 Primary School
## 26 Mother Child Clinic
## 27 Saloon
## 28 Research Ship
## 29 Nursing Home and Hospital
## 30 care unit of inter l medicine (pneumology-oncology)
## 31 Brisbane
## 32 West Moreton
## 33 Reliant Park Complex megashelter
## 34 canteen at manufacturing company
## 35 university campus
## 36 university campus
## 37 university housing
## 38 wedding reception
## 39 tour bus/airplane
## 40 Catering service in Restaurant
## 41 0
## 42 Cafeteria (catering service)
## 43 Conference at hotel (catered)
## 44 Psychiatric Institution, pilgrimage to Lourdes
## 45 Cruise ship
## 46 300-bed nursing home
## 47 Children's activity center
## 48 Aged care center
## 49 Aged care center
## 50 Social gathering
## 51 Aged care center
## 52 Suspect food
## 53 Aged care center
## 54 Suspect food
## 55 Aged care center
## 56 Child care
## 57 long-term care facility
## 58 British Military Base in Iraq
## 59 6 nursing homes in Tel Aviv
## 60 Catered Lunch
## 61 Catered Lunch
## 62 Catered Lunch
## 63 Sub Restaruant
## 64 cruise ship going from Vancouver to Alaska
## 65 Long-Term care facility
## 66 College Deli Bar
## 67 Hotel Buffet
## 68 Nursing Home, Hospital
## 69 Nursing Home and Hospital
## 70 Weddings
## 71 British vy Ship
## 72 Catered lunch served to daycare centers
## 73 Mental Hospital
## 74 Cruise Ship
## 75 Hotel
## 76 educatio l boating trip
## 77 Michael E. DeBakey Veterans Affairs Medical Center
## 78 Community
## 79 Aged Care Hostel
## 80 Community
## 81 Cruise
## 82 Company Canteens
## 83 Community
## 84 Nursing Home
## 85 within 3 wards w/an interconnecting corridor of Alfred Hospital
## 86 3 wards of Alfred Hospital
## 87 Cafeteria at a Hospital
## 88 catering at several events within a rural city
## 89 private nursery in Sakai City
## 90 restaurant in Northern Territory
## 91 function w/oyster cocktails in Western Australia
## 92 Worcester Polytechnic Institute
## 93 restaurant
## 94 Elementary School
## 95 healthcare facility consisting of hopsital, rehab center and convalescent home
## 96 Psychiatric Care Center attached
## 97 Social gathering
## 98 Social gathering
## 99 Social gathering
## 100 long-term care facility
## 101 600-bed tertiary care university teaching hospital
## 102 Nursing home
## 103 Nursing home
## 104 Nursing home
## 105 Nursing home
## 106 Nursing home
## 107 Nursing home
## 108 Pilgrimage to Lourdes
## 109 Pilgrimage to Lourdes
## 110 Daycare Center
## 111 Restaurant
## 112 Resort
## 113 Employees at Bakery, Customers around England
## 114 Cruise Ship
## 115 Summer Camp
## 116 Pediatric Inpatient Unit
## 117 Family Meal
## 118 University of Alberta in Edmonton
## 119 Aged Care Facility
## 120 camp jamboree
## 121 School groups at recreatio l fountain
## 122 Canteens
## 123 rafting on Colorado River
## 124 Primary school and nursery
## 125 Resort Camp
## 126 Nursing home for the elderly
## 127 Nursery School
## 128 Catered Wedding Reception
## 129 Recreatio l Lake
## 130 USS Constellation aircraft carrier
## 131 USS Peleliu assault ship
## 132 barbeque
## 133 barbeque
## 134 hostel section where the more ambulant residents lived and a nursing home section for those requiring more care
## 135 2 hotels in Queensland
## 136 city of Podgorica, capital of Montenegro
## 137 residential summer camp
## 138 Scouting camp in Belgium; secondary cases in Dutch households
## 139 hotel
## 140 Aged care center
## 141 Geriatric hospital
## 142 Social gathering
## 143 Pediatric hospital
## 144 Children's activity center
## 145 Child care
## 146 long-term care facility
## 147 Resort island
## 148 Pediatric hospital
## 149 Recreation and conference center
## 150 Car Dealership Banquet
## 151 Snowmobile Lodge
## 152 0
## 153 Hotel
## 154 Ski resort
## 155 Swimming Pool
## 156 Restaurant
## 157 Elementary School
## 158 Hotel
## 159 0
## 160 Catered Event
## 161 0
## 162 0
## 163 Ski Camp
## 164 Ski Camp
## 165 Ski Camp
## 166 Two Communities
## 167 Hospital
## 168 Hospital and nursing home
## 169 secondary-level hospital
## 170 Israeli Defence Force training center
## 171 Ski Resort
## 172 Kindergarten
## 173 Home
## 174 Hospital
## 175 Community
## 176 Helsinki University Central Hospital
## 177 Catered Party
## 178 Hospital
## 179 university located in Cambridge, MA
## 180 Community
## 181 hostel in Salzburg for holiday skiing
## 182 Rehabilitation Center
## 183 Hospital
## 184 Hotel Private Dinner
## 185 Geriatric long-term care facility
## 186 Elderly Care Ward
## 187 oyster roasts on boats on New Year's
## 188 2 communities near Apalachicola Bay
## 189 Christmas party
## 190 Adged Care Facility
## 191 Nursing Home, Adged Care Home, Hospital
## 192 Hospital
## 193 Food Establishment
## 194 Community
## 195 Company Lunch
## 196 Vacation
## 197 Recreatio l Pool
## 198 Veterans Affairs medical center in Durham
## 199 Nursing Home
## 200 Nursing Home
## 201 Nursing Home
## 202 telephone company canteen
## 203 The Pediatric Hematology and Oncology Unit at the Children's Hospital
## 204 restaurants, sports and community clubs, and a private function
## 205 NICU at large urban teaching hospital
## 206 airplane
## 207 long-term care facility
## 208 tertiary-care hospital
## 209 banquet
## 210 Christmas Dinner Party
## 211 and attached LTCF
## 212 \tPsychiatric Care Center adjoined
## 213 \tPsychiatric Care Center attached
## 214 Psychiatric Care Center Attached
## 215 coach passengers A on 2-day ride from Netherlands to Germany
## 216 Coach passengers B in pilgrimage from Germany to Netherlands
## 217 Military Base Canteen on Base
## 218 Aged care center
## 219 Adult camp
## 220 tertiary-care hospital
## 221 Nursing home, daycare, hospitals, elementary school
## 222 Treatment center for Nordic patients with psoriasis
## 223 Country hotel
## 224 Corporate event held at a park
## 225 Food Establishment
## 226 Food Establishment
## 227 Food Establishment
## 228 Food Establishment
## 229 Food Establishment
## 230 hotel
## 231 Cruise Ship
## StartMonth EndMonth GGA CA
## 1 11 12 2 4
## 2 9 9 1 0
## 3 11 11 0 0
## 4 11 11 0 0
## 5 11 12 0 0
## 6 10 0 0 0
## 7 9 10 0 0
## 8 10 11 0 0
## 9 11 11 0 0
## 10 9 9 0 0
## 11 10 10 2 4
## 12 9 9 0 0
## 13 11 11 1 0
## 14 4 4 0 0
## 15 3 6 2 4
## 16 11 12 0 0
## 17 11 11 2 3
## 18 11 11 1 0
## 19 9 10 0 0
## 20 11 1 2 4
## 21 11 1 1 0
## 22 11 12 2 4
## 23 11 11 2 0
## 24 3 3 0 0
## 25 11 11 2 0
## 26 10 11 0 0
## 27 9 10 1 3
## 28 10 10 2 5
## 29 11 11 2 4
## 30 11 11 2 0
## 31 4 4 2 0
## 32 5 5 2 0
## 33 9 9 2 17
## 34 11 11 1 3
## 35 9 10 2 6
## 36 11 11 1 4
## 37 11 0 2 0
## 38 9 0 1 0
## 39 10 10 2 4
## 40 9 10 1 4
## 41 10 10 1 4
## 42 10 10 1 0
## 43 10 0 1 3
## 44 9 11 2 4
## 45 10 10 2 4
## 46 11 11 2 0
## 47 3 0 2 3
## 48 4 0 2 3
## 49 3 0 2 1
## 50 3 0 2 1
## 51 3 0 2 1
## 52 4 0 2 1
## 53 4 0 2 1
## 54 4 0 2 1
## 55 4 0 2 1
## 56 5 0 2 3
## 57 10 12 2 4
## 58 3 4 2 0
## 59 4 5 2 0
## 60 5 5 0 0
## 61 5 5 0 0
## 62 5 5 0 0
## 63 5 5 0 0
## 64 5 6 2 0
## 65 10 11 2 0
## 66 3 3 2 4
## 67 5 5 1 0
## 68 4 5 2 0
## 69 3 4 0 0
## 70 4 5 0 0
## 71 4 4 2 6
## 72 3 3 2 0
## 73 5 6 2 4
## 74 3 3 0 0
## 75 5 5 1 0
## 76 5 5 0 0
## 77 3 3 2 4
## 78 3 3 0 0
## 79 9 0 0 0
## 80 5 9 2 4
## 81 5 6 0 0
## 82 4 4 2 0
## 83 3 4 2 0
## 84 5 6 0 0
## 85 10 10 0 0
## 86 10 10 0 0
## 87 5 5 1 0
## 88 10 10 0 0
## 89 5 5 1 4
## 90 11 11 0 0
## 91 11 11 0 0
## 92 4 5 2 0
## 93 5 6 1 2
## 94 3 3 1 4
## 95 3 3 2 4
## 96 4 4 2 4
## 97 9 0 2 1
## 98 10 0 2 13
## 99 11 0 2 3
## 100 3 4 2 6
## 101 4 4 0 0
## 102 4 4 0 0
## 103 4 4 2 0
## 104 4 5 2 0
## 105 4 4 2 0
## 106 0 0 2 0
## 107 5 5 2 0
## 108 4 0 2 0
## 109 4 0 2 0
## 110 6 6 2 3
## 111 6 7 2 0
## 112 7 7 2 4
## 113 8 8 1 0
## 114 7 7 0 0
## 115 6 7 2 0
## 116 8 8 0 0
## 117 6 6 0 0
## 118 8 8 2 0
## 119 2 3 2 0
## 120 7 8 1 4
## 121 6 7 1 0
## 122 7 7 2 1
## 123 8 9 2 14
## 124 6 7 0 0
## 125 7 9 0 0
## 126 7 7 2 1
## 127 8 8 2 6
## 128 8 8 2 0
## 129 8 8 1 0
## 130 8 8 1 0
## 131 8 9 1 0
## 132 8 8 2 6
## 133 8 8 2 6
## 134 2 3 2 0
## 135 1 1 0 0
## 136 8 9 2 2
## 137 7 7 2 2
## 138 7 7 1 2
## 139 6 7 0 0
## 140 2 0 2 3
## 141 12 0 2 1
## 142 12 0 2 1
## 143 12 0 2 3
## 144 2 0 2 3
## 145 12 0 2 3
## 146 7 8 2 4
## 147 5 9 0 0
## 148 7 6 0 0
## 149 7 0 0 0
## 150 2 2 2 0
## 151 1 3 2 0
## 152 2 0 0 0
## 153 2 2 2 0
## 154 2 3 0 0
## 155 1 2 0 0
## 156 1 2 1 4
## 157 2 2 2 0
## 158 1 5 0 0
## 159 1 3 1 2
## 160 1 1 2 0
## 161 12 12 2 4
## 162 12 12 2 4
## 163 1 1 2 0
## 164 1 1 2 0
## 165 1 1 2 0
## 166 1 1 0 0
## 167 1 2 0 0
## 168 2 3 0 0
## 169 12 2 2 4
## 170 12 12 2 0
## 171 7 7 1 5
## 172 1 1 2 4
## 173 2 2 2 4
## 174 1 5 2 4
## 175 2 2 0 0
## 176 12 5 2 4
## 177 12 12 2 0
## 178 2 3 2 0
## 179 12 12 2 0
## 180 2 4 2 4
## 181 12 12 0 0
## 182 12 2 2 0
## 183 7 8 0 0
## 184 12 12 2 0
## 185 2 3 2 0
## 186 1 2 0 0
## 187 12 1 0 0
## 188 12 1 0 0
## 189 12 12 2 4
## 190 8 9 2 0
## 191 6 7 2 0
## 192 12 12 2 0
## 193 12 0 0 0
## 194 1 2 0 0
## 195 2 3 2 0
## 196 1 1 0 0
## 197 1 2 2 0
## 198 2 3 0 0
## 199 12 12 2 4
## 200 12 12 2 4
## 201 12 1 2 4
## 202 1 1 2 7
## 203 1 2 0 0
## 204 8 9 2 0
## 205 1 1 0 0
## 206 12 12 0 0
## 207 1 2 2 4
## 208 1 1 0 0
## 209 2 2 2 4
## 210 12 1 2 4
## 211 2 3 2 4
## 212 1 1 2 4
## 213 1 2 1 14
## 214 12 1 2 4
## 215 2 2 2 4
## 216 2 2 2 4
## 217 12 2 2 4
## 218 8 0 2 3
## 219 8 0 2 3
## 220 7 6 2 4
## 221 11 12 2 4
## 222 11 11 0 0
## 223 12 0 0 0
## 224 6 0 1 1
## 225 0 0 0 0
## 226 0 0 0 0
## 227 0 0 0 0
## 228 0 0 0 0
## 229 0 0 0 0
## 230 12 12 2 4
## 231 1 1 2 4
## SA
## 1 Lordsdale
## 2 Thistle Hall 1/91
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 Hu/GII-4/Chester/2006/UK
## 12 Norwalk
## 13 same sequence found in concurrent Grand Pass oyster-related outbreaks in LA
## 14 Camberwell
## 15 0
## 16 0
## 17 Oberhausen455/01/DE
## 18 meanwood/91/UK
## 19 0
## 20 Farmington Hills 2002
## 21 Norwalk
## 22 Bristol
## 23 100% identity w/AB05308, 96% identity w/MOH
## 24 0
## 25 0
## 26 0
## 27 0
## 28 Yuri52
## 29 Jamboree-like
## 30 Camberwell virus (92% nucleotide identity)
## 31 0
## 32 0
## 33 0
## 34 Desert Shield
## 35 Seacroft
## 36 0
## 37 0
## 38 0
## 39 Minerva
## 40 0
## 41 0
## 42 0
## 43 PD196-DEU
## 44 GII.4 2006b
## 45 v6
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 Uncharacterized
## 58 NV/Shaibah/2003/IQ
## 59 Hu/NLV/ukB7s2
## 60 0
## 61 0
## 62 0
## 63 0
## 64 6 Seacroft sequovar
## 65 0
## 66 Lordsdale
## 67 0
## 68 NLV/Miami Beach/326/1995/US
## 69 Miami Beach
## 70 0
## 71 Seacroft/1990/UK
## 72 Hiroshima
## 73 Bristol virus
## 74 UK2
## 75 Desert Shield
## 76 0
## 77 NoV Hu/GII-4/C5_159/South Korea
## 78 0
## 79 0
## 80 GII.4 2006a
## 81 0
## 82 0
## 83 NLV/Tarrag/238/2001/Sp
## 84 Snow Mountain Virus
## 85 Camberwell
## 86 Camberwell
## 87 Desert Shield
## 88 0
## 89 95.9% homology w/Chiba
## 90 0
## 91 0
## 92 0
## 93 Southampton
## 94 0
## 95 GII.4 2006b
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 Toronto
## 111 P2B
## 112 Lordsdale
## 113 0
## 114 0
## 115 0
## 116 0
## 117 Chiba
## 118 0
## 119 0
## 120 0
## 121 Mikkeli
## 122 Japanese Gifu/96
## 123 0
## 124 Melksham
## 125 Lordsdale
## 126 0
## 127 0
## 128 0
## 129 0
## 130 Desert Shield
## 131 Southampton
## 132 Seacroft/1990/UK
## 133 Seacroft/1990/UK
## 134 0
## 135 0
## 136 0
## 137 Melksham-like
## 138 Southampton
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 Minerva
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 12C/92/UNK
## 154 0
## 155 0
## 156 Chiba
## 157 0
## 158 Grimsby
## 159 BCCDC03-028 (Southampton)
## 160 HU/NLV/DenHaag008/01/NL
## 161 Lordsdale
## 162 Lordsdale
## 163 OS120458/01
## 164 OS120458/01
## 165 OS120458/01
## 166 Norwalk
## 167 0
## 168 Miami Beach
## 169 GII.4 2006b
## 170 0
## 171 Apalachicola Bay
## 172 0
## 173 0
## 174 Farmington Hills
## 175 0
## 176 GII.4 2006b
## 177 0
## 178 Basel
## 179 P2-B phylogenic group
## 180 Lordsdale
## 181 0
## 182 Hawaii
## 183 0
## 184 Japanese Hokkaido strain
## 185 Toronto
## 186 0
## 187 0
## 188 0
## 189 GII.4/Terneuzen 70/2006/NL
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 Snow Mountain
## 196 0
## 197 0
## 198 0
## 199 0
## 200 Bristol
## 201 0
## 202 Leeds-like
## 203 0
## 204 0
## 205 0
## 206 0
## 207 Hu/NoV/Farmington Hills/2002/USA
## 208 0
## 209 0
## 210 GII.4 2006b
## 211 0
## 212 0
## 213 0
## 214 0
## 215 GII.4 2006b
## 216 GII.4 2006b
## 217 GII.4 2006b
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 EUb DenHaag/06/NL
## 231 Minerva
## new_GGA new_CA new_SA
## 1 0 0 0
## 2 0 0 0
## 3 0 0 0
## 4 0 0 0
## 5 0 0 0
## 6 0 0 0
## 7 0 0 0
## 8 0 0 0
## 9 0 0 0
## 10 0 0 0
## 11 0 0 0
## 12 1 1 NV-USA93
## 13 0 0 0
## 14 2 4 CBW94-AUS
## 15 0 0 0
## 16 0 0 0
## 17 0 0 0
## 18 0 0 0
## 19 0 0 0
## 20 0 0 0
## 21 1 1 NV-USA93
## 22 0 0 0
## 23 0 0 0
## 24 0 0 0
## 25 0 0 0
## 26 0 0 0
## 27 0 0 0
## 28 0 0 0
## 29 0 0 0
## 30 2 4 CBW94-AUS
## 31 0 0 0
## 32 0 0 0
## 33 0 0 0
## 34 0 0 0
## 35 0 0 0
## 36 0 0 0
## 37 0 0 0
## 38 0 0 0
## 39 0 0 0
## 40 0 0 0
## 41 0 0 0
## 42 0 0 0
## 43 0 0 0
## 44 0 0 0
## 45 0 0 0
## 46 0 0 0
## 47 0 0 0
## 48 0 0 0
## 49 0 0 0
## 50 0 0 0
## 51 0 0 0
## 52 0 0 0
## 53 0 0 0
## 54 0 0 0
## 55 0 0 0
## 56 0 0 0
## 57 0 0 0
## 58 2 9 Idafall-USA
## 59 2 4 Hu/NLV/ukB7s2
## 60 0 0 0
## 61 0 0 0
## 62 0 0 0
## 63 0 0 0
## 64 2 6 Seacrof-GBR00
## 65 0 0 0
## 66 0 0 0
## 67 0 0 0
## 68 2 4 MB326-USA
## 69 2 4 MB326-USA
## 70 0 0 0
## 71 0 0 0
## 72 0 0 0
## 73 0 0 0
## 74 0 0 0
## 75 1 3 DSV-USA93
## 76 0 0 0
## 77 0 0 0
## 78 0 0 0
## 79 0 0 0
## 80 0 0 0
## 81 0 0 0
## 82 0 0 0
## 83 0 0 0
## 84 2 2 SMV1-USA
## 85 2 4 CBW94-AUS
## 86 2 4 CBW94-AUS
## 87 1 3 DSV-USA93
## 88 0 0 0
## 89 0 0 0
## 90 0 0 0
## 91 0 0 0
## 92 0 0 0
## 93 0 0 0
## 94 0 0 0
## 95 0 0 0
## 96 0 0 0
## 97 0 0 0
## 98 0 0 0
## 99 0 0 0
## 100 0 0 0
## 101 0 0 0
## 102 0 0 0
## 103 0 0 0
## 104 0 0 0
## 105 0 0 0
## 106 0 0 0
## 107 0 0 0
## 108 0 0 0
## 109 0 0 0
## 110 0 0 0
## 111 0 0 0
## 112 0 0 0
## 113 0 0 0
## 114 0 0 0
## 115 0 0 0
## 116 0 0 0
## 117 1 4 Chiba-JPN00
## 118 0 0 0
## 119 0 0 0
## 120 0 0 0
## 121 1 6 Mikkeli
## 122 0 0 0
## 123 0 0 0
## 124 2 2 Msham-GBR95
## 125 2 4 Lsdale-GBR
## 126 0 0 0
## 127 0 0 0
## 128 0 0 0
## 129 0 0 0
## 130 1 3 DSV-USA93
## 131 1 2 Southampton
## 132 0 0 0
## 133 0 0 0
## 134 0 0 0
## 135 0 0 0
## 136 0 0 0
## 137 0 0 0
## 138 0 0 0
## 139 0 0 0
## 140 0 0 0
## 141 0 0 0
## 142 0 0 0
## 143 0 0 0
## 144 0 0 0
## 145 0 0 0
## 146 0 0 0
## 147 0 0 0
## 148 0 0 0
## 149 0 0 0
## 150 0 0 0
## 151 0 0 0
## 152 0 0 0
## 153 0 0 0
## 154 0 0 0
## 155 0 0 0
## 156 0 0 0
## 157 0 0 0
## 158 2 4 Grimsby
## 159 0 0 0
## 160 2 1 HU/NLV/DenHaag008/01/NL
## 161 0 0 0
## 162 0 0 0
## 163 2 2 OS120458/01
## 164 2 2 OS120458/01
## 165 2 2 OS120458/01
## 166 1 1 NV-USA93
## 167 0 0 0
## 168 2 4 MB326-USA
## 169 0 0 0
## 170 0 0 0
## 171 0 0 0
## 172 0 0 0
## 173 0 0 0
## 174 0 0 0
## 175 0 0 0
## 176 0 0 0
## 177 0 0 0
## 178 2 4 Lsdale-GBR
## 179 0 0 0
## 180 0 0 0
## 181 0 0 0
## 182 2 1 Hawaii-USA94
## 183 0 0 0
## 184 0 0 0
## 185 2 3 Toronto-CAN93
## 186 0 0 0
## 187 0 0 0
## 188 0 0 0
## 189 0 0 0
## 190 0 0 0
## 191 0 0 0
## 192 0 0 0
## 193 0 0 0
## 194 0 0 0
## 195 2 2 SMV1-USA
## 196 0 0 0
## 197 0 0 0
## 198 0 0 0
## 199 0 0 0
## 200 0 0 0
## 201 0 0 0
## 202 0 0 0
## 203 0 0 0
## 204 0 0 0
## 205 0 0 0
## 206 0 0 0
## 207 0 0 0
## 208 0 0 0
## 209 0 0 0
## 210 0 0 0
## 211 0 0 0
## 212 0 0 0
## 213 0 0 0
## 214 0 0 0
## 215 0 0 0
## 216 0 0 0
## 217 0 0 0
## 218 0 0 0
## 219 0 0 0
## 220 0 0 0
## 221 0 0 0
## 222 0 0 0
## 223 0 0 0
## 224 0 0 0
## 225 0 0 0
## 226 0 0 0
## 227 0 0 0
## 228 0 0 0
## 229 0 0 0
## 230 0 0 0
## 231 0 0 0
## SA_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12 Zheng
## 13
## 14 Zheng
## 15
## 16
## 17
## 18
## 19
## 20
## 21 Zheng
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30 Zheng
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58 origi l article
## 59 http://www.springerimages.com/Images/Biomedicine/1-10.1007_s10096-005-0002-1-0
## 60
## 61
## 62
## 63
## 64 Zheng
## 65
## 66
## 67
## 68 Zheng
## 69 Zheng
## 70
## 71
## 72
## 73
## 74
## 75 Zheng
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84 Zheng
## 85 Zheng
## 86 Zheng
## 87 Zheng
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117 Zheng
## 118
## 119
## 120
## 121 abstraction
## 122
## 123
## 124 Zheng
## 125 Zheng
## 126
## 127
## 128
## 129
## 130 Zheng
## 131 abstraction
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158 abstraction
## 159
## 160 Diagnosis of Norovirus outbreaks by commercial ELISA or RT-PCR, de Bruin et al.
## 161
## 162
## 163 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 164 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 165 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 166 Zheng
## 167
## 168 Zheng
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178 origi l article
## 179
## 180
## 181
## 182 Zheng
## 183
## 184
## 185 Zheng
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195 Zheng
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## GGB CB SB new_GGB new_CB
## 1 0 0 0 0 0
## 2 0 0 0 0 0
## 3 0 0 0 0 0
## 4 0 0 0 0 0
## 5 0 0 0 0 0
## 6 0 0 0 0 0
## 7 0 0 0 0 0
## 8 0 0 0 0 0
## 9 0 0 0 0 0
## 10 0 0 0 0 0
## 11 2 0 Hu/NLV/Oxford/B6S6/2003/UK 2 4
## 12 0 0 0 0 0
## 13 0 0 0 0 0
## 14 0 0 0 0 0
## 15 0 0 0 0 0
## 16 0 0 0 0 0
## 17 0 0 0 0 0
## 18 0 0 0 0 0
## 19 0 0 0 0 0
## 20 2 3 0 0 0
## 21 2 0 Snow Mountain 2 2
## 22 2 4 new strain 0 0
## 23 0 0 0 0 0
## 24 0 0 0 0 0
## 25 0 0 0 0 0
## 26 0 0 0 0 0
## 27 2 6 0 0 0
## 28 2 1 Neustrelitz 0 0
## 29 0 0 0 0 0
## 30 0 0 0 0 0
## 31 0 0 0 0 0
## 32 0 0 0 0 0
## 33 2 2 0 0 0
## 34 0 0 0 0 0
## 35 0 0 0 0 0
## 36 0 0 0 0 0
## 37 0 0 0 0 0
## 38 0 0 0 0 0
## 39 0 0 0 0 0
## 40 0 0 0 0 0
## 41 0 0 0 0 0
## 42 0 0 0 0 0
## 43 1 3 Kashiwa645 0 0
## 44 0 0 0 0 0
## 45 0 0 0 0 0
## 46 0 0 0 0 0
## 47 0 0 0 0 0
## 48 0 0 0 0 0
## 49 0 0 0 0 0
## 50 0 0 0 0 0
## 51 0 0 0 0 0
## 52 0 0 0 0 0
## 53 0 0 0 0 0
## 54 0 0 0 0 0
## 55 0 0 0 0 0
## 56 0 0 0 0 0
## 57 0 0 0 0 0
## 58 0 0 0 0 0
## 59 0 0 0 0 0
## 60 0 0 0 0 0
## 61 0 0 0 0 0
## 62 0 0 0 0 0
## 63 0 0 0 0 0
## 64 2 0 closest to group 6, 7, 9 0 0
## 65 0 0 0 0 0
## 66 0 0 0 0 0
## 67 0 0 0 0 0
## 68 0 0 0 0 0
## 69 0 0 0 0 0
## 70 0 0 0 0 0
## 71 1 6 Sindlesham/1995/UK 0 0
## 72 0 0 0 0 0
## 73 0 0 0 0 0
## 74 0 0 0 0 0
## 75 0 0 0 0 0
## 76 0 0 0 0 0
## 77 0 0 0 0 0
## 78 0 0 0 0 0
## 79 0 0 0 0 0
## 80 0 0 0 0 0
## 81 0 0 0 0 0
## 82 0 0 0 0 0
## 83 2 0 Saitama U25 2 8
## 84 0 0 0 0 0
## 85 0 0 Lordsdale 2 4
## 86 0 0 Lordsdale 2 4
## 87 0 0 0 0 0
## 88 0 0 0 0 0
## 89 2 6 93.7% homology w/Saitama 0 0
## 90 0 0 0 0 0
## 91 0 0 0 0 0
## 92 0 0 0 0 0
## 93 0 0 0 0 0
## 94 0 0 0 0 0
## 95 0 0 0 0 0
## 96 0 0 0 0 0
## 97 0 0 0 0 0
## 98 0 0 0 0 0
## 99 0 0 0 0 0
## 100 0 0 0 0 0
## 101 0 0 0 0 0
## 102 0 0 0 0 0
## 103 0 0 0 0 0
## 104 0 0 0 0 0
## 105 0 0 0 0 0
## 106 0 0 0 0 0
## 107 0 0 0 0 0
## 108 0 0 0 0 0
## 109 0 0 0 0 0
## 110 0 0 0 0 0
## 111 0 0 0 0 0
## 112 0 0 0 0 0
## 113 2 0 0 0 0
## 114 0 0 0 0 0
## 115 1 0 0 0 0
## 116 0 0 0 0 0
## 117 0 0 0 0 0
## 118 0 0 0 0 0
## 119 0 0 0 0 0
## 120 1 5 0 0 0
## 121 0 0 Birmingham 1 3
## 122 0 0 0 0 0
## 123 0 0 0 0 0
## 124 0 0 0 0 0
## 125 0 0 Birmingham 1 3
## 126 0 0 0 0 0
## 127 0 0 0 0 0
## 128 0 0 0 0 0
## 129 2 0 0 0 0
## 130 0 0 0 0 0
## 131 0 0 0 0 0
## 132 0 0 0 0 0
## 133 0 0 0 0 0
## 134 0 0 0 0 0
## 135 0 0 0 0 0
## 136 2 4 GII.4 2006b 0 0
## 137 0 0 0 0 0
## 138 2 7 Leeds 0 0
## 139 0 0 0 0 0
## 140 0 0 0 0 0
## 141 0 0 0 0 0
## 142 0 0 0 0 0
## 143 0 0 0 0 0
## 144 0 0 0 0 0
## 145 0 0 0 0 0
## 146 0 0 0 0 0
## 147 0 0 0 0 0
## 148 0 0 0 0 0
## 149 0 0 0 0 0
## 150 0 0 0 0 0
## 151 0 0 0 0 0
## 152 0 0 0 0 0
## 153 0 0 0 0 0
## 154 0 0 0 0 0
## 155 0 0 0 0 0
## 156 0 0 0 0 0
## 157 0 0 0 0 0
## 158 0 0 0 0 0
## 159 2 0 BCCDC03-020 0 0
## 160 0 0 0 0 0
## 161 1 0 Malta 1 4
## 162 1 0 Malta 1 4
## 163 0 0 0 0 0
## 164 0 0 0 0 0
## 165 0 0 0 0 0
## 166 0 0 Camberwell 2 4
## 167 0 0 0 0 0
## 168 0 0 0 0 0
## 169 0 0 0 0 0
## 170 0 0 0 0 0
## 171 2 0 0 0 0
## 172 0 0 0 0 0
## 173 0 0 0 0 0
## 174 0 0 0 0 0
## 175 0 0 0 0 0
## 176 2 4 GII.4 2006b 0 0
## 177 0 0 0 0 0
## 178 0 0 0 0 0
## 179 0 0 0 0 0
## 180 1 0 Southampton (84% identity) 1 2
## 181 0 0 0 0 0
## 182 0 0 0 0 0
## 183 0 0 0 0 0
## 184 0 0 0 0 0
## 185 0 0 0 0 0
## 186 0 0 0 0 0
## 187 0 0 0 0 0
## 188 0 0 0 0 0
## 189 0 0 0 0 0
## 190 0 0 0 0 0
## 191 0 0 0 0 0
## 192 0 0 0 0 0
## 193 0 0 0 0 0
## 194 0 0 0 0 0
## 195 0 0 0 0 0
## 196 0 0 0 0 0
## 197 0 0 0 0 0
## 198 0 0 0 0 0
## 199 0 0 0 0 0
## 200 0 0 0 0 0
## 201 0 0 0 0 0
## 202 0 0 0 0 0
## 203 0 0 0 0 0
## 204 0 0 0 0 0
## 205 0 0 0 0 0
## 206 0 0 0 0 0
## 207 0 0 0 0 0
## 208 0 0 0 0 0
## 209 2 2 0 0 0
## 210 0 0 0 0 0
## 211 0 0 0 0 0
## 212 0 0 0 0 0
## 213 0 0 0 0 0
## 214 0 0 0 0 0
## 215 0 0 0 0 0
## 216 0 0 0 0 0
## 217 0 0 0 0 0
## 218 0 0 0 0 0
## 219 0 0 0 0 0
## 220 2 GII.b 0 0 0
## 221 0 0 0 0 0
## 222 0 0 0 0 0
## 223 0 0 0 0 0
## 224 2 2 0 0 0
## 225 0 0 0 0 0
## 226 0 0 0 0 0
## 227 0 0 0 0 0
## 228 0 0 0 0 0
## 229 0 0 0 0 0
## 230 2 12 SaU1/04/JP 0 0
## 231 0 0 0 0 0
## new_SB
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 Hu/NLV/Oxford/B6S6/2003/UK
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 SMV1-USA
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 SU25-JPN
## 84 0
## 85 Lsdale-GBR
## 86 Lsdale-GBR
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Birmingham
## 122 0
## 123 0
## 124 0
## 125 Birmingham
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 Chiba-JPN00
## 162 Chiba-JPN00
## 163 0
## 164 0
## 165 0
## 166 CBW94-AUS
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 Southampton (84% identity)
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## SB_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11 http://kcdc.labkm.net/vsd/database/gene_list.jsp?orgId=6&cuTag=CL0005&page=910&orderCol=&orderTag=&searchIn=&textIn=
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21 Zheng
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83 Zheng
## 84
## 85 Zheng
## 86 Zheng
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 122
## 123
## 124
## 125 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161 origi l article/Zheng
## 162 origi l article/Zheng
## 163
## 164
## 165
## 166 Zheng
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180 abstraction
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## GGC CC SC new_ggc new_cc new_sc
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 2 4 new strain 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 2 7 0 0 0 0
## 28 2 6 SaitamaU4 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 2 6 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 1 3 Desert Shield/1990/SA 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 2 0 Khs1-1997-JP 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 1 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 2 4 GII.4 2004 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 Leeds 2 7 Leeds-GBR00
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 2 17 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 2 0 BCCDC04-007 0 0 0
## 160 0 0 0 0 0 0
## 161 2 0 H104-94-J 0 0 0
## 162 2 0 H104-94-J 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 Whiterose 1 2 Whiterose
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 2 4 GII.4 2006b 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## SC_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125 Zheng
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## GGD CD SD new_ggd new_cd new_sd SD_resolved_from
## 1 0 0 0 0 0 0 NA
## 2 0 0 0 0 0 0 NA
## 3 0 0 0 0 0 0 NA
## 4 0 0 0 0 0 0 NA
## 5 0 0 0 0 0 0 NA
## 6 0 0 0 0 0 0 NA
## 7 0 0 0 0 0 0 NA
## 8 0 0 0 0 0 0 NA
## 9 0 0 0 0 0 0 NA
## 10 0 0 0 0 0 0 NA
## 11 0 0 0 0 0 0 NA
## 12 0 0 0 0 0 0 NA
## 13 0 0 0 0 0 0 NA
## 14 0 0 0 0 0 0 NA
## 15 0 0 0 0 0 0 NA
## 16 0 0 0 0 0 0 NA
## 17 0 0 0 0 0 0 NA
## 18 0 0 0 0 0 0 NA
## 19 0 0 0 0 0 0 NA
## 20 0 0 0 0 0 0 NA
## 21 0 0 0 0 0 0 NA
## 22 0 0 0 0 0 0 NA
## 23 0 0 0 0 0 0 NA
## 24 0 0 0 0 0 0 NA
## 25 0 0 0 0 0 0 NA
## 26 0 0 0 0 0 0 NA
## 27 0 0 0 0 0 0 NA
## 28 2 4 Bristol 0 0 0 NA
## 29 0 0 0 0 0 0 NA
## 30 0 0 0 0 0 0 NA
## 31 0 0 0 0 0 0 NA
## 32 0 0 0 0 0 0 NA
## 33 0 0 0 0 0 0 NA
## 34 0 0 0 0 0 0 NA
## 35 0 0 0 0 0 0 NA
## 36 0 0 0 0 0 0 NA
## 37 0 0 0 0 0 0 NA
## 38 0 0 0 0 0 0 NA
## 39 0 0 0 0 0 0 NA
## 40 0 0 0 0 0 0 NA
## 41 0 0 0 0 0 0 NA
## 42 0 0 0 0 0 0 NA
## 43 0 0 0 0 0 0 NA
## 44 0 0 0 0 0 0 NA
## 45 0 0 0 0 0 0 NA
## 46 0 0 0 0 0 0 NA
## 47 0 0 0 0 0 0 NA
## 48 0 0 0 0 0 0 NA
## 49 0 0 0 0 0 0 NA
## 50 0 0 0 0 0 0 NA
## 51 0 0 0 0 0 0 NA
## 52 0 0 0 0 0 0 NA
## 53 0 0 0 0 0 0 NA
## 54 0 0 0 0 0 0 NA
## 55 0 0 0 0 0 0 NA
## 56 0 0 0 0 0 0 NA
## 57 0 0 0 0 0 0 NA
## 58 0 0 0 0 0 0 NA
## 59 0 0 0 0 0 0 NA
## 60 0 0 0 0 0 0 NA
## 61 0 0 0 0 0 0 NA
## 62 0 0 0 0 0 0 NA
## 63 0 0 0 0 0 0 NA
## 64 0 0 0 0 0 0 NA
## 65 0 0 0 0 0 0 NA
## 66 0 0 0 0 0 0 NA
## 67 0 0 0 0 0 0 NA
## 68 0 0 0 0 0 0 NA
## 69 0 0 0 0 0 0 NA
## 70 0 0 0 0 0 0 NA
## 71 0 0 0 0 0 0 NA
## 72 0 0 0 0 0 0 NA
## 73 0 0 0 0 0 0 NA
## 74 0 0 0 0 0 0 NA
## 75 0 0 0 0 0 0 NA
## 76 0 0 0 0 0 0 NA
## 77 0 0 0 0 0 0 NA
## 78 0 0 0 0 0 0 NA
## 79 0 0 0 0 0 0 NA
## 80 0 0 0 0 0 0 NA
## 81 0 0 0 0 0 0 NA
## 82 0 0 0 0 0 0 NA
## 83 1 0 NLV/Steinbach/EG/2001/CA 0 0 0 NA
## 84 0 0 0 0 0 0 NA
## 85 0 0 0 0 0 0 NA
## 86 0 0 0 0 0 0 NA
## 87 0 0 0 0 0 0 NA
## 88 0 0 0 0 0 0 NA
## 89 0 0 0 0 0 0 NA
## 90 0 0 0 0 0 0 NA
## 91 0 0 0 0 0 0 NA
## 92 0 0 0 0 0 0 NA
## 93 0 0 0 0 0 0 NA
## 94 0 0 0 0 0 0 NA
## 95 0 0 0 0 0 0 NA
## 96 0 0 0 0 0 0 NA
## 97 0 0 0 0 0 0 NA
## 98 0 0 0 0 0 0 NA
## 99 0 0 0 0 0 0 NA
## 100 0 0 0 0 0 0 NA
## 101 0 0 0 0 0 0 NA
## 102 0 0 0 0 0 0 NA
## 103 0 0 0 0 0 0 NA
## 104 0 0 0 0 0 0 NA
## 105 0 0 0 0 0 0 NA
## 106 0 0 0 0 0 0 NA
## 107 0 0 0 0 0 0 NA
## 108 0 0 0 0 0 0 NA
## 109 0 0 0 0 0 0 NA
## 110 0 0 0 0 0 0 NA
## 111 0 0 0 0 0 0 NA
## 112 0 0 0 0 0 0 NA
## 113 1 0 0 0 0 0 NA
## 114 0 0 0 0 0 0 NA
## 115 0 0 0 0 0 0 NA
## 116 0 0 0 0 0 0 NA
## 117 0 0 0 0 0 0 NA
## 118 0 0 0 0 0 0 NA
## 119 0 0 0 0 0 0 NA
## 120 0 0 0 0 0 0 NA
## 121 0 0 0 0 0 0 NA
## 122 0 0 0 0 0 0 NA
## 123 0 0 0 0 0 0 NA
## 124 0 0 0 0 0 0 NA
## 125 0 0 0 0 0 0 NA
## 126 0 0 0 0 0 0 NA
## 127 0 0 0 0 0 0 NA
## 128 0 0 0 0 0 0 NA
## 129 0 0 0 0 0 0 NA
## 130 0 0 0 0 0 0 NA
## 131 0 0 0 0 0 0 NA
## 132 0 0 0 0 0 0 NA
## 133 0 0 0 0 0 0 NA
## 134 0 0 0 0 0 0 NA
## 135 0 0 0 0 0 0 NA
## 136 1 3 0 0 0 0 NA
## 137 0 0 0 0 0 0 NA
## 138 0 0 0 0 0 0 NA
## 139 0 0 0 0 0 0 NA
## 140 0 0 0 0 0 0 NA
## 141 0 0 0 0 0 0 NA
## 142 0 0 0 0 0 0 NA
## 143 0 0 0 0 0 0 NA
## 144 0 0 0 0 0 0 NA
## 145 0 0 0 0 0 0 NA
## 146 0 0 0 0 0 0 NA
## 147 0 0 0 0 0 0 NA
## 148 0 0 0 0 0 0 NA
## 149 0 0 0 0 0 0 NA
## 150 0 0 0 0 0 0 NA
## 151 0 0 0 0 0 0 NA
## 152 0 0 0 0 0 0 NA
## 153 0 0 0 0 0 0 NA
## 154 0 0 0 0 0 0 NA
## 155 0 0 0 0 0 0 NA
## 156 0 0 0 0 0 0 NA
## 157 0 0 0 0 0 0 NA
## 158 0 0 0 0 0 0 NA
## 159 2 0 BCCDC03-008 0 0 0 NA
## 160 0 0 0 0 0 0 NA
## 161 2 0 GII.b 0 0 0 NA
## 162 2 0 GII.b 0 0 0 NA
## 163 0 0 0 0 0 0 NA
## 164 0 0 0 0 0 0 NA
## 165 0 0 0 0 0 0 NA
## 166 0 0 0 0 0 0 NA
## 167 0 0 0 0 0 0 NA
## 168 0 0 0 0 0 0 NA
## 169 0 0 0 0 0 0 NA
## 170 0 0 0 0 0 0 NA
## 171 0 0 0 0 0 0 NA
## 172 0 0 0 0 0 0 NA
## 173 0 0 0 0 0 0 NA
## 174 0 0 0 0 0 0 NA
## 175 0 0 0 0 0 0 NA
## 176 2 6 0 0 0 0 NA
## 177 0 0 0 0 0 0 NA
## 178 0 0 0 0 0 0 NA
## 179 0 0 0 0 0 0 NA
## 180 0 0 0 0 0 0 NA
## 181 0 0 0 0 0 0 NA
## 182 0 0 0 0 0 0 NA
## 183 0 0 0 0 0 0 NA
## 184 0 0 0 0 0 0 NA
## 185 0 0 0 0 0 0 NA
## 186 0 0 0 0 0 0 NA
## 187 0 0 0 0 0 0 NA
## 188 0 0 0 0 0 0 NA
## 189 0 0 0 0 0 0 NA
## 190 0 0 0 0 0 0 NA
## 191 0 0 0 0 0 0 NA
## 192 0 0 0 0 0 0 NA
## 193 0 0 0 0 0 0 NA
## 194 0 0 0 0 0 0 NA
## 195 0 0 0 0 0 0 NA
## 196 0 0 0 0 0 0 NA
## 197 0 0 0 0 0 0 NA
## 198 0 0 0 0 0 0 NA
## 199 0 0 0 0 0 0 NA
## 200 0 0 0 0 0 0 NA
## 201 0 0 0 0 0 0 NA
## 202 0 0 0 0 0 0 NA
## 203 0 0 0 0 0 0 NA
## 204 0 0 0 0 0 0 NA
## 205 0 0 0 0 0 0 NA
## 206 0 0 0 0 0 0 NA
## 207 0 0 0 0 0 0 NA
## 208 0 0 0 0 0 0 NA
## 209 0 0 0 0 0 0 NA
## 210 0 0 0 0 0 0 NA
## 211 0 0 0 0 0 0 NA
## 212 0 0 0 0 0 0 NA
## 213 0 0 0 0 0 0 NA
## 214 0 0 0 0 0 0 NA
## 215 0 0 0 0 0 0 NA
## 216 0 0 0 0 0 0 NA
## 217 0 0 0 0 0 0 NA
## 218 0 0 0 0 0 0 NA
## 219 0 0 0 0 0 0 NA
## 220 0 0 0 0 0 0 NA
## 221 0 0 0 0 0 0 NA
## 222 0 0 0 0 0 0 NA
## 223 0 0 0 0 0 0 NA
## 224 0 0 0 0 0 0 NA
## 225 0 0 0 0 0 0 NA
## 226 0 0 0 0 0 0 NA
## 227 0 0 0 0 0 0 NA
## 228 0 0 0 0 0 0 NA
## 229 0 0 0 0 0 0 NA
## 230 0 0 0 0 0 0 NA
## 231 0 0 0 0 0 0 NA
## StrainOther
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 there were also GI and GII uncharacterized strains
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 genogroup of 2nd strain was unresolved but closest to the reference strains listed above
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 GII.4 in 3 outbreaks and GI.14 in 1 outbreak
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 Additio l group 1, two additio l group 2
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 GI/2, GI/13
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 6 other strains mentioned in paper
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 2006a GII.4 NoV variant
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 GII.4 caused 3 outbreaks and GI.14 caused one
## 213 3 outbreaks were GII.4 and 1 was GI.14
## 214 GII.4 for 3 outbreaks and GI.14 for 1 outbreak
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## strainother_rc
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 there were also GI and GII uncharacterized strains
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 genogroup of 2nd strain was unresolved but closest to the reference strains listed above
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## gge ce se SE_resolved_from ggf cf sf ggg
## 1 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0
## 17 0 0 0 0 0 0 0
## 18 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0
## 21 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0
## 45 0 0 0 0 0 0 0
## 46 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0
## 50 0 0 0 0 0 0 0
## 51 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0
## 54 0 0 0 0 0 0 0
## 55 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0
## 57 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0
## 102 0 0 0 0 0 0 0
## 103 0 0 0 0 0 0 0
## 104 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0
## 113 1 0 0 2 0 0 2
## 114 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0
## 122 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0
## 129 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0
## 136 1 2 0 1 13 0 0
## 137 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0
## 159 2 4 BCCDC04-002 abstraction of StrainOther 2 5 BCCDC03-013 2
## 160 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0
## 171 0 0 0 0 0 0 0
## 172 0 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0
## 185 0 0 0 0 0 0 0
## 186 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0
## 189 2 4 GII.4 2006a abstraction of StrainOther 0 0 0 0
## 190 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0
## cg sg ggh ch sh ggi ci si ggj cj
## 1 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0 0 0 0
## 17 0 0 0 0 0 0 0 0 0 0
## 18 0 0 0 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0 0 0 0
## 21 0 0 0 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0 0 0 0
## 45 0 0 0 0 0 0 0 0 0 0
## 46 0 0 0 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0 0 0 0
## 50 0 0 0 0 0 0 0 0 0 0
## 51 0 0 0 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0 0 0 0
## 54 0 0 0 0 0 0 0 0 0 0
## 55 0 0 0 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0 0 0 0
## 57 0 0 0 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0 0 0 0
## 102 0 0 0 0 0 0 0 0 0 0
## 103 0 0 0 0 0 0 0 0 0 0
## 104 0 0 0 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0 0 0 0
## 113 0 0 0 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0 0 0 0
## 122 0 0 0 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0 0 0 0
## 129 0 0 0 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0 0 0 0
## 159 3 BCCDC04-006 2 4 BCCDC03-032 1 1 BCCDC04-003 1 2
## 160 0 0 0 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0 0 0 0
## 171 0 0 0 0 0 0 0 0 0 0
## 172 0 0 0 0 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0 0 0 0
## 185 0 0 0 0 0 0 0 0 0 0
## 186 0 0 0 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0 0 0 0
## 189 0 0 0 0 0 0 0 0 0 0
## 190 0 0 0 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0 0 0 0
## sj Country2
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 USA, Caribbean
## 8 0 USA, Spain
## 9 0 USA, Caribbean
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 Australia
## 15 0 Brazil
## 16 0 Malta
## 17 0 0
## 18 0 United Kingdom
## 19 0 Ca da
## 20 0 USA, Caribbean
## 21 0 0
## 22 0 Switzerland
## 23 0 0
## 24 0 New Zealand
## 25 0 0
## 26 0 Germany
## 27 0 0
## 28 0 0
## 29 0 Austria
## 30 0 Belgium
## 31 0 Australia
## 32 0 Australia
## 33 0 0
## 34 0 Sweden
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 United Kingdom
## 39 0 0
## 40 0 Finland
## 41 0 Finland
## 42 0 Finland
## 43 0 Sweden
## 44 0 France, Netherlands
## 45 0 England, Ireland
## 46 0 Taiwan
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 Iraq
## 59 0 Israel
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 Ca da, USA
## 65 0 Australia
## 66 0 0
## 67 0 0
## 68 0 France, Switzerland
## 69 0 Switzerland
## 70 0 0
## 71 0 Arabian Gulf, at sea
## 72 0 Sweden
## 73 0 United Kingdom
## 74 0 0
## 75 0 Sweden
## 76 0 0
## 77 0 0
## 78 0 Finland
## 79 0 Australia
## 80 0 Italy
## 81 0 Western Mediterranean
## 82 0 Finland
## 83 0 Italy
## 84 0 0
## 85 0 Australia
## 86 0 Australia
## 87 0 Spain
## 88 0 Australia
## 89 0 0
## 90 0 Australia
## 91 0 Australia
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 Austria
## 96 0 Taiwan
## 97 0 0
## 98 0 0
## 99 0 0
## 100 0 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 0 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 Italy
## 113 0 United Kingdom
## 114 0 Ca da, USA
## 115 0 0
## 116 0 Hong Kong
## 117 0 Switzerland
## 118 0 Ca da
## 119 0 Australia
## 120 0 Netherlands
## 121 0 The Netherlands
## 122 0 Finland
## 123 0 0
## 124 0 United Kingdom
## 125 0 Italy
## 126 0 0
## 127 0 0
## 128 0 United Kingdom
## 129 0 Sweden
## 130 0 Pohang, Korea, Singapore, Phuket, Thailand, Persian Gulf
## 131 0 Singapore; Port Kelang, Malaysia; Bahrain
## 132 0 United Kingdom
## 133 0 United Kingdom
## 134 0 Australia
## 135 0 Australia
## 136 0 Montenegro
## 137 0 Spain
## 138 0 The Netherlands, Belgium
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 Bermuda
## 154 0 Sweden
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 United Kingdom
## 159 BCCDC04-008 Ca da
## 160 0 Netherlands
## 161 0 France
## 162 0 France
## 163 0 Switzerland
## 164 0 Switzerland
## 165 0 Switzerland
## 166 0 Switzerland
## 167 0 Switzerland
## 168 0 Switzerland
## 169 0 Austria
## 170 0 Israel
## 171 0 New Zealand
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 Bulgaria
## 176 0 Finland
## 177 0 0
## 178 0 Switzerland
## 179 0 0
## 180 0 Finland
## 181 0 Austria
## 182 0 Finland
## 183 0 New Zealand
## 184 0 United Kingdom
## 185 0 0
## 186 0 Ireland
## 187 0 0
## 188 0 0
## 189 0 Italy
## 190 0 Australia
## 191 0 Australia
## 192 0 Spain
## 193 0 Singapore
## 194 0 Greece
## 195 0 0
## 196 0 Andorra
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 Austria
## 203 0 Germany
## 204 0 Australia
## 205 0 0
## 206 0 USA, England
## 207 0 0
## 208 0 Switzerland
## 209 0 France
## 210 0 Portugal
## 211 0 0
## 212 0 Taiwan
## 213 0 Taiwan
## 214 0 Taiwan
## 215 0 Germany, The Netherlands
## 216 0 Germany, The Netherlands
## 217 0 Germany
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 Singapore
## 226 0 Singapore
## 227 0 Singapore
## 228 0 Singapore
## 229 0 Singapore
## 230 0 0
## 231 0 0
## Veh1_D_2
## 1 0
## 2 Boxed Lunch
## 3 Oyster
## 4 catered luncheon, potatoe salad
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 Contami ted oyster
## 14 0
## 15 0
## 16 0
## 17 broccoli
## 18 Salad
## 19 0
## 20 0
## 21 Raw oysters
## 22 ill visitor
## 23 coleslaw
## 24 0
## 25 School lunch
## 26 pool water
## 27 Well water (drinking and ice)
## 28 Shellfish
## 29 Emesis
## 30 Bread
## 31 0
## 32 0
## 33 0
## 34 Tomato
## 35 0
## 36 0
## 37 0
## 38 buffet pasta in mayo
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 Sandwich
## 61 sandwich lettuce
## 62 0
## 63 water well
## 64 Cabins
## 65 0
## 66 deli sandwiches
## 67 0
## 68 0
## 69 Infected persons
## 70 Wedding cake
## 71 Salad
## 72 Pumpkin salad
## 73 0
## 74 Fresh cut fruit
## 75 0
## 76 0
## 77 0
## 78 municiple water system
## 79 Ill resident
## 80 Tap water in Taranto City
## 81 Passengers remaining on board for a second week
## 82 dressing made from imported frozen raspberries
## 83 Mussels
## 84 0
## 85 0
## 86 0
## 87 Sandwich
## 88 Passionfruit Slices
## 89 0
## 90 Oyster
## 91 Oyster
## 92 0
## 93 drinking water
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 Water
## 112 main water pipe
## 113 Water
## 114 0
## 115 scalloped potatoes
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Recreatio l water from a fountain
## 122 raw vegetables/salad
## 123 Packaged delicatessen meat
## 124 vomitus
## 125 fecally contami ted non-drinking water connected to drinking-water systems
## 126 resident who began vomiting
## 127 0
## 128 Potato salad
## 129 Lake water
## 130 0
## 131 0
## 132 0
## 133 salad
## 134 0
## 135 Oyster
## 136 Municiple water supply
## 137 round of beef
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Pasta Salad
## 151 well water
## 152 Oyster
## 153 Water
## 154 unboiled water from well A
## 155 Pool
## 156 antipasti platter
## 157 1st grade room J
## 158 0
## 159 Oysters
## 160 Rolls
## 161 Oysters
## 162 Oyster
## 163 0
## 164 Pillow covers
## 165 0
## 166 community water supply from lake
## 167 infected person
## 168 Infected person
## 169 0
## 170 Salad
## 171 drinking water supply
## 172 0
## 173 0
## 174 0
## 175 0
## 176 "community based outbreak of NoV"
## 177 tossed salad
## 178 0
## 179 Salad (bar itmes)
## 180 Municipal water
## 181 0
## 182 0
## 183 0
## 184 Index case was woman who vomited during large hotel dinner
## 185 index ill resident
## 186 the index case was a patient admitted with vomiting and diarrhoea into the open ward
## 187 Oyster
## 188 0
## 189 Thin soup suspected
## 190 0
## 191 0
## 192 index case was in the rehabilitation unit
## 193 raw oysters
## 194 Well water
## 195 Sandwiches
## 196 Ice cubes
## 197 Pool water
## 198 0
## 199 0
## 200 Index vomit
## 201 0
## 202 Salad
## 203 0
## 204 Oysters
## 205 0
## 206 0
## 207 Elevator button
## 208 0
## 209 oyster
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 raw oysters
## 226 raw oysters
## 227 raw oysters
## 228 raw oysters
## 229 raw oysters
## 230 0
## 231 0
## Veh2_D_2 Veh3_D_2
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 spring roll udon noodles
## 18 0 0
## 19 0 0
## 20 0 0
## 21 0 0
## 22 0 0
## 23 guest bathroom 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 Human to Human oral-fecal route 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 Hamburger 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 buffet spring rolls 0
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 0
## 65 0 0
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 Fomites 0
## 80 0 0
## 81 0 0
## 82 transmission between employees 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 Salad 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 ice house salad
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 0 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 0 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 Custard Slices 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 previously ill employee handled meat barehanded 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 coleslaw 0
## 134 0 0
## 135 0 0
## 136 0 0
## 137 assymptomatic foodhandler 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 garlic mashed potatoes 0
## 157 Infected person 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 0 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## Action2_2
## 1 0
## 2 0
## 3 harvest area closure, oyster recall, release of HAN
## 4 0
## 5 0
## 6 cleaning of ship
## 7 improved sanitization, exclusion of ill foodservice workers from the workplace
## 8 quarantine of ill until sx free for 72 hours, disinfection of ship, reinforcement of sanitization practices
## 9 disinfection & sanitization, secondary cases caused removal of ship from service for 1 week for aggresive cleaning and sanitizing.
## 10 isolation of ill patients, handy hygiene promotion via alcohol sanitizers, installation of sinks, and advertising campaigns.
## 11 0
## 12 0
## 13 Trace contaimi ted oysters back to source, attempted forward tracing to prevent further infection
## 14 0
## 15 0
## 16 handwashing, enviornmental disinfection, foodhandling precautions, disposal of soiled items
## 17 Restaurant temporarilly shut down,
## 18 kitchen spot checks and enviornmental studies to make recommendations for continual cleaning etc.
## 19 enviornmental cleaning, hand hygiene messages,
## 20 1 week sanitation and sterilization of the ship after cruise 1, however outbreak continued on the next 5 cruises
## 21 Harvesting area closed on November 16, 1993
## 22 hand hygiene inforced, isolation and cohorting of ill patients, staff sick policy e cted, daily enviornmental cleaning.
## 23 staff told not to work for 1 day after asymptomatic; staff instructed on hygiene & hand washing; hotel closed 8 h for thorough cleaning of food service areas & rooms, new guests not accepted til then; cold food requiring hand-prep excluded from menu
## 24 paid sick leave for staff, cleaning service was involved immediately and a rigorous cleaning regimen; promotion of the importance of hand hygiene was performed on the ward to educate staff, patients and visitors
## 25 Communicated oubreak to Board of Education and started campaign for washing hands with a chlori ted stream and careful treatments for ingested foods
## 26 wash their hands after using lavatory and prior to meals, ill patients should have little contact w/other guests, staff informed about illness immediately, sick patient rooms cleaned using a virucidal disinfectant
## 27 Previous high levels of coliform in the well water had elicited the use of a pellet chlori tor, which faile to operate correctly during this outbreak; also the saloon was shut down.
## 28 Ship brought back in
## 29 Hand hygene, routine bathroom cleaning and overall cleaning. These were not implemented until lab results were back.
## 30 Hygenic measures reinforced
## 31 0
## 32 0
## 33 installation of additio l portable bathrooms throughout the facility; education of evacuees on proper hand-washing techniques via flyers, banners, newsletters, and public announcements; and distribution of alcohol-based hand sanitzers
## 34 Ill food handler sent home after presenting with symptoms
## 35 hand sanitizers made available across campus
## 36 school closed, dining halls closed, students advised on proper sanitary precautions
## 37 Students were educated regarding hand washing, and cleaning of dormitories, public restrooms, and commu l areas was implemented with cleaning agents approved for norovirus
## 38 infected were told to refrain from work until 48 hours after stool returned to normal
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 professio lly cleaned restaurant
## 61 professio lly cleaned restaurant
## 62 professio lly cleaned restaurant
## 63 move and replace septic system
## 64 Clean up of public vomit within 1 hour.
## 65 infection control measures, ward closures
## 66 deli closure
## 67 0
## 68 0
## 69 0
## 70 0
## 71 cohorting of ill persons, adequate toilet paper provided, enviornmental cleaning, hand hygiene promotion
## 72 Hygiene recommendations, staff policy removing ill workers from the workplace
## 73 cohorting ill, ward closure, staff sick policy, enviornmental cleaning, hand washing recommendations
## 74 0
## 75 Hotel closed, intense enviornmental cleaning, hand hygiene promoted
## 76 0
## 77 staff sick policy implemented, closure of admissions, onging surviellence
## 78 Boil water notice, chlori tion of water system.
## 79 handy hygiene, staff sick policy, environmental cleaning, isolation of ill patients.
## 80 An extra chlori tion treatment for household water supplies on 34th week of the year
## 81 At end of 4th cruise all passengers disembarked and entire ship cleaned with chlorine disinfectant; also hygiene measure introduced in galley
## 82 0
## 83 0
## 84 0
## 85 extensive staff and hospital policy to reduce further transmission: handwashing, restricted movement of patients, linen cleaning, visitor limitations etc.
## 86 admissions suspended, handwashing, enviornmental cleaning, visitor restriction, linen cleaning, staff policy etc.
## 87 Told not to return to work for 48 hours, hand washing techniques emphasized
## 88 Catering company ceased oporations temporarily, public health organization put out reminders about handwashing and not working until 48 hours after symptoms cease
## 89 0
## 90 0
## 91 0
## 92 0
## 93 restaurant closed
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 bottled water only, service water pipe
## 113 0
## 114 sanitized before secondary outbreak, decomissioned and removed from service for a week after secondary outbreak
## 115 0
## 116 many sanitization steps, isolation of ill patients
## 117 0
## 118 Patient education, handwashing, enviornmental cleaning, cohort isolation
## 119 0
## 120 masks, gloves, removal from food prep. if ill, hyperchlori tion toilet facilities
## 121 0
## 122 0
## 123 0
## 124 enviornmental cleanig with ammoni , school closure and enviornmental cleaning with chlorine
## 125 0
## 126 0
## 127 0
## 128 sink was disinfected with chlorine containing solution after having been vommitted in by index foodhandler
## 129 Warnings against bathing put up
## 130 prepardness was high (i.e. definitions of outbreak, cases etc. serum/stool samples collected by crew & doc.
## 131 preventative measures (i.e. kits to investigate NoV outbreak, plus definitions of cases and outbreak etc.
## 132 0
## 133 0
## 134 Barrier nursing, handwashing, restrictions on movement of ill patients, employees not to return to work until 48 hours after symptoms stop
## 135 0
## 136 Hyperchlori tion of the water supply
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Caterer A was closed by the state health department Feb 16th for 2 days to correct 57 violations of health code
## 151 The lodge was closed
## 152 0
## 153 terrace-tank hyperchlori ted
## 154 water chlori tion
## 155 pool hyperchlori ted twice
## 156 discarded food from outbreak period, employees excluded from work 72 hours from symptom resolution, facility cleaned
## 157 clean computers, exclude ill persons for 72 hours after symptom resolution
## 158 sanitization
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 Toilets and kitchens disinfected
## 165 Chalet shut down temperarily, and professio l cleaning
## 166 0
## 167 0
## 168 0
## 169 admission to the hospital closed 3 times, 34/41 guidlines for NoV outbreak control covered, control implemented via the hospital hygiene team
## 170 closing the mess hall, hand hygiene, use of military food rations
## 171 emergency clori tion of the water supply, staff policy for illness, hand hygiene signs.
## 172 0
## 173 handwashing, proper hygiene
## 174 ward closures, extensive enviornmental cleaning, staff sick policy, hand hygiene promotion
## 175 0
## 176 cohorting, contact isolation, enviornmental cleaning, hand hygiene
## 177 0
## 178 hand hygiene, cohoring, enviornmental cleaning
## 179 Kitchen closed, investigation of water supply and other sources of potential exposure
## 180 Superchlori tion of the municipal water on April 9, 1998
## 181 Enviornmental disinfecting, cleaing of fomites, index case seclution
## 182 enviornmental cleaning, hyperclori tion of physiotherapy pools, physiotherapy instruments disinfected, hand hygiene promotion.
## 183 Contact precautions were commenced, staffing guidelines instituted and the ward was closed for 11 days
## 184 0
## 185 perso l hygiene (gloves, gowns, handwashing), isolation of ill, staff sick policy, alcohol based hand sanitizers available
## 186 ill patients isolated or cohorted; transport & discharge avoided; staff wore disposable aprons & gloves; handwashing emphasized; ward closed to admissions; thorough cleaning of facilities
## 187 0
## 188 0
## 189 Hygiene measures inforced
## 190 ill hostel residents were isolated and signs were erected informing visitors about the outbreak, staff were advised not to return to work for 48 hours after symptoms resolved
## 191 protective equipment for staff when working with sick residents, strict hand washing between contact with each resident, no new admissions or transfers to other aged care facilities and grouping sick residents away from well residents
## 192 ill staff were excluded from work for duration of illness, washed hands w/antiseptic soap (chlorhexidine or povidone-iodine), rooms were cleaned with 1% aldehyde or 0.1% chlorine-free bleach
## 193 0
## 194 hyperchlori tion of the water system, handwashing and bottle water recommendations put in place
## 195 0
## 196 0
## 197 Chlori tion of the pool, fixing the chlori tion system, further protocol reccomendations
## 198 self-quarentine, handwashing with soap and water, patient diversion, staff sick policy implemented
## 199 0
## 200 0
## 201 0
## 202 Shut down kitchen and cleaned it
## 203 hand hygiene with ethanol based sanitizer, isolation of patients,
## 204 Stopped selling oysters from infected bays and harvesting from the infected area was banned
## 205 Infected infants placed in beds farthest from entryway
## 206 0
## 207 Hang hygene, contact precautions for case residents, masks when assisting vomiting residents, employees not to return until 48 hours without symptoms
## 208 Patients were isolated, care workers wore gloves and gowns, transfer to/from other wards was suspended, handwashing technique stressed, cleaned with bleach, employees could not return until 48 hours after their symptoms disaperaed
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 Disinfection of restaurants, kitchens, and toilets performed and main kitchen in hotel restaurant closed
## 231 0
## Comments_2
## 1 Limited data
## 2 0
## 3 0
## 4 0
## 5 0
## 6 crusie ship B
## 7 cruise ship C
## 8 cruise ship D
## 9 cruise ship E
## 10 The persons at risk (i.e. 6500) is an estimate, as this outbreak took place during an emergency and relief situation, evaluation and monitoring was potentially more difficult
## 11 0
## 12 0
## 13 10 clusters from 5 states; outbreak associated to contami ted oysters (essentially common source);
## 14 0
## 15 0
## 16 staff and patient specific attack rates available.
## 17 Multiple tourist groups visiting gasaki were all infected from one restaurant, improper foodhandling and thus the food were the causative agents of NoV outbreak
## 18 Restaurant based salad infected NoV outbreak; abnormally high levels of E. coli in kitchen enviornmental studies, no other pathogens indicated in the cases.
## 19 NoV outbreak in a large Ca dian university setting, no definitive sources, no retrospective case control study doen.
## 20 Secondary cases come from cruise 2, after the initial outbreak of NoV on cruise 1, the subsequent 5 cruises and even 1 related nursing home all had NoV outbreaks of the same strain
## 21 The outbreak was caused by contami tion of oysters in the oyster bed by stool from one or more ill harvester; the attack rate for 66 cases among 120 total perso s was 55%
## 22 2 geographically isolated buildings on the hospital complex were affected by NoV due to ill HCW and patient movement prior to detection.
## 23 outbreak occurred for 3 groups of guests at a hotel
## 24 outbreak 2 in article; more effective precautio ry measures in this outbreak than in first; no deaths from NoV
## 25 This data represents school children and staff who consumed the lunch on November 22nd, 69 out of 93 students were ill and 85 out of 105 lunch eaters were symptomatic
## 26 single source of outbreak unknown, but subsequent person-to-person spread likely b/c social contacts among guests are much more frequent and intensive than among patients in a "normal" hospital
## 27 Well water sampling for NoV was a "novel" technique when this paper was written; retrospective cohort study, no food implicated only ice and drinking water
## 28 0
## 29 For median age, it was 82 for patients, and 41 for staff. For 2ndary case info, have 160 hours as longest incuabation period but could not enter that number. For 2ndary case data, median age was 81 for patients, 36.5 staff.
## 30 0
## 31 0
## 32 0
## 33 0
## 34 secondary cohort study implicated tomatos and hamburgers after the first cohort study implicated the canteen.
## 35 outbreak 1 of 3
## 36 outbreak 2 of 3
## 37 outbreak 3 of 3
## 38 0
## 39 0
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 Suspected index case boarded the ship ill, and trasmitted through public vomitting episodes, no Asians obtained NoV;
## 65 0
## 66 0
## 67 0
## 68 0
## 69 Outbreak 8 of 8 Fretz 2005; outbreak 3 of 3 related to hospital nursing home
## 70 Baker contami ted wedding cakes distributed to 46 weddings over the course of one weekend. The wedding cake was the only implicated vehicle at the various weddings to have spread NoV
## 71 strains desig ted as site specific mes, however the highly homogenous reference strains are reported here
## 72 it is uncertain wether or not the initial of the outbreak was the food, or if the foodhandlers were ill and then contami ted the food; interesting information on adult vs. child attack rate etc.
## 73 The similarity with Bristol virus was only 79%
## 74 UK2 virus had 95% similarity with the outbreak strain. uncertain, at the time of publication, wether this is an NoV
## 75 closest recongnized strain was desert shield, another strain from an outbreak in japan was more similar (accession number ABO19262); 13 newborn babies were exposed and none developed NoV despite 5 of the parents becoming ill
## 76 This study demonstrates the importance fomites play in NoV transmission: 100% of doorknobs, 83% of bathroom surfaces, and 40% of kitchen surfaces had NoV present
## 77 outbreak origi lly thought to be due to causitive agent: C. difficile; further investigation proved otherwise.
## 78 Drinking municiple water was associated with NoV, while drinking well water exclusively was protective. Internet-based data collection scheme used.
## 79 NoV outbreak in nursing home brought on by index case with vomitting in dining room.
## 80 No shellfish samples were positive for bacteria or viruses; source of contami tion was not revealed
## 81 Very little information previded for this reason combined all four cruises; i ppropriate food handling but no positive environmental samples nor strain ID from emesis and stool samples
## 82 outbreak occurred as a result of serving unheated frozen raspberries in sauce; longest incubation period was 119 h, not 99 h
## 83 secondary or co-primary cases could not be discerned form one another; cooked and raw mussels were both implicated as vehicles.
## 84 no control measures take, except for recommendations regarding hygiene and staff sick leave.
## 85 Outbreak 1 presented here, outbreak 2 (as defined by the author) will be presented as record database 31; no known vehicle of transmission. primarily elderly patients.
## 86 Related to another outbreak in the same hospital, (Russo 1997 article as well); econimic loss a lysis, this outbreak was deemed as seperate and the cases were considered primary.
## 87 0
## 88 0
## 89 Age of youngest infected was newborn
## 90 0
## 91 0
## 92 0
## 93 0
## 94
## 95
## 96
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 Mixed outbreak with Astrovirus, 5 had both of an unknown number at risk
## 111 0
## 112 0
## 113 0
## 114 crusie ship A
## 115 0
## 116 0
## 117 Outbreak 5 of 8 Fretz 2005; ill girl likely index case of a family foodborne outbreak
## 118 Interesting challenges presented due to the psychiatric disposition of cases
## 119 Noted extensive and prolonged symptoms in the elderly population
## 120 Large " tural experiment" to discern reproductive number with and without hygiene control measures. in a camp setting
## 121 secondary transmission was primarilly via parents taking care of their ill children (hence person to person spread); chlori tion system later added to the fountain
## 122 10 canteens affected, epi investigation focused on only 3 of these canteens; no specific vegetable or farm could be implicated because of the ture of the food processing system. food handler contami tion was thought not to have occured.
## 123 Unique example of norovirus outbreak associated with ready-to-eat meats contami ted at processing plant prior to packaging and wholesale distribution; employee sample taken 1 month after illness was NoV negative
## 124 Aersolization of viral vomitus caused mass NoV outbreak in primary school, with a high secondary attack rate. Hyperchlori tion in the envioronment was effective control measure.
## 125 Common source of infection suggested, fecal contami tion of drinking water systems suspected to have arisen from connection with non-drinking water systems because of damaged pipework
## 126 desig ted Case 1 in article; outbreak took place in Sakai City, Osaka, Japan
## 127 desig ted Case 2 in paper; both children and staff were ill; outbreak occurred in Sakai City
## 128 this outbreak highlights the virulence of NoV as it can withstand chlorine based disinfection
## 129 0
## 130 Outbreak aboard US vy ship in inter tio l waters, but after having visited Korea, Singapore, and most recently Thailand. No source, or vehicle of transmission was determined.
## 131 US vy ship last stopped in Malaysia, no source or vehicle found, thought to be contracted at port and brought aboard
## 132 outbreak from bbq A; associated with food from catering company vivancos 2009
## 133 outbreak from bbq B Vivancos 2009
## 134 0
## 135 0
## 136 Massive city wide outbreak; data also available for matched-case-control study of sub-population; the 10% attack rate is an estimate.
## 137 0
## 138
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Caterer A in Ohio was likely responsible for the outbreaks from the "boxed banquets" disperesed to car dealerships around the country
## 151 Well water and potentially ill-foodhandlers promoted the spread of NoV at 3 lodges, with high rates of cross over of guests, only lodge A was implicated.
## 152 outbreak 2 of 3 for pubmed id 10804152
## 153 u ble to determine number of individuals at risk
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 This outbreak comes from "other notified foodborne outbreaks"; was actually the result of 13 outbreaks, but was reported as 1, with a common source and data represnting all 13 outbreaks (implied)
## 163 Outbreak 1 of 8 Fretz 2005; This intial foodborne outbreak lead to 2 more consecutive outbreaks at the same chalet, among different groups of skiers.
## 164 Outbreak 2 of 8 Fretz 2005; the second outbreak in a consequtive series of 3 in a ski chalet.
## 165 Outbreak 3 of 8 Fretz 2005; 3 of 3 consequitive ski chalet outbreaks.
## 166 Outbreak 4 of 8 Fretz 2005; Case number extrapolated from a selection of physicians, schools, and nursing homes; this extroploation was validated via a selection of pharmacy records.
## 167 Outbreak 6 of 8 Fretz 2005; outbreak 1 of 3 associated with hospital and nursing home.
## 168 Outbreak 7 of 8 Fretz 2005; outbreak 2 of 3 associated with hospital/nursinghome.
## 169 Multiple clusters of outbreaks occuring in different departments of the hospital; department specific case numbers and attack rates available, economic a lysis completed as well.
## 170 Improper foodhandling and related hygiene was implicated in this foodborne outbreak at an Israel military base
## 171 Sewage tank overflow into the water supply caused many cases with diverse etiology of illness.
## 172 No source or vehicle of transmission discovered, significant secondary transmission from child to parent
## 173 Outbreak could have been prevented by excluding ill child from play group, proper hygiene did not stop the spread of NoV due to low infectious dose
## 174 incubation, duration of symptoms data available but based on specific wards or healthcare worker vs. patient, cost associated with outbreak also calculated $657,644
## 175 No source found, potentially municiple water supply as it was not tested for viruses'; however no coliform were found in the water.
## 176 Staff and patient specific attack rates mentioned; prolonged NoV outbreak 12/2006 - 06/2007; community based outbreak the initial source; 9 deaths associated with the outbreak all deaths had co-morbidities.
## 177 no stool samples from food handlers, and no genotyping of the NoV
## 178 Novel strain "Basel" identified; similarities with Lordsdale.
## 179 Universtiy foodborne (salad vehicle) outbreak with secondary person-to-person transmission in the dorms; cases were almost entirely freshmen.
## 180 Municipal water taken from Lake Kermajarvi, service station and restaurant in Karvio release treated sewage into lake, GGI only detected in patients, therefore concomitant person-to-person transmission is possibility
## 181 4 seperate school groups all staying at the same hostel for a ski trip became infected with NoV after an index case vomited on the bus ride; aerosolized the virus.
## 182 prolonged NoV outbreak at a rehabilition center in Finland, over a 2.5 month time span (Dec. 1999 Feb. 2000); constantly evolving patient base (every 1-3 weeks)
## 183 outbreak 1 in article; three cases relapsed. One patient died, with gastroenteritis the precipitating event of his fi l illness
## 184 Outbreak consistent with airborne transmission, index case ill during dinner with non-projectile vomiting, significant relationship between distance from vomiter and risk of becoming ill
## 185 secondary cases documented (no case number), propulgation from 1st to 2nd floor, several fatalities, physical dependance and vomitting were among risk factors.
## 186 rapid control measures taken, outbreak mostly affecting elderly ward of hospital
## 187 38 clusters of oyster related NoV outbreaks, all oysters from the same harvesting grounds, info on community outbreak as well next outbreak entered.
## 188 McDonnell outbreak B; sparse information; could be related to oyster outbreak A previously described; secondary transmission is mentioned but no case data available.
## 189 Foodborne transmission could not be verified, but rather was a suspicion; as was the "thin soup" vehicle.
## 190 outbreak took place in 2 waves & affected staff, hostel residents, nursing home residents, visitor & her son who had not been on site; first ill person was a hostel resident who had not left the facility prior to illness
## 191 It is likely that the outbreaks in the three institutions were linked due to transfers of infected residents from one institution to another, early in the outbreak
## 192 longest incubation period in range was not 99, but 168 hrs; adoption of preventative measures stopped spread in 3 wks; secondary cases were family members
## 193 outbreak 1 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 194 NoV was not actually identified in the water system, as the tests were "technically not possible" however NoV was isolated from the cases who all presented with illness at the hospital
## 195 1 of the foodhandlers was still shedding virus 10 days after the convelesence of symptoms.
## 196 Irish tourists in Andorra were found to be infected upon return to Ireland; eating ice in Soldeu, Andorra was the only significant risk for infection; poor clinical testing (1 of 2 samples amplified)
## 197 Chlorine resistant (to a point) NoV outbreak in a swimming pool; implicates the need for strict pool guidlines especially when young children are swimming; also the youngest infected person was 5 months not 0 years.
## 198 Large hospital-wide NoV outbreak in which health care workers were disproportio lly affected.
## 199 Outbreak 1 of 3 Sakon (2) 2005
## 200 Outbreak 2 of 3 Sakon
## 201 Outbreak 3 of 3 Sakon 2005
## 202 0
## 203 11 oncology patients, and 2 family members affected by NoV outbreak;
## 204 0
## 205 0
## 206 0
## 207 Oldest age was 103 but could not enter it
## 208 0
## 209 0
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 outbreak 2 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 226 outbreak 3 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 227 outbreak 4 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 228 outbreak 5 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 229 outbreak 6 of 6 in Table 1; the frozen half-shell oysters (Crassostrea virginica) implicated in this series of outbreaks that occurred between Dec 2003 & Jan 2004 were traced to a specific shipment imported from Shandong, Chi , on 4 November 2003
## 230 0
## 231
## Path2_2
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 C. Jejuni
## 15 0
## 16 0
## 17 Aeromo s hydrophila, S. aureus
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 astrovirus
## 27 0
## 28 ASV
## 29 0
## 30 0
## 31 Staphylococcus Aureus
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 rotavirus, sapovirus
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 Clostridium difficile
## 78 0
## 79 0
## 80 rotavirus genotype G9
## 81 0
## 82 Clostridium perfringens, S. aureus
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 Astrovirus
## 111 0
## 112 Clostridium Perfringens
## 113 Salmonella mbandaka, Campylobacter, Staphylococcus aureus
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Giardia lambia
## 122 0
## 123 0
## 124 0
## 125 Campylobacter sp. and rotavirus
## 126 0
## 127 0
## 128 0
## 129 Campylobacter
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 rotavirus, adenovirus
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 Cryptospiridium, rotavirus, camplobactor
## 172 E. coli O26:H11 (VT1)
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 Clostridium difficile
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 Blastocyst hominis
## 190 rotavirus
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 sapovirus, aichivirus
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## Setting_2
## 1 0
## 2 0
## 3 Clusters related to oysters
## 4 Catered Luncheon
## 5 University Dorm
## 6 Cruise Ship
## 7 Crusie Ship
## 8 Cruise Ship
## 9 Cruise Ship
## 10 Hurricane Katri relief shelter
## 11 temporary shelter
## 12 US vy Aircraft Carrier
## 13 Multiple outbreak settings, primarilly associated with food at festivals, dinners, banquets
## 14 Luncheon
## 15 0
## 16 3 wings
## 17 Restaurant
## 18 Restaurant
## 19 university setting
## 20 Cruise ship
## 21 Consumption of oysters occurred in restaurants and private homes
## 22 SRO Hospital in Langenthal, Switzerland; 229-bed
## 23 hotel
## 24 rehabilitation ward for older people
## 25 Primary School in Wakayama Prefecture
## 26 mother-and-child health clinic
## 27 Saloon
## 28 Research ship
## 29 0
## 30 Care unit of inter l medicine
## 31 0
## 32 0
## 33 Shelter
## 34 canteen at manufacturing company
## 35 University
## 36 University
## 37 University
## 38 Wedding Reception
## 39 Airplane flight
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 Military Hospital
## 59 6 Nursing homes
## 60 school staff luncheon
## 61 sandwich shop/caterer
## 62 sandwich shop/caterer
## 63 Summer Camp
## 64 Cruise Ship
## 65 LTCF
## 66 University Deli
## 67 Hotel
## 68 0
## 69 majority of cases from the nursing home some from the hospital
## 70 Catered wedding banquets
## 71 Royal British fleet ship
## 72 Multiple day care centers all receiving the same catered food
## 73 28-bed mentally infermary
## 74 Cruise ship
## 75 Hotel
## 76 Houseboats on a lake
## 77 VA medical center 357-bed
## 78 Community wide
## 79 AGED-CARE RESIDENTIAL HOSTEL
## 80 City of Apulia
## 81 Cruise Ship
## 82 local canteens of a large company
## 83 diverse picnic and restaurant settings
## 84 0
## 85 extended care unit, ward A
## 86 acute ward with elderly patients
## 87 Cafeteria
## 88 Food catered to events in a village
## 89 0
## 90 Restaurant
## 91 Function, didn't specify
## 92 College
## 93 Restauarant
## 94
## 95
## 96
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 Daycare Center
## 111 0
## 112 Resort
## 113 Bakery
## 114 Cruise Ship
## 115 Family Reunion
## 116 Pediatrics
## 117 Family banquet
## 118 University of Alberta, Psychiatric ward of the
## 119 0
## 120 Jamboree camp
## 121 recreatio l fountain at a park
## 122 10 workplace canteens all with same food
## 123 River rafters on the Grand Canyon
## 124 primary school and nursery
## 125 Holiday resort in Central Italy
## 126 0
## 127 nursery school
## 128 Wedding reception
## 129 Lake
## 130 USS Peleliu assult ship
## 131 USS Constellation ship
## 132 Barbeque
## 133 catered bbq
## 134 0
## 135 Hotel
## 136 capital city, Podgorica
## 137 camp
## 138
## 139 hotel
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Boxed Banquet
## 151 vacation lodges
## 152 0
## 153 Resort Hotel
## 154 Ski Resort
## 155 Pool @ swimming club
## 156 restaurant/caterer
## 157 0
## 158 Hotel
## 159 0
## 160 Catered buffet for an employer
## 161 0
## 162 4 districts: H_rault, Ile de France, Aude and
## 163 Ski chalet
## 164 Ski chalet
## 165 Ski Chalet
## 166 2 communities
## 167 0
## 168 majority of cases from the hospital, some from the nursing home
## 169 176-bed hospital
## 170 Military base
## 171 Ski resort, complete with 2 restaurants, day care, hotel etc.
## 172 Kindergarten
## 173 Private home - infant play group
## 174 John Hopkins Hospital 946 bed,
## 175 Samokov, a region with 35,000 inhabitants in western Bulgaria,
## 176 Tertiary care
## 177 catered chrismtas party
## 178 university hospital 1200-bed tertiary care
## 179 Within a university setting, the freshmen dining hall was implicated
## 180 Hei vesi, Finnish Municipality
## 181 Youth Hostel Salzburg, Austria
## 182 Rehabilitation center
## 183 rehabilitation wards for older people
## 184 Hotel Restaurant
## 185 geriatrict long-term care facility
## 186 district general hospital
## 187 38 seperate clusers at various locations
## 188 Various, community-wide
## 189 Residential care facility
## 190 aged-care facility in metropolitan Adelaide
## 191 two aged care facilities and one hospital in Canberra
## 192 Sabadell Hospital
## 193 0
## 194 Community, Xanthi
## 195 Catered lunch at a manufacturing company
## 196 Multiple clusters from around Andorra, the city of Soldeu and an airplane
## 197 Swimming pool
## 198 Veterans tertiary care 154 bed hospital
## 199 0
## 200 0
## 201 0
## 202 Company
## 203 Pediatric Hematology and Oncology, ChildrenÂ\220s Hospital, University of Bonn,
## 204 Oysters fished from particular bay
## 205 Neo tal ICU
## 206 Airplane
## 207 Long term care facility
## 208 0
## 209 banquet
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 hotel
## 231
## category1 strainothergg2c4 gg2c4 Vomit IncInd SymInd PooledLat
## 1 School/Daycare 0 Yes 1 0 0 0.0
## 2 Foodservice 0 1 0 0 37.0
## 3 Other 0 1 0 0 34.0
## 4 Foodservice 0 1 0 0 33.0
## 5 School/Daycare 0 1 0 0 0.0
## 6 Leisure 0 1 0 0 0.0
## 7 Leisure 0 1 0 0 0.0
## 8 Leisure 0 1 0 0 0.0
## 9 Leisure 0 1 0 0 0.0
## 10 Other 0 1 0 0 0.0
## 11 Leisure 0 Yes 1 0 0 0.0
## 12 Other 0 1 0 0 0.0
## 13 Foodservice 0 0 0 0 34.0
## 14 Foodservice 0 Yes 0 0 0 0.0
## 15 School/Daycare 0 Yes 1 0 0 0.0
## 16 Hospital/Nursi 0 1 0 0 0.0
## 17 Foodservice 0 1 0 0 31.0
## 18 Foodservice 0 1 0 0 32.5
## 19 School/Daycare 0 1 0 0 0.0
## 20 Leisure 0 Yes 0 0 0 0.0
## 21 Other 0 1 0 0 31.0
## 22 Hospital/Nursi 0 Yes 1 0 0 0.0
## 23 Leisure 0 1 0 0 0.0
## 24 Hospital/Nursi 0 1 0 0 0.0
## 25 School/Daycare 0 1 0 0 0.0
## 26 Hospital/Nursi 0 1 0 0 0.0
## 27 Foodservice 0 1 0 0 0.0
## 28 Other 0 Yes 1 0 1 0.0
## 29 Hospital/Nursi 0 Yes 1 0 0 0.0
## 30 Hospital/Nursi 0 Yes 1 0 0 0.0
## 31 Hospital/Nursi 0 1 0 0 0.0
## 32 Hospital/Nursi 0 1 0 0 0.0
## 33 Other 0 1 0 0 0.0
## 34 Foodservice 0 1 0 0 0.0
## 35 School/Daycare 0 1 0 0 0.0
## 36 School/Daycare 0 1 0 0 0.0
## 37 School/Daycare 0 1 0 0 0.0
## 38 Leisure 0 1 0 0 0.0
## 39 Leisure 0 Yes 1 0 0 0.0
## 40 Foodservice 0 1 0 0 0.0
## 41 School/Daycare 0 1 0 0 33.0
## 42 Foodservice 0 1 0 0 0.0
## 43 Foodservice 0 0 0 0 36.0
## 44 Other 0 Yes 1 0 0 0.0
## 45 Leisure 0 Yes 1 0 0 0.0
## 46 Hospital/Nursi 0 1 0 0 0.0
## 47 Daycare 0 0 0 0 0.0
## 48 Nursing home 0 0 0 0 0.0
## 49 Nursing home 0 0 0 0 0.0
## 50 Leisure 0 0 0 0 0.0
## 51 Nursing home 0 0 0 0 0.0
## 52 Foodservice 0 0 0 0 0.0
## 53 Nursing home 0 0 0 0 0.0
## 54 Foodservice 0 0 0 0 0.0
## 55 Nursing home 0 0 0 0 0.0
## 56 Daycare 0 0 0 0 0.0
## 57 Nursing home 0 Yes 1 0 0 0.0
## 58 Other 0 1 0 0 0.0
## 59 Hospital/Nursi 0 Yes 1 0 0 0.0
## 60 Foodservice 0 1 0 0 0.0
## 61 Foodservice 0 1 0 0 0.0
## 62 Foodservice 0 1 0 0 0.0
## 63 Foodservice 0 1 0 0 0.0
## 64 Leisure 0 1 0 0 0.0
## 65 Hospital/Nursi 0 1 0 0 0.0
## 66 Foodservice 0 Yes 1 0 0 0.0
## 67 Foodservice 0 1 0 0 0.0
## 68 Hospital/Nursi 0 Yes 1 0 0 0.0
## 69 Hospital/Nursi 0 Yes 1 0 0 0.0
## 70 Leisure 0 1 0 0 35.0
## 71 Other 0 1 0 0 0.0
## 72 Foodservice 0 1 0 0 34.0
## 73 Hospital/Nursi 0 Yes 1 0 1 0.0
## 74 Leisure 0 1 0 0 0.0
## 75 Leisure 0 1 0 0 0.0
## 76 Leisure 0 1 0 0 0.0
## 77 Hospital/Nursi 0 Yes 1 0 0 0.0
## 78 Other 0 1 0 0 0.0
## 79 Hospital/Nursi 0 1 0 0 67.5
## 80 Other 0 Yes 0 0 0 0.0
## 81 Leisure 0 1 0 0 0.0
## 82 Foodservice 0 1 0 0 41.0
## 83 Other 0 1 0 0 0.0
## 84 Hospital/Nursi 0 1 0 0 0.0
## 85 Hospital/Nursi 0 Yes 0 0 0 0.0
## 86 Hospital/Nursi 0 Yes 0 0 0 0.0
## 87 Foodservice 0 1 0 0 27.0
## 88 Foodservice 0 1 0 0 0.0
## 89 School/Daycare 0 1 0 0 0.0
## 90 Foodservice 0 1 0 0 34.0
## 91 Leisure 0 1 0 0 34.0
## 92 School/Daycare 0 1 0 0 0.0
## 93 Foodservice 0 1 0 0 36.0
## 94 School/Daycare 0 1 0 0 0.0
## 95 Hospital/Nursi 0 Yes 1 0 0 0.0
## 96 Hospital/Nursi 1 Yes 1 0 0 0.0
## 97 Leisure 0 0 0 0 0.0
## 98 Leisure 0 0 0 0 0.0
## 99 Leisure 0 0 0 0 0.0
## 100 Nursing home 0 1 0 0 0.0
## 101 Hospital 0 0 0 0 0.0
## 102 Nursing home 0 1 0 0 0.0
## 103 Nursing home 0 1 0 0 0.0
## 104 Nursing home 0 1 0 0 0.0
## 105 Nursing home 0 1 0 0 0.0
## 106 Nursing home 0 1 0 0 0.0
## 107 Nursing home 0 1 0 0 0.0
## 108 Other 0 1 0 0 0.0
## 109 Other 0 1 0 0 0.0
## 110 School/Daycare 0 1 0 0 0.0
## 111 Foodservice 0 1 0 0 0.0
## 112 Leisure 0 Yes 1 0 0 0.0
## 113 Foodservice 0 1 0 0 0.0
## 114 Leisure 0 1 0 0 0.0
## 115 Leisure 0 1 0 0 0.0
## 116 Hospital/Nursi 0 1 0 1 0.0
## 117 Foodservice 0 1 0 0 0.0
## 118 Hospital/Nursi 0 0 0 0 0.0
## 119 Hospital/Nursi 0 1 0 0 0.0
## 120 Leisure 0 Yes 1 0 0 0.0
## 121 Leisure 0 1 0 0 3.0
## 122 Foodservice 0 1 0 0 0.0
## 123 Leisure 0 1 0 0 0.0
## 124 School/Daycare 0 1 0 0 0.0
## 125 Leisure 0 Yes 0 0 0 0.0
## 126 Hospital/Nursi 0 1 0 0 0.0
## 127 School/Daycare 0 1 0 0 0.0
## 128 Foodservice 0 1 0 0 39.0
## 129 Leisure 0 1 0 0 48.0
## 130 Other 0 1 0 0 0.0
## 131 Other 0 1 0 0 0.0
## 132 Foodservice 0 1 0 0 32.0
## 133 Foodservice 0 1 0 0 39.0
## 134 Hospital/Nursi 0 1 0 0 0.0
## 135 Foodservice 0 1 0 0 34.0
## 136 Other 0 Yes 1 0 0 0.0
## 137 Leisure 0 1 0 0 32.0
## 138 Leisure 0 1 0 0 0.0
## 139 Leisure 0 1 0 0 0.0
## 140 Nursing home 0 0 0 0 0.0
## 141 Hospital 0 0 0 0 0.0
## 142 Leisure 0 0 0 0 0.0
## 143 Hospital 0 0 0 0 0.0
## 144 Daycare 0 0 0 0 0.0
## 145 Daycare 0 0 0 0 0.0
## 146 Nursing home 0 Yes 1 0 0 0.0
## 147 Leisure 0 1 0 0 0.0
## 148 Hospital 0 0 0 0 0.0
## 149 Leisure 0 1 0 0 0.0
## 150 Foodservice 0 1 0 0 0.0
## 151 Leisure 0 1 0 0 0.0
## 152 Unknown 0 1 0 0 0.0
## 153 Leisure 0 1 0 0 0.0
## 154 Leisure 0 1 0 0 0.0
## 155 Leisure 0 1 0 0 3.0
## 156 Foodservice 0 1 0 0 32.0
## 157 School/Daycare 0 1 0 0 0.0
## 158 Leisure 0 Yes 1 0 0 0.0
## 159 Unknown 0 Yes 1 0 0 0.0
## 160 Foodservice 0 1 0 0 31.0
## 161 Unknown 0 Yes 1 1 0 34.0
## 162 Foodservice 0 Yes 1 0 0 34.0
## 163 Leisure 0 1 0 0 0.0
## 164 Leisure 0 1 0 0 0.0
## 165 Leisure 0 1 0 0 0.0
## 166 Other 0 Yes 1 0 0 0.0
## 167 Hospital/Nursi 0 1 0 0 0.0
## 168 Hospital/Nursi 0 Yes 1 0 0 0.0
## 169 Hospital/Nursi 0 Yes 0 0 0 0.0
## 170 Other 0 0 0 0 0.0
## 171 Leisure 0 1 0 0 0.0
## 172 School/Daycare 0 Yes 1 0 0 0.0
## 173 Other 0 Yes 1 0 0 0.0
## 174 Hospital/Nursi 0 Yes 1 0 0 0.0
## 175 Other 0 1 0 0 0.0
## 176 Hospital/Nursi 0 Yes 1 0 0 0.0
## 177 Foodservice 0 1 0 0 31.0
## 178 Hospital/Nursi 0 Yes 1 0 0 0.0
## 179 School/Daycare 0 1 0 0 0.0
## 180 Other 0 Yes 1 0 0 0.0
## 181 Leisure 0 1 0 0 0.0
## 182 Hospital/Nursi 0 1 0 0 0.0
## 183 Hospital/Nursi 0 1 0 1 0.0
## 184 Foodservice 0 1 0 0 0.0
## 185 Hospital/Nursi 0 1 0 0 0.0
## 186 Hospital/Nursi 0 1 0 0 0.0
## 187 Leisure 0 1 0 0 48.0
## 188 Other 0 1 0 0 0.0
## 189 Hospital/Nursi 0 Yes 0 0 0 43.0
## 190 Hospital/Nursi 0 1 0 0 0.0
## 191 Hospital/Nursi 0 1 0 0 0.0
## 192 Hospital/Nursi 0 1 0 0 0.0
## 193 Foodservice 0 1 0 0 0.0
## 194 Other 0 1 0 0 0.0
## 195 Foodservice 0 1 0 0 0.0
## 196 Leisure 0 1 0 0 0.0
## 197 Leisure 0 1 1 0 3.0
## 198 Hospital/Nursi 0 1 0 0 0.0
## 199 Hospital/Nursi 0 Yes 1 0 0 0.0
## 200 Hospital/Nursi 0 Yes 1 0 0 0.0
## 201 Hospital/Nursi 0 Yes 1 0 0 0.0
## 202 Foodservice 0 1 0 0 0.0
## 203 Hospital/Nursi 0 1 0 0 0.0
## 204 Other 0 1 0 0 35.0
## 205 Hospital/Nursi 0 1 0 0 0.0
## 206 Leisure 0 1 0 0 0.0
## 207 Hospital/Nursi 0 Yes 1 0 0 0.0
## 208 Hospital/Nursi 0 1 0 0 0.0
## 209 Foodservice 0 Yes 1 0 0 33.0
## 210 Foodservice 0 Yes 1 0 0 28.0
## 211 Hospital/Nursi 0 Yes 1 0 0 0.0
## 212 Hospital/Nursi 1 Yes 1 0 0 0.0
## 213 Hospital/Nursi 0 1 0 0 0.0
## 214 Hospital/Nursi 1 Yes 1 0 0 0.0
## 215 Leisure 0 Yes 1 0 0 0.0
## 216 Leisure 0 Yes 1 0 0 0.0
## 217 Other 0 Yes 1 0 0 0.0
## 218 Nursing home 0 0 0 0 0.0
## 219 Other 0 0 0 0 0.0
## 220 Hospital 0 Yes 0 0 0 0.0
## 221 Other 0 Yes 0 0 0 0.0
## 222 Other 0 1 0 0 0.0
## 223 Leisure 0 1 0 0 0.0
## 224 Other 0 1 0 0 0.0
## 225 Foodservice 0 1 0 0 0.0
## 226 Foodservice 0 1 0 0 0.0
## 227 Foodservice 0 1 0 0 0.0
## 228 Foodservice 0 1 0 0 0.0
## 229 Foodservice 0 1 0 0 0.0
## 230 Leisure 0 Yes 1 0 0 36.0
## 231 Leisure 0 Yes 1 0 0 0.0
## PooledSym PooledAge IndividualLatent IndividualSymptomatic
## 1 0 0.0 NA
## 2 36 0.0 NA
## 3 37 0.0 NA
## 4 24 0.0 NA
## 5 24 0.0 NA
## 6 0 0.0 NA
## 7 0 0.0 NA
## 8 0 0.0 NA
## 9 0 0.0 NA
## 10 0 0.0 NA
## 11 54 0.0 NA
## 12 37 28.0 NA
## 13 47 0.0 NA
## 14 36 0.0 NA
## 15 0 0.0 NA
## 16 0 0.0 NA
## 17 0 17.0 NA
## 18 43 34.5 NA
## 19 48 0.0 NA
## 20 0 0.0 NA
## 21 36 39.0 NA
## 22 0 0.0 NA
## 23 0 0.0 NA
## 24 0 0.0 NA Y
## 25 0 0.0 NA
## 26 0 0.0 NA
## 27 48 0.0 NA
## 28 0 43.0 NA Y
## 29 48 0.0 NA
## 30 0 0.0 NA
## 31 0 0.0 NA
## 32 0 0.0 NA
## 33 0 0.0 NA
## 34 21 36.0 NA
## 35 58 2.0 NA
## 36 0 0.0 NA
## 37 48 NA NA
## 38 0 0.0 NA
## 39 0 79.0 NA
## 40 0 0.0 NA
## 41 22 0.0 NA
## 42 0 0.0 NA
## 43 35 0.0 NA
## 44 72 0.0 NA
## 45 0 72.0 NA
## 46 0 0.0 NA
## 47 0 0.0 NA
## 48 0 0.0 NA
## 49 0 0.0 NA
## 50 0 0.0 NA
## 51 0 0.0 NA
## 52 0 0.0 NA
## 53 0 0.0 NA
## 54 0 0.0 NA
## 55 0 0.0 NA
## 56 0 0.0 NA
## 57 0 0.0 NA
## 58 0 0.0 NA
## 59 0 0.0 NA
## 60 0 0.0 NA
## 61 0 0.0 NA
## 62 0 0.0 NA
## 63 0 0.0 NA
## 64 0 56.0 NA
## 65 0 0.0 NA
## 66 48 0.0 NA
## 67 24 0.0 NA
## 68 0 0.0 NA
## 69 0 0.0 NA
## 70 4 43.0 NA
## 71 0 0.0 NA
## 72 0 0.0 NA
## 73 12 NA NA
## 74 0 0.0 NA
## 75 0 45.5 NA
## 76 67 68.0 NA
## 77 0 0.0 NA
## 78 0 27.0 NA
## 79 36 83.0 NA
## 80 0 25.0 NA
## 81 0 0.0 NA
## 82 48 0.0 NA
## 83 0 0.0 NA
## 84 0 0.0 NA
## 85 0 0.0 NA
## 86 0 81.0 NA
## 87 0 0.0 NA
## 88 0 43.0 NA
## 89 0 0.0 NA
## 90 54 0.0 NA
## 91 48 0.0 NA
## 92 0 19.0 NA
## 93 48 6.0 NA
## 94 0 0.0 NA
## 95 48 53.0 NA
## 96 36 6.0 NA
## 97 0 0.0 NA
## 98 0 0.0 NA
## 99 0 0.0 NA
## 100 0 0.0 NA
## 101 0 0.0 NA
## 102 0 0.0 NA
## 103 0 0.0 NA
## 104 0 0.0 NA
## 105 0 0.0 NA
## 106 0 0.0 NA
## 107 0 0.0 NA
## 108 0 0.0 NA
## 109 0 0.0 NA
## 110 0 0.0 NA
## 111 0 0.0 NA
## 112 0 0.0 NA
## 113 0 0.0 NA
## 114 0 0.0 NA
## 115 0 12.0 NA
## 116 72 5.0 NA Y
## 117 0 0.0 NA
## 118 0 0.0 NA
## 119 0 0.0 NA
## 120 0 0.0 NA
## 121 0 9.0 NA
## 122 49 0.0 NA
## 123 24 0.0 NA
## 124 48 0.0 NA
## 125 0 0.0 NA
## 126 0 0.0 NA
## 127 0 0.0 NA
## 128 0 0.0 NA
## 129 0 15.5 NA
## 130 0 0.0 NA
## 131 0 0.0 NA
## 132 37 39.0 NA
## 133 44 34.0 NA
## 134 0 0.0 NA
## 135 0 0.0 NA
## 136 0 13.0 NA
## 137 0 11.0 NA
## 138 6 13.0 NA
## 139 0 0.0 NA
## 140 0 0.0 NA
## 141 0 0.0 NA
## 142 0 0.0 NA
## 143 0 0.0 NA
## 144 0 0.0 NA
## 145 0 0.0 NA
## 146 0 0.0 NA
## 147 0 0.0 NA
## 148 0 0.0 NA
## 149 0 0.0 NA
## 150 48 37.0 NA
## 151 48 37.0 NA
## 152 0 0.0 NA
## 153 0 0.0 NA
## 154 0 0.0 NA
## 155 0 7.0 NA
## 156 42 4.0 NA
## 157 36 0.0 NA
## 158 0 0.0 NA
## 159 0 43.0 NA
## 160 48 39.0 NA
## 161 36 45.0 NA
## 162 0 0.0 NA
## 163 0 0.0 NA
## 164 0 0.0 NA
## 165 0 0.0 NA
## 166 0 0.0 NA
## 167 0 0.0 NA
## 168 0 0.0 NA
## 169 0 0.0 NA
## 170 0 0.0 NA
## 171 0 0.0 NA
## 172 0 0.0 NA
## 173 0 0.0 NA
## 174 0 0.0 NA
## 175 0 0.0 NA
## 176 0 0.0 NA
## 177 0 0.0 NA
## 178 0 0.0 NA
## 179 36 18.0 NA
## 180 0 0.0 NA
## 181 48 0.0 NA
## 182 0 0.0 NA
## 183 0 0.0 NA Y
## 184 0 0.0 NA
## 185 0 0.0 NA
## 186 0 0.0 NA
## 187 48 37.0 NA
## 188 0 0.0 NA
## 189 24 74.0 NA
## 190 0 0.0 NA
## 191 0 0.0 NA
## 192 48 0.0 NA
## 193 0 0.0 NA
## 194 0 24.0 NA
## 195 18 0.0 NA
## 196 48 31.0 NA
## 197 0 7.0 NA
## 198 0 0.0 NA
## 199 0 0.0 NA
## 200 0 0.0 NA
## 201 0 0.0 NA
## 202 48 21.0 NA
## 203 0 4.0 NA
## 204 48 0.0 NA
## 205 0 0.0 NA
## 206 0 0.0 NA
## 207 0 0.0 NA
## 208 0 0.0 NA
## 209 96 43.0 NA
## 210 45 0.0 NA
## 211 0 0.0 NA
## 212 67 43.0 NA
## 213 58 48.0 NA
## 214 29 49.0 NA
## 215 0 0.0 NA
## 216 0 0.0 NA
## 217 0 22.0 NA
## 218 0 0.0 NA
## 219 0 0.0 NA
## 220 0 0.0 NA
## 221 0 0.0 NA
## 222 0 0.0 NA
## 223 0 0.0 NA
## 224 0 0.0 NA
## 225 0 0.0 NA
## 226 0 0.0 NA
## 227 0 0.0 NA
## 228 0 0.0 NA
## 229 0 0.0 NA
## 230 0 0.0 NA
## 231 48 63.0 NA
I notice that the CDC authors a lot of cases. I am going to explore this a bit, as well as other data (years for example)
#here I created, deleted, and inspected a few different variables over some time periods that varied. I also opened the large norodata_codebook.doc in Microsoft Word to read.
year2010 <- filter(raw_data, OBYear == 2010)
str(year2010)## 'data.frame': 16 obs. of 139 variables:
## $ id : int 879 862 863 864 865 903 904 905 906 907 ...
## $ Author : Factor w/ 217 levels " kagawa-Okamoto",..: 137 32 32 32 32 48 48 48 48 48 ...
## $ Pub_Year : int 2011 2011 2011 2011 2011 2010 2010 2010 2010 2010 ...
## $ pubmedid : int 21537761 21460507 21460507 21460507 21460507 20158982 20158982 20158982 20158982 20158982 ...
## $ EpiCurve : Factor w/ 3 levels "","N","Y": 2 2 2 2 2 2 2 2 2 2 ...
## $ TDComment : Factor w/ 11 levels "","Just norovirus outbreak",..: 1 1 1 1 1 11 1 1 1 1 ...
## $ AHComment : Factor w/ 3 levels "","confirmed",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans1 : Factor w/ 6 levels "Environmental",..: 5 5 5 5 5 2 2 2 2 2 ...
## $ Trans1_O : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Trans2 : Factor w/ 6 levels " (not applicable)",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans2_O : Factor w/ 2 levels "0","Direct contact with diarrhea or vomitus": 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans3 : Factor w/ 6 levels " (not applicable)",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Trans3_O : Factor w/ 2 levels "0","smoking": 1 1 1 1 1 1 1 1 1 1 ...
## $ Risk1 : num 0 62 70 61 64 0 0 0 0 0 ...
## $ Risk2 : num NA NA NA NA NA NA NA NA NA NA ...
## $ RiskAll : num 0 62 70 61 64 NA NA NA NA NA ...
## $ Cases1 : int 6390 11 14 3 15 62 26 50 10 16 ...
## $ Cases2 : int NA NA NA NA NA NA NA NA NA NA ...
## $ CasesAll : int 6390 11 14 3 15 62 26 50 10 16 ...
## $ Rate1 : num NA 17.74 20 4.92 23.44 ...
## $ Rate2 : num NA NA NA NA NA NA NA NA NA NA ...
## $ RateAll : num 0 17.74 20 4.92 23.44 ...
## $ Hospitalizations : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Deaths : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Vehicle_1 : Factor w/ 126 levels "0","Aerosolized vomit",..: 1 1 1 1 1 60 60 60 60 60 ...
## $ Veh1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 4 4 4 4 4 ...
## $ Veh1_D_1 : Factor w/ 163 levels "0","aerosilized",..: 1 1 1 1 1 94 94 94 94 94 ...
## $ Veh2 : Factor w/ 2 levels "No","Yes": 1 1 1 1 1 1 1 1 1 1 ...
## $ Veh2_D_1 : Factor w/ 63 levels "","0","accommodation environment on day of arrival",..: 2 2 2 2 2 1 1 1 1 1 ...
## $ Veh3 : Factor w/ 2 levels "No","Yes": 1 1 1 1 1 1 1 1 1 1 ...
## $ Veh3_D_1 : Factor w/ 19 levels "","0","Brandy S ps",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ PCRSect : Factor w/ 4 levels "Both","Capsid",..: 4 1 1 1 1 4 4 4 4 4 ...
## $ OBYear : Factor w/ 23 levels "0","1983","1990",..: 23 23 23 23 23 23 23 23 23 23 ...
## $ Hemisphere : Factor w/ 3 levels "Northern","Southern",..: 2 1 1 1 1 1 1 1 1 1 ...
## $ season : Factor w/ 5 levels "","Fall","Spring",..: 4 5 5 5 5 5 5 5 5 5 ...
## $ MeanI1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianI1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_I1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_I1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_D1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_D1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanA1 : num NA NA NA NA NA NA NA NA NA NA ...
## $ MedianA1 : num 2 NA NA NA NA NA NA NA NA NA ...
## $ Range_Y_A1 : Factor w/ 49 levels "<1","0","0.167",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ Range_O_A1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ Action1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 4 4 4 4 4 ...
## $ Action2_1 : Factor w/ 186 levels "","\tContami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food"| __truncated__,..: 5 5 5 5 5 132 132 132 132 132 ...
## $ Secondary : Factor w/ 3 levels "","No","Yes": 2 2 2 2 2 2 2 2 2 2 ...
## $ MeanI2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianI2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_I2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_I2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanD2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianD2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_S_D2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_L_D2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Mea.2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Media.2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_Y_A2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Range_O_A2 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ Comments_1 : Factor w/ 989 levels ""," turally recombi nt GII NV outbreak occurred in infant home in Sapporo, Japan where only residents who were up "| __truncated__,..: 63 435 445 454 463 400 513 581 639 676 ...
## $ Path1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 1 4 4 4 1 ...
## $ Path2_1 : Factor w/ 59 levels "","0","adenovirus",..: 2 2 2 2 2 1 30 29 29 1 ...
## $ Country : Factor w/ 22 levels "Australia","Austria",..: 17 17 17 17 17 7 7 7 7 7 ...
## $ Category : Factor w/ 12 levels "Daycare","Foodservice",..: 12 3 3 3 3 8 8 8 8 8 ...
## $ State : Factor w/ 36 levels "0","1","14 states: CA, UT, KS, WI, IL, IN, OH, GA, FL, NC, VA, WV, NY, PA,",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Setting_1 : Factor w/ 388 levels "\tPsychiatric Care Center adjoined",..: 3 359 301 207 301 238 238 238 238 238 ...
## $ StartMonth : int 1 1 1 1 1 1 1 1 1 1 ...
## $ EndMonth : int 3 1 1 1 2 0 0 0 0 0 ...
## $ GGA : int 2 0 0 0 0 2 2 2 2 2 ...
## $ CA : int 0 0 0 0 0 0 0 0 0 0 ...
## $ SA : Factor w/ 123 levels "0","100% identity w/AB05308, 96% identity w/MOH",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_GGA : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_CA : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_SA : Factor w/ 27 levels "0","ARG320-USA",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SA_resolved_from : Factor w/ 9 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGB : int 0 0 0 0 0 1 1 1 1 1 ...
## $ CB : Factor w/ 18 levels "0","1","10","12",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SB : Factor w/ 38 levels "0","93.7% homology w/Saitama",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_GGB : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_CB : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_SB : Factor w/ 14 levels "0","Birmingham",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SB_resolved_from : Factor w/ 6 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGC : int 0 0 0 0 0 0 0 0 0 0 ...
## $ CC : int 0 0 0 0 0 0 0 0 0 0 ...
## $ SC : Factor w/ 25 levels "0","95% homology with Sundsvall",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_ggc : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_cc : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_sc : Factor w/ 5 levels "0","Fayetteville",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SC_resolved_from : Factor w/ 4 levels "","abstraction",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ GGD : int 0 0 0 0 0 0 0 0 0 0 ...
## $ CD : Factor w/ 13 levels "0","1","12","14",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ SD : Factor w/ 8 levels "0","Amsterdam",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ new_ggd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_cd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ new_sd : int 0 0 0 0 0 0 0 0 0 0 ...
## $ SD_resolved_from : logi NA NA NA NA NA NA ...
## [list output truncated]
## [1] 0 62 70 61 64 NA
## [1] 0.000000 17.741935 20.000000 4.918033 23.437500 NA
#I ended up ditching plotting this. Way to few samples to start (only 6 from 2010)
#plot(year2010, aes(RiskAll, RateAll))
#playing with this, looks like there are only 6 per year or so outbreaks per year anyway
year2000 <- filter(raw_data, OBYear == 2000)
head(year2000)## id Author Pub_Year pubmedid EpiCurve TDComment AHComment
## 1 194 Hamano 2005 16121370 N
## 2 232 Holtby 2001 12109400 Y
## 3 410 Love 2002 12211579 Y
## 4 631 Reuter 2002 12226827 N
## 5 632 Reuter 2002 12226827 N
## 6 633 Reuter 2002 12226827 N
## Trans1 Trans1_O Trans2 Trans2_O Trans3
## 1 Foodborne 0 (not applicable) 0 (not applicable)
## 2 Foodborne 0 (not applicable) 0 (not applicable)
## 3 Foodborne 0 Person to Person 0 Environmental
## 4 Person to Person 0 (not applicable) 0 (not applicable)
## 5 Person to Person 0 Waterborne 0 Foodborne
## 6 Person to Person 0 (not applicable) 0 (not applicable)
## Trans3_O Risk1 Risk2 RiskAll Cases1 Cases2 CasesAll Rate1 Rate2
## 1 0 113 NA 113 57 NA 57 50.00000 NA
## 2 0 72 NA 72 47 4 51 65.27778 NA
## 3 0 0 NA 0 116 NA 116 NA NA
## 4 0 0 NA 0 35 NA 35 NA NA
## 5 0 907 NA 907 253 NA 253 27.89416 NA
## 6 0 82 NA 82 28 NA 28 34.14634 NA
## RateAll Hospitalizations Deaths Vehicle_1 Veh1 Veh1_D_1
## 1 50.00000 0 0 0 Unspecified 0
## 2 65.27778 0 0 salad Yes salad
## 3 0.00000 0 0 Coleslaw Yes Coleslaw
## 4 0.00000 NA NA 0 Yes Infected Persons
## 5 27.89416 NA NA 0 Yes Infected Persons
## 6 34.14634 NA NA 0 Yes Infected Persons
## Veh2 Veh2_D_1 Veh3 Veh3_D_1 PCRSect OBYear
## 1 No 0 No 0 Both 2000
## 2 No 0 No 0 Unspecified 2000
## 3 Yes Infected Persons Yes Contami ted Surfaces Unspecified 2000
## 4 No 0 No 0 Polymerase 2000
## 5 No 0 No 0 Polymerase 2000
## 6 No 0 No 0 Polymerase 2000
## Hemisphere season MeanI1 MedianI1 Range_S_I1 Range_L_I1 MeanD1 MedianD1
## 1 Northern Fall 0 0 0 0 0 0
## 2 Northern Fall 32 33 8 60 43 0
## 3 Northern Fall 0 0 0 0 0 0
## 4 Northern Fall 0 0 0 0 0 0
## 5 Northern Fall 0 0 0 0 0 0
## 6 Northern Fall 0 0 0 0 0 0
## Range_S_D1 Range_L_D1 MeanA1 MedianA1 Range_Y_A1 Range_O_A1 Action1
## 1 0 0 NA NA 15 81 Unspecified
## 2 12 84 33 36 14 53 Yes
## 3 0 0 NA NA 0 0 Yes
## 4 0 0 NA NA 0 0 Unspecified
## 5 0 0 NA NA 0 0 Unspecified
## 6 0 0 NA NA 0 0 Unspecified
## Action2_1
## 1 0
## 2 kitchen was thoroughly cleaned, demonstration of infective link b/n chef and cases stressed food hygiene to staff
## 3 Sick policy implimented, hand hygiene emphasized, hotel was closed for 8 hours for extensive cleaning
## 4 0
## 5 0
## 6 0
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 No 0 0 0 0 0 0
## 2 Yes 0 0 0 0 0 0
## 3 No 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## Comments_1
## 1 Outbreak 15 out of 46
## 2 chef that prepared salads had been sick and came back to work after symptom-free for 48 h
## 3 outbreak among three groups at a hotel in Virginia
## 4 10 of 14
## 5 11 of 14, four types of transmission were documented in paper, "aerosolized" transmission not recorded in database for lack of space
## 6 12 of 14
## Path1 Path2_1 Country Category State Setting_1
## 1 Unspecified 0 Japan Foodservice 0 Wedding Banquet
## 2 No 0 Other Foodservice 0 restaurant
## 3 No 0 USA Leisure VA Hotel
## 4 No 0 Other Nursing Home 0 Elderly Home
## 5 No 0 Other School 0 Primary School
## 6 No 0 Other Nursing Home 0 Elderly Home
## StartMonth EndMonth GGA CA SA
## 1 10 0 1 0 Chiba
## 2 11 11 1 0 meanwood/91/UK
## 3 11 11 2 0 100% identity w/AB05308, 96% identity w/MOH
## 4 9 0 2 0 Hawaii
## 5 10 0 1 0 Southampton
## 6 10 0 2 0 Hawaii
## new_GGA new_CA new_SA SA_resolved_from GGB CB SB new_GGB
## 1 1 4 Chiba-JPN00 Zheng 0 0 0 0
## 2 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0
## 4 2 1 Hawaii-USA94 Zheng 0 0 0 0
## 5 1 2 Southampton abstraction 2 0 Melksham 2
## 6 2 1 Hawaii-USA94 Zheng 0 0 0 0
## new_CB new_SB SB_resolved_from GGC CC SC new_ggc new_cc new_sc
## 1 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0
## 5 2 Msham-GBR95 Zheng 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0
## SC_resolved_from GGD CD SD new_ggd new_cd new_sd SD_resolved_from
## 1 0 0 0 0 0 0 NA
## 2 0 0 0 0 0 0 NA
## 3 0 0 0 0 0 0 NA
## 4 0 0 0 0 0 0 NA
## 5 0 0 0 0 0 0 NA
## 6 0 0 0 0 0 0 NA
## StrainOther strainother_rc gge ce se SE_resolved_from ggf cf sf ggg cg
## 1 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0
## sg ggh ch sh ggi ci si ggj cj sj Country2 Veh1_D_2 Veh2_D_2
## 1 0 0 0 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0 United Kingdom Salad 0
## 3 0 0 0 0 0 0 0 0 0 0 0 coleslaw guest bathroom
## 4 0 0 0 0 0 0 0 0 0 0 Hungary 0 0
## 5 0 0 0 0 0 0 0 0 0 0 Hungary 0 0
## 6 0 0 0 0 0 0 0 0 0 0 Hungary 0 0
## Veh3_D_2
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## Action2_2
## 1 0
## 2 kitchen spot checks and enviornmental studies to make recommendations for continual cleaning etc.
## 3 staff told not to work for 1 day after asymptomatic; staff instructed on hygiene & hand washing; hotel closed 8 h for thorough cleaning of food service areas & rooms, new guests not accepted til then; cold food requiring hand-prep excluded from menu
## 4 0
## 5 0
## 6 0
## Comments_2
## 1 outbreak no 15 hamano 2005
## 2 Restaurant based salad infected NoV outbreak; abnormally high levels of E. coli in kitchen enviornmental studies, no other pathogens indicated in the cases.
## 3 outbreak occurred for 3 groups of guests at a hotel
## 4 Outbreak 10 of 14 Reuter
## 5 Outbreak 11 of 14 Reuter
## 6 Outbreak 12 of 14 Reuter
## Path2_2 Setting_2 category1 strainothergg2c4
## 1 0 Restaurant - wedding banquet Foodservice 0
## 2 0 Restaurant Foodservice 0
## 3 0 hotel Leisure 0
## 4 0 0 Hospital/Nursi 0
## 5 0 Primary school School/Daycare 0
## 6 0 0 Hospital/Nursi 0
## gg2c4 Vomit IncInd SymInd PooledLat PooledSym PooledAge IndividualLatent
## 1 0 0 0 0.0 0 0.0 NA
## 2 1 0 0 32.5 43 34.5 NA
## 3 1 0 0 0.0 0 0.0 NA
## 4 1 0 0 0.0 0 0.0 NA
## 5 1 0 0 0.0 0 0.0 NA
## 6 1 0 0 0.0 0 0.0 NA
## IndividualSymptomatic
## 1
## 2
## 3
## 4
## 5
## 6
## id Author Pub_Year pubmedid EpiCurve TDComment AHComment
## 1 17 Becker 2000 11071673 Y
## 2 76 CDC 2000 10738840 Y
## 3 77 CDC 2000 10738840 Y
## 4 143 Ewald 2000 10812750 Y
## 5 274 Iritani 2000 10878058 N
## 6 275 Iritani 2000 10878058 N
## Trans1 Trans1_O Trans2 Trans2_O Trans3
## 1 Foodborne 0 Person to Person 0 (not applicable)
## 2 Foodborne 0 (not applicable) 0 (not applicable)
## 3 Person to Person 0 (not applicable) 0 (not applicable)
## 4 Waterborne 0 Foodborne 0 (not applicable)
## 5 Foodborne 0 (not applicable) 0 (not applicable)
## 6 Unknown 0 (not applicable) 0 (not applicable)
## Trans3_O Risk1 Risk2 RiskAll Cases1 Cases2 CasesAll Rate1 Rate2
## 1 0 108 NA 108 43 22 65 39.81481 NA
## 2 0 509 NA 509 191 NA 191 37.52456 NA
## 3 0 36 NA 36 19 NA 19 53.00000 NA
## 4 0 38 NA 38 13 NA 13 34.21053 NA
## 5 0 53 NA 53 33 NA 33 62.26415 NA
## 6 0 0 NA 0 2 NA 2 NA NA
## RateAll Hospitalizations Deaths Vehicle_1 Veh1
## 1 39.81481 0 0 Boxed Lunch Yes
## 2 37.52456 0 0 Potato Salad Yes
## 3 53.00000 0 0 0 Yes
## 4 34.21053 NA NA 0 Yes
## 5 62.26415 0 0 0 Yes
## 6 0.00000 0 0 0 Unknown
## Veh1_D_1 Veh2 Veh2_D_1 Veh3 Veh3_D_1
## 1 Turkey Sandwich in boxed lunch Yes Football players No 0
## 2 Potato Salad No 0 No 0
## 3 Infected Student No 0 No 0
## 4 Contami ted Tap Water No 0 No 0
## 5 Food No 0 No 0
## 6 0 No 0 No 0
## PCRSect OBYear Hemisphere season MeanI1 MedianI1 Range_S_I1
## 1 Polymerase 1998 Northern Fall 0 37 0
## 2 Unspecified 1999 Northern Fall 0 33 6
## 3 Unspecified 1999 Northern Fall 0 0 0
## 4 Unspecified 1998 Southern Fall 0 46 0
## 5 Both 1998 Northern Fall 0 0 0
## 6 Both 1998 Northern Fall 0 0 0
## Range_L_I1 MeanD1 MedianD1 Range_S_D1 Range_L_D1 MeanA1 MedianA1
## 1 0 0 36 0 0 NA NA
## 2 96 0 24 5 120 NA NA
## 3 0 24 0 4 33 NA NA
## 4 0 0 36 0 0 NA NA
## 5 0 0 0 0 0 NA NA
## 6 0 0 0 0 0 NA NA
## Range_Y_A1 Range_O_A1 Action1 Action2_1
## 1 0 0 Unspecified 0
## 2 0 0 Unspecified 0
## 3 0 0 Unspecified 0
## 4 22 61 Yes Water line was flushed regularly
## 5 0 0 Unspecified 0
## 6 0 0 Unspecified 0
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 Yes 0 0 0 0 0 0
## 2 No 0 0 0 0 0 0
## 3 No 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## Comments_1
## 1 Secondary cases include both persons from NC and FL, some secondary cases were included in # at risk of primary infection
## 2 Outbreak 1 of 2, Cases include all employees and restaruant patrons that presented, attack rates differed in groups
## 3 Outbreak 2 of 2, "primary cases" include index cases and secondary cases, "secondary cases" include tertiary and quatery cases
## 4 Only visiters to Aborigi l community were affected, possible Aborigi l immunity
## 5 Outbreak 40 of 47, limited information
## 6 Outbreak 41 of 47, limited information
## Path1 Path2_1 Country Category State
## 1 No 0 USA Foodservice NC, FL
## 2 No 0 USA Foodservice AK
## 3 No 0 USA School WI
## 4 Yes Campylobacter jejuni Other Foodservice 0
## 5 Unspecified 0 Japan Foodservice 0
## 6 Unspecified 0 Japan Unknown 0
## Setting_1 StartMonth EndMonth GGA CA SA
## 1 Boxed lunch, football game 9 9 1 0 Thistle Hall 1/91
## 2 Luncheon and Restaruant 11 11 0 0 0
## 3 College Dorm 11 12 0 0 0
## 4 Catered Meal 4 4 0 0 Camberwell
## 5 Restaurant 11 0 0 0 0
## 6 0 11 0 2 0 0
## new_GGA new_CA new_SA SA_resolved_from GGB CB SB new_GGB new_CB
## 1 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 2 4 CBW94-AUS Zheng 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0
## new_SB SB_resolved_from GGC CC SC new_ggc new_cc new_sc SC_resolved_from
## 1 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0
## GGD CD SD new_ggd new_cd new_sd SD_resolved_from StrainOther
## 1 0 0 0 0 0 0 NA 0
## 2 0 0 0 0 0 0 NA 0
## 3 0 0 0 0 0 0 NA 0
## 4 0 0 0 0 0 0 NA 0
## 5 0 0 0 0 0 0 NA 0
## 6 0 0 0 0 0 0 NA 0
## strainother_rc gge ce se SE_resolved_from ggf cf sf ggg cg sg ggh ch sh
## 1 0 0 0 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0 0 0 0
## ggi ci si ggj cj sj Country2 Veh1_D_2 Veh2_D_2
## 1 0 0 0 0 0 0 0 Boxed Lunch 0
## 2 0 0 0 0 0 0 0 catered luncheon, potatoe salad 0
## 3 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 Australia 0 0
## 5 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0
## Veh3_D_2 Action2_2 Comments_2 Path2_2
## 1 0 0 0 0
## 2 0 0 0 0
## 3 0 0 0 0
## 4 0 0 0 C. Jejuni
## 5 0 0 Outbreak 40 of 47 Iritani 2000 0
## 6 0 0 Outbreak 41 of 47 Iritani 2000 0
## Setting_2 category1 strainothergg2c4 gg2c4 Vomit IncInd
## 1 0 Foodservice 0 1 0
## 2 Catered Luncheon Foodservice 0 1 0
## 3 University Dorm School/Daycare 0 1 0
## 4 Luncheon Foodservice 0 Yes 0 0
## 5 Restaurant Foodservice 0 1 0
## 6 0 Unknown 0 1 0
## SymInd PooledLat PooledSym PooledAge IndividualLatent
## 1 0 37 36 0 NA
## 2 0 33 24 0 NA
## 3 0 0 24 0 NA
## 4 0 0 36 0 NA
## 5 0 0 0 0 NA
## 6 0 0 0 0 NA
## IndividualSymptomatic
## 1
## 2
## 3
## 4
## 5
## 6
## id Author Pub_Year pubmedid EpiCurve TDComment AHComment
## 1 74 CDC 1994 8202078 N
## 2 75 CDC 1993 8246858 Y
## 3 76 CDC 2000 10738840 Y
## 4 77 CDC 2000 10738840 Y
## 5 83 CDC 2002 12530708 Y
## 6 84 CDC 2002 12530708 Y
## Trans1 Trans1_O Trans2 Trans2_O Trans3
## 1 Foodborne 0 (not applicable) 0 (not applicable)
## 2 Foodborne 0 (not applicable) 0 (not applicable)
## 3 Foodborne 0 (not applicable) 0 (not applicable)
## 4 Person to Person 0 (not applicable) 0 (not applicable)
## 5 Unspecified 0 (not applicable) 0 (not applicable)
## 6 Foodborne 0 Person to Person 0 (not applicable)
## Trans3_O Risk1 Risk2 RiskAll Cases1 Cases2 CasesAll Rate1
## 1 0 71.42857 NA 71.42857 45 NA 45 63.00000
## 2 0 0.00000 NA 0.00000 180 4 184 NA
## 3 0 509.00000 NA 509.00000 191 NA 191 37.52456
## 4 0 36.00000 NA 36.00000 19 NA 19 53.00000
## 5 0 0.00000 NA 0.00000 704 NA 704 NA
## 6 0 2925.00000 NA 2925.00000 369 NA 369 12.61538
## Rate2 RateAll Hospitalizations Deaths Vehicle_1 Veh1
## 1 NA 63.00000 10 0 Oysters Yes
## 2 NA 0.00000 3 0 Oysters Yes
## 3 NA 37.52456 0 0 Potato Salad Yes
## 4 NA 53.00000 0 0 0 Yes
## 5 NA 0.00000 0 0 0 Unspecified
## 6 NA 12.61538 0 0 embarkation lunch Yes
## Veh1_D_1 Veh2 Veh2_D_1 Veh3 Veh3_D_1 PCRSect OBYear
## 1 Oysters No 0 No 0 Unspecified 1993
## 2 Oysters No 0 No 0 Unspecified 1993
## 3 Potato Salad No 0 No 0 Unspecified 1999
## 4 Infected Student No 0 No 0 Unspecified 1999
## 5 0 No 0 No 0 Unspecified 2002
## 6 embarkation lunch Yes Infected persons No 0 Unspecified 2002
## Hemisphere season MeanI1 MedianI1 Range_S_I1 Range_L_I1 MeanD1 MedianD1
## 1 Northern Fall 0 31 2 69 0 48
## 2 Northern Fall 0 34 0 0 0 37
## 3 Northern Fall 0 33 6 96 0 24
## 4 Northern Fall 0 0 0 0 24 0
## 5 Northern Fall 0 0 0 0 0 0
## 6 Northern Fall 0 0 0 0 0 0
## Range_S_D1 Range_L_D1 MeanA1 MedianA1 Range_Y_A1 Range_O_A1 Action1
## 1 10 168 NA NA 0 0 Yes
## 2 0 0 NA NA 0 0 Yes
## 3 5 120 NA NA 0 0 Unspecified
## 4 4 33 NA NA 0 0 Unspecified
## 5 0 0 NA NA 0 0 Yes
## 6 0 0 NA NA 0 0 Yes
## Action2_1
## 1 Oyster harvesting area was cloased for seven days
## 2 Harvest area closed, oysters were recalled, warning issued to consumers
## 3 0
## 4 0
## 5 Dissinfection of ship, quarentine, cancelation of further voyages for 10 days
## 6 Reinforced sanitation measures, excluded ill foodhandlers from work
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 No 0 0 0 0 0 0
## 2 Yes 0 0 0 0 0 0
## 3 No 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## Comments_1
## 1 Outbreak from oysters collected in one bay off the coast of FL, no outbreak setting specified, number at risk is unclear
## 2 Multistate outbreak caused by oysters from LA, cases are listed as "at least 180", investigation ongoing at date of publication
## 3 Outbreak 1 of 2, Cases include all employees and restaruant patrons that presented, attack rates differed in groups
## 4 Outbreak 2 of 2, "primary cases" include index cases and secondary cases, "secondary cases" include tertiary and quatery cases
## 5 Outbreak 2 of 5, attack rate applys to passagers from cruise 1, cases includes passengers and crew from all 3 voyages
## 6 Outbreak 3 of 5, attack rates from survey used to calulate cases (combined employees and passengers)
## Path1 Path2_1 Country Category State
## 1 Unspecified 0 USA Unspecified FL
## 2 Unspecified 0 USA Other LA, MD, MS, NC
## 3 No 0 USA Foodservice AK
## 4 No 0 USA School WI
## 5 Unspecified 0 USA Leisure WA, FL
## 6 Unspecified 0 Multiple Leisure FL
## Setting_1 StartMonth EndMonth GGA CA SA
## 1 0 11 11 0 0 0
## 2 Many, family dinner to large festival 11 11 0 0 0
## 3 Luncheon and Restaruant 11 11 0 0 0
## 4 College Dorm 11 12 0 0 0
## 5 Cruise Ship 10 0 0 0 0
## 6 Cruise Ship 9 10 0 0 0
## new_GGA new_CA new_SA SA_resolved_from GGB CB SB new_GGB new_CB new_SB
## 1 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0
## SB_resolved_from GGC CC SC new_ggc new_cc new_sc SC_resolved_from GGD CD
## 1 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0
## SD new_ggd new_cd new_sd SD_resolved_from StrainOther strainother_rc gge
## 1 0 0 0 0 NA 0 0 0
## 2 0 0 0 0 NA 0 0 0
## 3 0 0 0 0 NA 0 0 0
## 4 0 0 0 0 NA 0 0 0
## 5 0 0 0 0 NA 0 0 0
## 6 0 0 0 0 NA 0 0 0
## ce se SE_resolved_from ggf cf sf ggg cg sg ggh ch sh ggi ci si ggj cj sj
## 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
## Country2 Veh1_D_2 Veh2_D_2 Veh3_D_2
## 1 0 Oysters 0 0
## 2 0 Oyster 0 0
## 3 0 catered luncheon, potatoe salad 0 0
## 4 0 0 0 0
## 5 0 0 0 0
## 6 USA, Caribbean 0 0 0
## Action2_2
## 1 closed shellfish harvesting area of apalachicola bay dec 1-7
## 2 harvest area closure, oyster recall, release of HAN
## 3 0
## 4 0
## 5 cleaning of ship
## 6 improved sanitization, exclusion of ill foodservice workers from the workplace
## Comments_2 Path2_2 Setting_2 category1
## 1 0 0 0 Unknown
## 2 0 0 Clusters related to oysters Other
## 3 0 0 Catered Luncheon Foodservice
## 4 0 0 University Dorm School/Daycare
## 5 crusie ship B 0 Cruise Ship Leisure
## 6 cruise ship C 0 Crusie Ship Leisure
## strainothergg2c4 gg2c4 Vomit IncInd SymInd PooledLat PooledSym PooledAge
## 1 0 1 0 0 31 48 0
## 2 0 1 0 0 34 37 0
## 3 0 1 0 0 33 24 0
## 4 0 1 0 0 0 24 0
## 5 0 1 0 0 0 0 0
## 6 0 1 0 0 0 0 0
## IndividualLatent IndividualSymptomatic
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
Let’s assume that our main outcome of interest is the fraction of individuals that become infected in a given outbreak. The data reports that outcome (called RateAll), but we’ll also compute it ourselves so that we can practice creating new variables. To do so, take a look at the data (maybe peek at the Codebook) and decide which of the existing variables you should use to compute the new one. This new outcome variable will be added to the data frame.
Knowing this, some important variables in the codebook are: RateAll = (secondary cases + primary cases/persons at risk)*100
Cases1 = Total number of suspected primary cases Cases2 = Total number of suspected secondary cases CasesAll Total number of suspected cases, including both primary and secondary cases
Rate1 = (primary cases/persons at risk)100 Rate2 = (secondary cases/persons at risk)100 RiskAll = Total number of persons at risk of being a primary or secondary case
# Use the `mutate()` function from the `dplyr` package to create a new column with this value. Call the new variable `fracinf`.
# This involves the variables we listed above, as read from the codebook. Taking a look at a few here:
head(raw_data$Cases1)## [1] 15 43 27 4 15 6
## [1] NA 22 NA NA NA NA
## [1] 0.00000 39.81481 20.76923 100.00000 60.00000 75.00000
#Adding a variable to a new data set from the original raw_data set; the new variable being fracinf and the data set being added_column
added_column <- raw_data %>%
dplyr::mutate(fracinf =(CasesAll/RiskAll)*100)
head(added_column$fracinf)## [1] Inf 60.18519 20.76923 100.00000 60.00000 75.00000
#d <- data_raw %>% dplyr::mutate(FILL HERE)
#my 'd' for this portion of the exercise is added_columnNote the notation dplyr:: in front of mutate. This is not strictly necessary, but it helps in 2 ways. First, this tells the reader explicitly from which package the function comes. This is useful for quickly looking at the help file of the function, or if we want to adjust which packages are loaded/used. It also avoids occasional confusion if a function exists more than once (e.g. filter exists both in the stats and dplyr package). If the package is not specified, R takes the function from the package that was loaded last. This can sometimes produce strange error messages. I thus often (but not always) write the package name in front of the function.
As you see in the Rmd file, the previous text box is created by placing texts between the ::: symbols and specifying some name. This allows you to apply your own styling to specific parts of the text. You define your style in a css file (here called customstyles.css), and you need to list that file in the _site.yml file. The latter file also lets you change the overall theme. You can choose from the library of free Bootswatch themes.
Use both text summaries and plots to take a look at the new variable you created to see if everything looks ok or if we need further cleaning.
#Write code that takes a look at the values of the `fracinf` variable you created. Look at both text summaries and a figure.
glimpse(added_column$fracinf)## num [1:1022] Inf 60.2 20.8 100 60 ...
## num [1:1022] 0 39.8 20.8 100 60 ...
#Comparing it to RateAll, we have the main part of the calculation completed similarly
#Summaries seem to differ by the quartile, possibly due to all of the NAs?
summary(added_column$fracinf)## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 0.3995 28.8324 63.0789 Inf Inf Inf 120
## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 0.00 0.00 15.28 26.65 48.91 105.00 108
#The plots of each individual variable versus RiskAll looks almost identical. I have infinity calculated where the answer for RateAll is 0. Since (CasesAll/RiskAll)*100 makes my fracinf variable, I am suspicious of the RiskAll variable.
added_column %>%
ggplot(aes(RiskAll, RateAll)) + geom_point()## Warning: Removed 120 rows containing missing values (geom_point).

## Warning: Removed 120 rows containing missing values (geom_point).

We notice there are NAs in this variable and the distribution is not normal. The latter is somewhat expected since our variable is a proportion, so it has to be between 0 and 1. There are also a lot of infinite values. Understand where they come from.
Let’s take a look at the RateAll variable recorded in the dataset and compare it to ours. First, create a plot that lets you quickly see if/how the variables differ.
# Plot one variable on the x axis, the other on the y axis
# also plot the difference of the 2 variables
# make sure you adjust so both are in the same units
#Comparing RateAll to our newly created variable fracinf, we can see an almost perfect positive linear relationship, so the majority of our calculated variables match that of RateAll. If we don't specificy our code line to remove NA variables, the ggplot will automatically remove those missing values with geom_point(), which happens to be 120 rows.
added_column %>%
filter(RateAll != 'NA', fracinf != 'NA') %>%
ggplot(aes(RateAll, fracinf)) + geom_point()
#Creating a difference variable between RateAll and our created variable fracinf shows that the majority of the differences between the two calculations lies in the area when RiskAll = 0. This would imply that those outbreaks that have 0 risk have varying calculated total rates/fractions of infections. This makes sense; how can you predict rate/fractions infected from 0 risk?
difference <- added_column$RateAll - added_column$fracinf
ggplot(added_column, aes(RiskAll, difference)) + geom_point()## Warning: Removed 120 rows containing missing values (geom_point).

Both ways of plotting the data show that for most outbreaks, the two ways of getting the outcome agree. So that’s good. But we need to look closer and resolve the problem with infinite values above. Check to see what the RateAll variable has for those infinite values.
#Write code that looks at the values of RateAll where we have inifinite values
summary(added_column$RateAll)## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 0.00 0.00 15.28 26.65 48.91 105.00 108
## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 0.3995 28.8324 63.0789 Inf Inf Inf 120

You should find that all of the reported values are 0. So what makes more sense? You should have figured out that the infinite values in our computed variables arise because the RiskAll variable is 0. That variable contains the total number of persons at risk for an outbreak. If nobody is at risk of getting infected, of course, we can’t get any infected. So RateAll being 0 is technically correct. But does it make sense to include “outbreaks” in our analysis where nobody is at risk of getting infected? One should question how those got into the spreadsheet in the first place.
Having to deal with “weirdness” in your data like this example is common. You often need to make a decision based on best judgment.
Here, I think that if nobody is at risk, we shouldn’t include those outbreaks in further analysis. Thus, we’ll go with our computed outcome and remove all observations that have missing or infinite values for the outcome of interest, since those can’t be used for model fitting. Thus, we go ahead and remove any observations that have un-useable values in the outcome.
#Write code that removes all observations that have an outcome that is not very useful, i.e. either NA or infinity. Then look at the outcome variable again to make sure things are fixed. Also check the size of the new dataset to see by how much it shrunk.
# This shows us we have 323 observations that are Inf with our fracinf variable. Let's get rid of them.
added_column## id Author Pub_Year pubmedid EpiCurve
## 1 2 Akihara 2005 15841336 Y
## 2 17 Becker 2000 11071673 Y
## 3 39 Boxman 2009 19205471 N
## 4 40 Boxman 2009 19205471 N
## 5 41 Boxman 2009 19205471 N
## 6 42 Boxman 2009 19205471 N
## 7 43 Boxman 2009 19205471 N
## 8 44 Boxman 2009 19205471 N
## 9 67 Carlsson 2009 19440360 N
## 10 74 CDC 1994 8202078 N
## 11 75 CDC 1993 8246858 Y
## 12 76 CDC 2000 10738840 Y
## 13 77 CDC 2000 10738840 Y
## 14 83 CDC 2002 12530708 Y
## 15 84 CDC 2002 12530708 Y
## 16 85 CDC 2002 12530708 Y
## 17 86 CDC 2002 12530708 Y
## 18 88 CDC 2005 16224449 Y
## 19 94 CDC 2007 17625494 Y
## 20 111 Corwin 1999 10674667 Y
## 21 116 Dingle 2004 15364974 N
## 22 117 Dingle 2004 15364974 N
## 23 118 Dingle 2004 15364974 N
## 24 119 Dingle 2004 15364974 N
## 25 120 Dingle 2004 15364974 N
## 26 121 Dingle 2004 15364974 N
## 27 122 Dingle 2004 15364974 N
## 28 123 Dingle 2004 15364974 N
## 29 124 Dingle 2004 15364974 N
## 30 125 Dingle 2004 15364974 N
## 31 126 Dingle 2004 15364974 N
## 32 131 Dingle 2004 15364974 N
## 33 132 Dingle 2004 15364974 N
## 34 139 Dowell 1995 7769284 Y
## 35 143 Ewald 2000 10812750 Y
## 36 147 Farkas 2002 12116006 N
## 37 149 Ferreira 2008 18098155 Y
## 38 165 Girish 2002 12116011 N
## 39 166 Goller 2004 15108754 N
## 40 169 Gray 1997 9260692 N
## 41 173 Grima 2009 19215711 Y
## 42 194 Hamano 2005 16121370 N
## 43 200 Hamano 2005 16121370 N
## 44 201 Hamano 2005 16121370 N
## 45 213 Hamano 2005 16121370 N
## 46 228 Hirakata 2005 15750067 Y
## 47 232 Holtby 2001 12109400 Y
## 48 233 Honish 2008 18802982 Y
## 49 274 Iritani 2000 10878058 N
## 50 275 Iritani 2000 10878058 N
## 51 318 Isakbaeva 2005 15705344 Y
## 52 326 Kageyama 2004 15243049 N
## 53 342 Kageyama 2004 15243049 N
## 54 359 Kageyama 2004 15243049 N
## 55 364 Kageyama 2004 15243049 N
## 56 369 Kageyama 2004 15243049 N
## 57 370 Kageyama 2004 15243049 N
## 58 371 Kageyama 2004 15243049 N
## 59 374 Kageyama 2004 15243049 N
## 60 380 Kageyama 2004 15243049 N
## 61 394 Kirkland 1996 8955700 N
## 62 396 Kohn 1995 7837364 Y
## 63 403 Le Guyader 2004 15541804 N
## 64 406 Lederer 2005 16790891 N
## 65 407 Leuenberger 2007 17299671 Y
## 66 408 Liko 2009 19402991 N
## 67 410 Love 2002 12211579 Y
## 68 412 Lynn 2004 15014560 Y
## 69 418 Lysen 2009 19494060 N
## 70 419 Lysen 2009 19494060 N
## 71 420 Lysen 2009 19494060 N
## 72 421 Lysen 2009 19494060 N
## 73 422 Lysen 2009 19494060 N
## 74 424 Lysen 2009 19494060 N
## 75 426 Lysen 2009 19494060 N
## 76 427 Lysen 2009 19494060 N
## 77 432 Lysen 2009 19494060 N
## 78 445 Lysen 2009 19494060 N
## 79 446 Lysen 2009 19494060 N
## 80 447 Lysen 2009 19494060 N
## 81 464 Lysen 2009 19494060 N
## 82 465 Lysen 2009 19494060 N
## 83 466 Lysen 2009 19494060 N
## 84 471 Lysen 2009 19494060 N
## 85 472 Lysen 2009 19494060 N
## 86 477 Marshall 2001 11211221 N
## 87 479 Marshall 2001 11211221 N
## 88 482 Mattner 2006 16460549 N
## 89 494 Maunula 2005 16318723 N
## 90 513 Morioka 2006 16785709 Y
## 91 543 O'Neill 2001 11511325 N
## 92 549 O'Neill 2001 11511325 N
## 93 555 Oppermann 2001 11434217 Y
## 94 561 Ozawa 2007 17928420 N
## 95 586 Ozawa 2007 17928420 N
## 96 587 Ozawa 2007 17928420 N
## 97 613 Parshionikar 2003 12957912 Y
## 98 622 Reuter 2002 19345441 N
## 99 631 Reuter 2002 12226827 N
## 100 632 Reuter 2002 12226827 N
## 101 633 Reuter 2002 12226827 N
## 102 634 Reuter 2002 12226827 N
## 103 635 Reuter 2002 12226827 N
## 104 647 Sala 2009 18667107 N
## 105 649 Sasaki 2006 16517856 Y
## 106 650 Schmid 2005 16437316 Y
## 107 671 Seto 2005 15782001 N
## 108 672 Seto 2005 15782001 N
## 109 700 Shinkawa 2009 19258722 N
## 110 701 Shinkawa 2009 19258722 N
## 111 734 Tseng 2007 17133557 N
## 112 736 Tseng 2007 17133557 N
## 113 742 Tseng 2007 17133557 N
## 114 743 Tseng 2007 17133557 N
## 115 750 Verbelen 2004 15065694 Y
## 116 762 Verhoef 2008 19000561 N
## 117 786 Ward 2000 11022388 Y
## 118 787 Ward 2000 11022388 Y
## 119 795 White 2002 12210438 N
## 120 796 White 2002 12210438 N
## 121 807 Widdowson 2004 15195240 N
## 122 808 Widdowson 2004 15195240 N
## 123 809 Widdowson 2004 15195240 N
## 124 810 Widdowson 2004 15195240 N
## 125 811 Widdowson 2004 15195240 N
## 126 818 Widdowson 2004 15195240 N
## 127 819 Widdowson 2004 15195240 N
## 128 820 Widdowson 2004 15195240 N
## 129 821 Widdowson 2004 15195240 N
## 130 822 Widdowson 2004 15195240 N
## 131 827 Wu 2006 16463123 N
## 132 839 Yamagami 2007 17515654 N
## 133 840 Yee 2007 17366445 Y
## 134 843 Zomer 2009 19765351 Y
## 135 847 CDC 2009 19816397 Y
## 136 848 CDC 2009 19816397 Y
## 137 849 CDC 2009 19816397 Y
## 138 853 Cheng 2011 21460507 N
## 139 854 Cheng 2011 21460507 N
## 140 855 Cheng 2011 21460507 N
## 141 856 Cheng 2011 21460507 N
## 142 872 Hicks 1996 8854448 Y
## 143 876 Kirking 2010 20353365 Y
## 144 880 Maunula 2009 20003905 Y
## 145 881 Maunula 2009 20003905 Y
## 146 882 Maunula 2009 20003905 Y
## 147 885 Nordgren 2010 20031047 Y
## 148 887 Rondy 2011 20492742 Y
## 149 897 Vivancos 2010 20359496 Y
## 150 900 Yang 2010 20889096 Y
## 151 901 Gaulin 1999 10694160
## 152 916 Bruggink 2009 19626605 Y
## 153 917 Bruggink 2009 19626605 Y
## 154 922 Bruggink 2009 19626605 Y
## 155 923 Bruggink 2009 19626605 Y
## 156 924 Bruggink 2009 19626605 Y
## 157 925 Bruggink 2009 19626605 Y
## 158 926 Bruggink 2009 19626605 Y
## 159 927 Bruggink 2009 19626605 Y
## 160 928 Bruggink 2009 19626605 Y
## 161 929 Bruggink 2009 19626605 Y
## 162 938 CDC 2009 19574952 Y
## 163 939 Godoy 2009 19345441 N
## 164 998 Marshall 2007 17289440 N
## 165 7 Baert 2009 19134230 N
## 166 8 Baert 2009 19134230 N
## 167 9 Baert 2009 19134230 N
## 168 10 Baert 2009 19134230 N
## 169 11 Baert 2009 19134230 N
## 170 16 Bailey 2005 16318711 Y
## 171 27 Boxman 2009 19205471 N
## 172 28 Boxman 2009 19205471 N
## 173 29 Boxman 2009 19205471 N
## 174 30 Boxman 2009 19205471 N
## 175 66 Calderon-Margalit 2005 15724708 Y
## 176 71 Cauchi 1996 8732863 N
## 177 72 Cauchi 1996 8732863 N
## 178 73 Cauchi 1996 8732863 N
## 179 81 CDC 2002 12064451 N
## 180 89 CDC 2006 16617287 Y
## 181 90 CDC 2006 16617287 Y
## 182 91 CDC 2006 16617287 Y
## 183 92 CDC 2006 16617287 Y
## 184 104 Chatterjee 2004 15095203 N
## 185 109 Chimo s 2008 18494695 Y
## 186 110 Cooper 2005 15796276 Y
## 187 112 Cunha 2008 18621444 N
## 188 113 Daniels 2000 10753727 Y
## 189 135 Dingle 2004 15364974 N
## 190 136 Dingle 2004 15364974 N
## 191 137 Dingle 2004 15364974 N
## 192 138 Dippold 2003 14679720 Y
## 193 151 Fretz 2003 14517725 Y
## 194 159 Fretz 2005 15962549 Y
## 195 161 Friedman 2005 16274502 Y
## 196 162 Gallimore 2005 15724709 Y
## 197 168 Gotz 2002 11928841 Y
## 198 172 Green 1998 9617683 Y
## 199 175 Halperin 2005 16231127 N
## 200 177 Halperin 2005 16231127 N
## 201 184 Hamano 2005 16121370 N
## 202 185 Hamano 2005 16121370 N
## 203 189 Hamano 2005 16121370 N
## 204 190 Hamano 2005 16121370 N
## 205 199 Hamano 2005 16121370 N
## 206 205 Hamano 2005 16121370 N
## 207 211 Hamano 2005 16121370 N
## 208 212 Hamano 2005 16121370 N
## 209 223 Hamano 2005 16121370 N
## 210 224 Hamano 2005 16121370 N
## 211 226 Herwaldt 1994 8027335 Y
## 212 252 Iritani 2000 10878058 N
## 213 253 Iritani 2000 10878058 N
## 214 254 Iritani 2000 10878058 N
## 215 255 Iritani 2000 10878058 N
## 216 269 Iritani 2000 10878058 N
## 217 270 Iritani 2000 10878058 N
## 218 271 Iritani 2000 10878058 N
## 219 272 Iritani 2000 10878058 N
## 220 273 Iritani 2000 10878058 N
## 221 281 Iritani 2000 10878058 N
## 222 298 Iritani 2002 11748669 N
## 223 299 Iritani 2008 18495859 N
## 224 300 Iritani 2008 18495859 N
## 225 301 Iritani 2008 18495859 N
## 226 302 Iritani 2008 18495859 N
## 227 303 Iritani 2008 18495859 N
## 228 304 Iritani 2008 18495859 N
## 229 305 Iritani 2008 18495859 N
## 230 306 Iritani 2008 18495859 N
## 231 307 Iritani 2008 18495859 N
## 232 308 Iritani 2008 18495859 N
## 233 309 Iritani 2008 18495859 N
## 234 310 Iritani 2008 18495859 N
## 235 311 Iritani 2008 18495859 N
## 236 312 Iritani 2008 18495859 N
## 237 313 Iritani 2008 18495859 N
## 238 314 Iritani 2008 18495859 N
## 239 315 Iritani 2008 18495859 N
## 240 316 Iritani 2008 18495859 N
## 241 317 Iritani 2008 18495859 N
## 242 320 Johansson 2002 11880395 Y
## 243 322 Jones 2007 17616868 Y
## 244 325 Kageyama 2004 15243049 N
## 245 328 Kageyama 2004 15243049 N
## 246 333 Kageyama 2004 15243049 N
## 247 338 Kageyama 2004 15243049 N
## 248 339 Kageyama 2004 15243049 N
## 249 348 Kageyama 2004 15243049 N
## 250 351 Kageyama 2004 15243049 N
## 251 358 Kageyama 2004 15243049 N
## 252 360 Kageyama 2004 15243049 N
## 253 361 Kageyama 2004 15243049 N
## 254 362 Kageyama 2004 15243049 N
## 255 363 Kageyama 2004 15243049 N
## 256 365 Kageyama 2004 15243049 N
## 257 366 Kageyama 2004 15243049 N
## 258 368 Kageyama 2004 15243049 N
## 259 379 Kageyama 2004 15243049 N
## 260 382 Kageyama 2004 15243049 N
## 261 384 Kageyama 2004 15243049 N
## 262 392 Kim 2005 16145153 N
## 263 393 Kim 2005 16145153 N
## 264 397 Koo 2009 19245344 Y
## 265 401 Kuusi 2004 15109411 Y
## 266 402 Le Guyader 2003 12927712 N
## 267 409 Liu 2003 12907999 Y
## 268 413 Lysen 2009 19494060 N
## 269 423 Lysen 2009 19494060 N
## 270 425 Lysen 2009 19494060 N
## 271 442 Lysen 2009 19494060 N
## 272 443 Lysen 2009 19494060 N
## 273 448 Lysen 2009 19494060 N
## 274 449 Lysen 2009 19494060 N
## 275 456 Lysen 2009 19494060 N
## 276 457 Lysen 2009 19494060 N
## 277 458 Lysen 2009 19494060 N
## 278 459 Lysen 2009 19494060 N
## 279 460 Lysen 2009 19494060 N
## 280 480 Martinelli 2007 17868612 Y
## 281 484 Maunula 2005 16318723 N
## 282 489 Maunula 2005 16318723 N
## 283 493 Maunula 2005 16318723 N
## 284 496 Maunula 2005 16318723 N
## 285 498 Maunula 2005 16318723 N
## 286 499 Maunula 2005 16318723 N
## 287 503 McEvoy 1996 8990576 Y
## 288 504 McIntyre 2002 12494826 N
## 289 505 McIntyre 2002 12494826 N
## 290 521 kagawa-Okamoto 2009 19168964 N
## 291 524 kagawa-Okamoto 2009 19168964 N
## 292 536 Nomura 2008 18251819 N
## 293 537 Nygard 2003 14720394 N
## 294 545 O'Neill 2001 11511325 N
## 295 546 O'Neill 2001 11511325 N
## 296 547 O'Neill 2001 11511325 N
## 297 548 O'Neill 2001 11511325 N
## 298 550 O'Neill 2001 11511325 N
## 299 552 O'Neill 2001 11511325 N
## 300 553 O'Neill 2001 11511325 N
## 301 557 Ozawa 2007 17928420 N
## 302 564 Ozawa 2007 17928420 N
## 303 568 Ozawa 2007 17928420 N
## 304 578 Ozawa 2007 17928420 N
## 305 599 Ozawa 2007 17928420 N
## 306 600 Ozawa 2007 17928420 N
## 307 616 Peipins 2002 12004584 N
## 308 619 Ponka 1999 10694159 Y
## 309 620 Prato 2004 15383150 Y
## 310 624 Reuter 2002 12226827 N
## 311 627 Reuter 2002 12226827 N
## 312 628 Reuter 2002 12226827 N
## 313 629 Reuter 2002 12226827 N
## 314 638 Rodriguez 1996 8880231 Y
## 315 640 Russo 1997 9324510 Y
## 316 641 Russo 1997 9324510 Y
## 317 646 Sala 2005 15724726 Y
## 318 651 Schmid 2005 16783101 N
## 319 653 Schreier 2000 10795514 N
## 320 664 Schreier 2000 10795514 N
## 321 665 Schreier 2000 10795514 N
## 322 666 Schreier 2000 10795514 N
## 323 667 Schreier 2000 10795514 N
## 324 668 Schreier 2000 10795514 N
## 325 670 Seto 2005 15782001 N
## 326 692 Seto 2005 15782001 N
## 327 693 Seto 2005 15782001 N
## 328 694 Seto 2005 15782001 N
## 329 695 Seto 2005 15782001 N
## 330 696 Seto 2005 15782001 N
## 331 697 Seto 2005 15782001 N
## 332 698 Seto 2005 15782001 N
## 333 699 Shieh 2000 10804149 N
## 334 705 Shinkawa 2009 19258722 N
## 335 707 Shinkawa 2009 19258722 N
## 336 711 Shinkawa 2009 19258722 N
## 337 712 Simmons 2001 11494991 N
## 338 713 Simmons 2001 11494991 N
## 339 714 Simmons 2001 11494991 N
## 340 715 Simmons 2001 11494991 N
## 341 729 Telfer 2004 15657625 Y
## 342 732 Tseng 2007 17133557 N
## 343 733 Tseng 2007 17133557 N
## 344 737 Tseng 2007 17133557 N
## 345 738 Tseng 2007 17133557 N
## 346 739 Tseng 2007 17133557 N
## 347 741 Tseng 2007 17133557 N
## 348 745 Tseng 2007 17133557 N
## 349 749 Uchino 2006 16936350 Y
## 350 788 Webby 2007 17366444 Y
## 351 789 Webby 2007 17366444 Y
## 352 798 White 2002 12210438 N
## 353 800 White 2002 12210438 N
## 354 803 White 2002 12210438 N
## 355 804 Widdowson 2004 15195240 N
## 356 815 Widdowson 2004 15195240 N
## 357 836 Wu 2006 16463123 N
## 358 837 Wu 2006 16463123 N
## 359 841 Yu 2007 17893314 Y
## 360 851 Borchardt 2011 20199588 Y
## 361 884 Miyoshi 2010 20093770 Y
## 362 888 Schmid 2011 21272956 Y
## 363 894 Tseng 2011 20334730 Y
## 364 931 Bruggink 2009 19626605 Y
## 365 932 Bruggink 2009 19626605 Y
## 366 933 Bruggink 2009 19626605 Y
## 367 936 CDC 2009 19574952 Y
## 368 945 Big rdi 2008 18621444 Y
## 369 953 Fukuda 2008 18360906 N
## 370 954 Fukuda 2008 18360906 N
## 371 961 Fukuda 2008 18360906 N
## 372 962 Fukuda 2008 18360906 N
## 373 970 Fukuda 2008 18360906 N
## 374 981 Fukuda 2008 18360906 N
## 375 985 Fukuda 2008 18360906 N
## 376 986 Fukuda 2008 18360906 N
## 377 987 Fukuda 2008 18360906 N
## 378 1012 Calderon-Margalit 2005 15724708 Y
## 379 1013 Calderon-Margalit 2005 15724708 Y
## 380 1014 Calderon-Margalit 2005 15724708 Y
## 381 1015 Calderon-Margalit 2005 15724708 Y
## 382 1016 Calderon-Margalit 2005 15724708 Y
## 383 1016 Calderon-Margalit 2005 15724708 Y
## 384 1017 Thornton 2005 15712073 N
## 385 1022 Fretz 2003 14517725 Y
## 386 1023 Fretz 2003 14517725 Y
## 387 1 Akihara 2005 15841336 Y
## 388 5 Arness 2000 10756159 N
## 389 12 Baert 2009 19134230 N
## 390 13 Baert 2009 19134230 N
## 391 14 Baert 2009 19134230 N
## 392 18 Beller 1997 9268277 Y
## 393 20 Boccia 2002 12023910 Y
## 394 31 Boxman 2009 19205471 N
## 395 32 Boxman 2009 19205471 N
## 396 33 Boxman 2009 19205471 N
## 397 34 Boxman 2009 19205471 N
## 398 35 Boxman 2009 19205471 N
## 399 36 Boxman 2009 19205471 N
## 400 37 Boxman 2009 19205471 N
## 401 38 Boxman 2009 19205471 N
## 402 47 Boxman 2009 19722414 N
## 403 49 Brugha 1999 10098798 Y
## 404 63 Bull 2005 16022784 N
## 405 69 Cauchi 1996 8732863 N
## 406 79 CDC 2001 11787574 N
## 407 80 CDC 2001 11787574 N
## 408 82 CDC 2002 12530708 Y
## 409 93 CDC 2007 17443123 Y
## 410 98 Chatterjee 2004 15095203 N
## 411 103 Chatterjee 2004 15095203 N
## 412 105 Chatterjee 2004 15095203 N
## 413 107 Cheng 2006 16825139 Y
## 414 108 Cheng 2009 19592137 N
## 415 144 Falkenhorst 2005 16788235 N
## 416 145 Falkenhorst 2005 16788235 N
## 417 146 Falkenhorst 2005 16788235 N
## 418 148 Farkas 2002 12116006 N
## 419 150 Ferson 2000 10937421 N
## 420 156 Fretz 2005 15962549 Y
## 421 164 Gilbride 2009 19193019 Y
## 422 167 Goller 2004 15564004 Y
## 423 178 Halperin 2005 16231127 N
## 424 179 Halperin 2005 16231127 N
## 425 225 Heijne 2009 19116045 Y
## 426 229 Hjertqvist 2006 17075140 N
## 427 230 Hjertqvist 2006 17075140 N
## 428 231 Hoebe 2004 14767824 Y
## 429 235 Iritani 2000 10878058 N
## 430 236 Iritani 2000 10878058 N
## 431 334 Kageyama 2004 15243049 N
## 432 375 Kageyama 2004 15243049 N
## 433 383 Kageyama 2004 15243049 N
## 434 415 Lysen 2009 19494060 N
## 435 416 Lysen 2009 19494060 N
## 436 417 Lysen 2009 19494060 N
## 437 428 Lysen 2009 19494060 N
## 438 429 Lysen 2009 19494060 N
## 439 430 Lysen 2009 19494060 N
## 440 431 Lysen 2009 19494060 N
## 441 444 Lysen 2009 19494060 N
## 442 450 Lysen 2009 19494060 N
## 443 451 Lysen 2009 19494060 N
## 444 461 Lysen 2009 19494060 N
## 445 462 Lysen 2009 19494060 N
## 446 463 Lysen 2009 19494060 N
## 447 468 Lysen 2009 19494060 N
## 448 469 Lysen 2009 19494060 N
## 449 470 Lysen 2009 19494060 N
## 450 473 Makary 2009 18387215 Y
## 451 474 Malek 2009 19025489 Y
## 452 476 Marks 2003 12948373 Y
## 453 483 Maunula 2004 15310176 N
## 454 485 Maunula 2005 16318723 N
## 455 486 Maunula 2005 16318723 N
## 456 490 Maunula 2005 16318723 N
## 457 491 Maunula 2005 16318723 N
## 458 497 Maunula 2005 16318723 N
## 459 506 McIntyre 2002 12494826 N
## 460 508 Migliorati 2008 18325266 Y
## 461 511 Miyoshi 2006 16632921 Y
## 462 512 Miyoshi 2006 16632921 Y
## 463 541 O'Neill 2001 11511325 N
## 464 542 O'Neill 2001 11511325 N
## 465 614 Patterson 1997 9219424 Y
## 466 625 Reuter 2002 12226827 N
## 467 626 Reuter 2002 12226827 N
## 468 630 Reuter 2002 12226827 N
## 469 636 Rizzo 2007 18021429 N
## 470 648 Sartorius 2007 17454896 Y
## 471 708 Shinkawa 2009 19258722 N
## 472 716 Simmons 2001 11494991 N
## 473 717 Simmons 2001 11494991 N
## 474 718 Simmons 2001 11494991 N
## 475 719 Simmons 2001 11494991 N
## 476 720 Simmons 2001 11494991 N
## 477 721 Simmons 2001 11494991 N
## 478 726 Symes 2007 17334907 N
## 479 730 Thornton 2002 12392249 Y
## 480 731 Thornton 2002 12392249 Y
## 481 761 Verhoef 2008 18761943 N
## 482 783 Vivancos 2009 19147386 Y
## 483 784 Vivancos 2009 19147386 Y
## 484 785 Ward 2000 11022388 Y
## 485 790 Webby 2007 17366444 Y
## 486 792 Werber 2009 19534843 Y
## 487 799 White 2002 12210438 N
## 488 805 Widdowson 2004 15195240 N
## 489 806 Widdowson 2004 15195240 N
## 490 816 Widdowson 2004 15195240 N
## 491 817 Widdowson 2004 15195240 N
## 492 844 CDC 2002 12375589
## 493 845 CDC 2002 12375589
## 494 846 CDC 2002 12375589
## 495 850 Barrabeig 2010 20843351 Y
## 496 879 Morillo 2011 21537761 N
## 497 890 ter Waarbeek 2010 20056481 Y
## 498 914 Scarcella 2009 19643050 Y
## 499 915 Bruggink 2009 19626605 Y
## 500 918 Bruggink 2009 19626605 Y
## 501 919 Bruggink 2009 19626605 Y
## 502 920 Bruggink 2009 19626605 Y
## 503 921 Bruggink 2009 19626605 Y
## 504 934 Bruggink 2009 19626605 Y
## 505 937 CDC 2009 19574952 Y
## 506 947 Tsang 2008 18468726 N
## 507 982 Fukuda 2008 18360906 N
## 508 999 O'Reilley 2007 17243052 Y
## 509 1001 Phan 2006 16628578 Y
## 510 1019 Gallimore 2004 15131210 N
## 511 1020 Nygard 2004 15061496 Y
## 512 3 Anderson 2001 11724717 Y
## 513 4 Anderson 2003 12552455 Y
## 514 6 Baert 2009 19134230 N
## 515 19 Berg 2000 10804152 Y
## 516 21 Boxman 2009 19205471 N
## 517 22 Boxman 2009 19205471 N
## 518 23 Boxman 2009 19205471 N
## 519 24 Boxman 2009 19205471 N
## 520 25 Boxman 2009 19205471 N
## 521 26 Boxman 2009 19205471 N
## 522 45 Boxman 2009 19205471 N
## 523 46 Boxman 2009 19205471 N
## 524 48 Brown 2001 11467799 Y
## 525 64 Bull 2005 16022784 N
## 526 65 Caceres 1998 9552183 N
## 527 68 Carrique-Mas 2003 12948374 Y
## 528 70 Cauchi 1996 8732863 N
## 529 78 CDC 2001 11428728 N
## 530 87 CDC 2004 15343147 Y
## 531 95 CDC 2007 18030282 Y
## 532 96 CDC 2008 18172420 Y
## 533 97 Chatterjee 2004 15095203 N
## 534 99 Chatterjee 2004 15095203 N
## 535 100 Chatterjee 2004 15095203 N
## 536 101 Chatterjee 2004 15095203 N
## 537 102 Chatterjee 2004 15095203 N
## 538 106 Cheesbrough 2000 11057964 Y
## 539 114 David 2007 17883318 Y
## 540 115 De Wit 2007 17602749 Y
## 541 127 Dingle 2004 15364974 N
## 542 128 Dingle 2004 15364974 N
## 543 129 Dingle 2004 15364974 N
## 544 130 Dingle 2004 15364974 N
## 545 133 Dingle 2004 15364974 N
## 546 134 Dingle 2004 15364974 N
## 547 140 Doyle 2004 15075483 Y
## 548 141 Doyle 2004 15075483 Y
## 549 142 Evans 2002 12403111 N
## 550 152 Fretz 2005 15962549 Y
## 551 153 Fretz 2005 15962549 Y
## 552 154 Fretz 2005 15962549 Y
## 553 155 Fretz 2005 15962549 Y
## 554 157 Fretz 2005 15962549 Y
## 555 158 Fretz 2005 15962549 Y
## 556 160 Fretz 2009 19280140 Y
## 557 163 Gallimore 2005 15967530 N
## 558 170 Green 1995 7775939 N
## 559 171 Green 1995 7775939 N
## 560 174 Grotto 2004 15597223 Y
## 561 176 Halperin 2005 16231127 N
## 562 180 Halperin 2008 18171286 N
## 563 181 Halperin 2008 18171286 N
## 564 182 Hamano 2005 16121370 N
## 565 183 Hamano 2005 16121370 N
## 566 186 Hamano 2005 16121370 N
## 567 187 Hamano 2005 16121370 N
## 568 188 Hamano 2005 16121370 N
## 569 191 Hamano 2005 16121370 N
## 570 192 Hamano 2005 16121370 N
## 571 193 Hamano 2005 16121370 N
## 572 195 Hamano 2005 16121370 N
## 573 196 Hamano 2005 16121370 N
## 574 197 Hamano 2005 16121370 N
## 575 198 Hamano 2005 16121370 N
## 576 202 Hamano 2005 16121370 N
## 577 203 Hamano 2005 16121370 N
## 578 204 Hamano 2005 16121370 N
## 579 206 Hamano 2005 16121370 N
## 580 207 Hamano 2005 16121370 N
## 581 208 Hamano 2005 16121370 N
## 582 209 Hamano 2005 16121370 N
## 583 210 Hamano 2005 16121370 N
## 584 214 Hamano 2005 16121370 N
## 585 215 Hamano 2005 16121370 N
## 586 216 Hamano 2005 16121370 N
## 587 217 Hamano 2005 16121370 N
## 588 218 Hamano 2005 16121370 N
## 589 219 Hamano 2005 16121370 N
## 590 220 Hamano 2005 16121370 N
## 591 221 Hamano 2005 16121370 N
## 592 222 Hamano 2005 16121370 N
## 593 227 Hewitt 2007 17965205 Y
## 594 234 Iizuka 2005 16249634 Y
## 595 237 Iritani 2000 10878058 N
## 596 238 Iritani 2000 10878058 N
## 597 239 Iritani 2000 10878058 N
## 598 240 Iritani 2000 10878058 N
## 599 241 Iritani 2000 10878058 N
## 600 242 Iritani 2000 10878058 N
## 601 243 Iritani 2000 10878058 N
## 602 244 Iritani 2000 10878058 N
## 603 245 Iritani 2000 10878058 N
## 604 246 Iritani 2000 10878058 N
## 605 247 Iritani 2000 10878058 N
## 606 248 Iritani 2000 10878058 N
## 607 249 Iritani 2000 10878058 N
## 608 250 Iritani 2000 10878058 N
## 609 251 Iritani 2000 10878058 N
## 610 256 Iritani 2000 10878058 N
## 611 257 Iritani 2000 10878058 N
## 612 258 Iritani 2000 10878058 N
## 613 259 Iritani 2000 10878058 N
## 614 260 Iritani 2000 10878058 N
## 615 261 Iritani 2000 10878058 N
## 616 262 Iritani 2000 10878058 N
## 617 263 Iritani 2000 10878058 N
## 618 264 Iritani 2000 10878058 N
## 619 265 Iritani 2000 10878058 N
## 620 266 Iritani 2000 10878058 N
## 621 267 Iritani 2000 10878058 N
## 622 268 Iritani 2000 10878058 N
## 623 276 Iritani 2000 10878058 N
## 624 277 Iritani 2000 10878058 N
## 625 278 Iritani 2000 10878058 N
## 626 279 Iritani 2000 10878058 N
## 627 280 Iritani 2000 10878058 N
## 628 282 Iritani 2002 11748669 N
## 629 283 Iritani 2002 11748669 N
## 630 284 Iritani 2002 11748669 N
## 631 285 Iritani 2002 11748669 N
## 632 286 Iritani 2002 11748669 N
## 633 287 Iritani 2002 11748669 N
## 634 288 Iritani 2002 11748669 N
## 635 289 Iritani 2002 11748669 N
## 636 290 Iritani 2002 11748669 N
## 637 291 Iritani 2002 11748669 N
## 638 292 Iritani 2002 11748669 N
## 639 293 Iritani 2002 11748669 N
## 640 294 Iritani 2002 11748669 N
## 641 295 Iritani 2002 11748669 N
## 642 296 Iritani 2002 11748669 N
## 643 297 Iritani 2002 11748669 N
## 644 319 Isakbaeva 2005 15933572 Y
## 645 321 Johnston 2007 17682985 Y
## 646 323 Kageyama 2004 15243049 N
## 647 324 Kageyama 2004 15243049 N
## 648 327 Kageyama 2004 15243049 N
## 649 329 Kageyama 2004 15243049 N
## 650 330 Kageyama 2004 15243049 N
## 651 331 Kageyama 2004 15243049 N
## 652 332 Kageyama 2004 15243049 N
## 653 335 Kageyama 2004 15243049 N
## 654 336 Kageyama 2004 15243049 N
## 655 337 Kageyama 2004 15243049 N
## 656 340 Kageyama 2004 15243049 N
## 657 341 Kageyama 2004 15243049 N
## 658 343 Kageyama 2004 15243049 N
## 659 344 Kageyama 2004 15243049 N
## 660 345 Kageyama 2004 15243049 N
## 661 346 Kageyama 2004 15243049 N
## 662 347 Kageyama 2004 15243049 N
## 663 349 Kageyama 2004 15243049 N
## 664 350 Kageyama 2004 15243049 N
## 665 352 Kageyama 2004 15243049 N
## 666 353 Kageyama 2004 15243049 N
## 667 354 Kageyama 2004 15243049 N
## 668 355 Kageyama 2004 15243049 N
## 669 356 Kageyama 2004 15243049 N
## 670 357 Kageyama 2004 15243049 N
## 671 367 Kageyama 2004 15243049 N
## 672 372 Kageyama 2004 15243049 N
## 673 373 Kageyama 2004 15243049 N
## 674 376 Kageyama 2004 15243049 N
## 675 377 Kageyama 2004 15243049 N
## 676 378 Kageyama 2004 15243049 N
## 677 381 Kageyama 2004 15243049 N
## 678 385 Kageyama 2004 15243049 N
## 679 386 Kamenov 2007 17868598 Y
## 680 387 Kanerva 2009 19157648 Y
## 681 388 Kassa 2001 11764683 Y
## 682 389 Khan 1994 8150941 N
## 683 390 Khan 2003 14529638 Y
## 684 391 Kilgore 1996 8603955 Y
## 685 395 Kobayashi 2004 15031533 N
## 686 398 Kukkula 1999 10558930 Y
## 687 399 Kuo 2009 19280137 Y
## 688 400 Kuusi 2002 12211580 Y
## 689 404 Le Guyader 2006 17088365 N
## 690 405 Le Guyader 2008 18842942 N
## 691 411 Lynn 2004 15014560 Y
## 692 414 Lysen 2009 19494060 N
## 693 433 Lysen 2009 19494060 N
## 694 434 Lysen 2009 19494060 N
## 695 435 Lysen 2009 19494060 N
## 696 436 Lysen 2009 19494060 N
## 697 437 Lysen 2009 19494060 N
## 698 438 Lysen 2009 19494060 N
## 699 439 Lysen 2009 19494060 N
## 700 440 Lysen 2009 19494060 N
## 701 441 Lysen 2009 19494060 N
## 702 452 Lysen 2009 19494060 N
## 703 453 Lysen 2009 19494060 N
## 704 454 Lysen 2009 19494060 N
## 705 455 Lysen 2009 19494060 N
## 706 467 Lysen 2009 19494060 N
## 707 475 Marks 2000 10982072 Y
## 708 478 Marshall 2001 11211221 N
## 709 481 Marx 1999 10349945 Y
## 710 487 Maunula 2005 16318723 N
## 711 488 Maunula 2005 16318723 N
## 712 492 Maunula 2005 16318723 N
## 713 495 Maunula 2005 16318723 N
## 714 500 McCall 2002 12434696 Y
## TDComment
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20 Not sure
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34 Not sure
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65 Not sure
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151 Not found in folder of articles
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163 Total (Hospitals and Nursing homes)/Total for 17 outbreaks
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280 Not sure
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367 Not sure if patients and employees should be separated into primary/secondary cases
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378 Not sure
## 379
## 380
## 381
## 382
## 383
## 384
## 385 Staff treated as secondary cases
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413 Not sure
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492 Not found in folder of articles
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506 Not sure
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538 Not sure
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691 Not sure
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## AHComment Trans1 Trans1_O Trans2
## 1 Unspecified 0 (not applicable)
## 2 Foodborne 0 Person to Person
## 3 Foodborne 0 (not applicable)
## 4 Foodborne 0 (not applicable)
## 5 Foodborne 0 (not applicable)
## 6 Foodborne 0 (not applicable)
## 7 Foodborne 0 (not applicable)
## 8 Foodborne 0 (not applicable)
## 9 Unspecified 0 (not applicable)
## 10 Foodborne 0 (not applicable)
## 11 Foodborne 0 (not applicable)
## 12 Foodborne 0 (not applicable)
## 13 Person to Person 0 (not applicable)
## 14 Unspecified 0 (not applicable)
## 15 Foodborne 0 Person to Person
## 16 Unspecified 0 (not applicable)
## 17 Unspecified 0 (not applicable)
## 18 Person to Person 0 Environmental
## 19 Person to Person 0 Foodborne
## 20 Person to Person 0 (not applicable)
## 21 Unspecified 0 (not applicable)
## 22 Unspecified 0 (not applicable)
## 23 Unspecified 0 (not applicable)
## 24 Unspecified 0 (not applicable)
## 25 Unspecified 0 (not applicable)
## 26 Unspecified 0 (not applicable)
## 27 Unspecified 0 (not applicable)
## 28 Unspecified 0 (not applicable)
## 29 Unspecified 0 (not applicable)
## 30 Unspecified 0 (not applicable)
## 31 Unspecified 0 (not applicable)
## 32 Unspecified 0 (not applicable)
## 33 Unspecified 0 (not applicable)
## 34 Foodborne 0 (not applicable)
## 35 Waterborne 0 Foodborne
## 36 Foodborne 0 (not applicable)
## 37 Unspecified 0 (not applicable)
## 38 Foodborne 0 (not applicable)
## 39 Unspecified 0 (not applicable)
## 40 Waterborne 0 (not applicable)
## 41 Person to Person 0 Environmental
## 42 Foodborne 0 (not applicable)
## 43 Unspecified 0 (not applicable)
## 44 Person to Person 0 (not applicable)
## 45 Foodborne 0 (not applicable)
## 46 Foodborne 0 Person to Person
## 47 Foodborne 0 (not applicable)
## 48 Environmental 0 Person to Person
## 49 Foodborne 0 (not applicable)
## 50 Unknown 0 (not applicable)
## 51 Foodborne 0 Person to Person
## 52 Foodborne 0 (not applicable)
## 53 Foodborne 0 (not applicable)
## 54 Unspecified 0 (not applicable)
## 55 Unspecified 0 (not applicable)
## 56 Unspecified 0 (not applicable)
## 57 Unspecified 0 (not applicable)
## 58 Unspecified 0 (not applicable)
## 59 Foodborne 0 (not applicable)
## 60 Foodborne 0 (not applicable)
## 61 Foodborne 0 (not applicable)
## 62 Foodborne 0 (not applicable)
## 63 Foodborne 0 (not applicable)
## 64 Foodborne 0 (not applicable)
## 65 Person to Person 0 Environmental
## 66 Foodborne 0 (not applicable)
## 67 Foodborne 0 Person to Person
## 68 Unspecified 0 (not applicable)
## 69 Foodborne 0 (not applicable)
## 70 Unspecified 0 (not applicable)
## 71 Foodborne 0 (not applicable)
## 72 Foodborne 0 (not applicable)
## 73 Foodborne 0 (not applicable)
## 74 Waterborne 0 (not applicable)
## 75 Foodborne 0 (not applicable)
## 76 Waterborne 0 (not applicable)
## 77 Foodborne 0 (not applicable)
## 78 Foodborne 0 (not applicable)
## 79 Foodborne 0 (not applicable)
## 80 Foodborne 0 (not applicable)
## 81 Unspecified 0 (not applicable)
## 82 Foodborne 0 (not applicable)
## 83 Foodborne 0 (not applicable)
## 84 Foodborne 0 (not applicable)
## 85 Foodborne 0 (not applicable)
## 86 Unspecified 0 (not applicable)
## 87 Unspecified 0 (not applicable)
## 88 Person to Person 0 (not applicable)
## 89 Waterborne 0 (not applicable)
## 90 Foodborne 0 (not applicable)
## 91 Unspecified 0 (not applicable)
## 92 Unspecified 0 (not applicable)
## 93 Person to Person 0 (not applicable)
## 94 Unspecified 0 (not applicable)
## 95 Unspecified 0 (not applicable)
## 96 Unspecified 0 (not applicable)
## 97 Waterborne 0 (not applicable)
## 98 Foodborne 0 (not applicable)
## 99 Person to Person 0 (not applicable)
## 100 Person to Person 0 Waterborne
## 101 Person to Person 0 (not applicable)
## 102 Person to Person 0 (not applicable)
## 103 Foodborne 0 Person to Person
## 104 Foodborne 0 (not applicable)
## 105 Foodborne 0 Person to Person
## 106 Person to Person 0 Environmental
## 107 Foodborne 0 (not applicable)
## 108 Unknown 0 (not applicable)
## 109 Foodborne 0 (not applicable)
## 110 Foodborne 0 (not applicable)
## 111 Unspecified 0 (not applicable)
## 112 Foodborne 0 (not applicable)
## 113 Foodborne 0 Person to Person
## 114 Foodborne 0 (not applicable)
## 115 Person to Person 0 (not applicable)
## 116 Person to Person 0 (not applicable)
## 117 Person to Person 0 (not applicable)
## 118 Unknown 0 (not applicable)
## 119 Unspecified 0 (not applicable)
## 120 Unspecified 0 (not applicable)
## 121 Foodborne 0 Person to Person
## 122 Waterborne 0 (not applicable)
## 123 Person to Person 0 Foodborne
## 124 Foodborne 0 Person to Person
## 125 Person to Person 0 Environmental
## 126 Person to Person 0 (not applicable)
## 127 Foodborne 0 (not applicable)
## 128 Foodborne 0 (not applicable)
## 129 Waterborne 0 (not applicable)
## 130 Person to Person 0 (not applicable)
## 131 Unknown 0 (not applicable)
## 132 Person to Person 0 Environmental
## 133 Person to Person 0 Environmental
## 134 Foodborne 0 (not applicable)
## 135 Unknown 0 (not applicable)
## 136 Unknown 0 (not applicable)
## 137 Unspecified 0 (not applicable)
## 138 Unspecified 0 (not applicable)
## 139 Unspecified 0 (not applicable)
## 140 Unspecified 0 (not applicable)
## 141 Unspecified 0 (not applicable)
## 142 Foodborne 0 (not applicable)
## 143 Person to Person 0 Environmental
## 144 Foodborne 0 (not applicable)
## 145 Foodborne 0 Person to Person
## 146 Foodborne 0 (not applicable)
## 147 Foodborne 0 (not applicable)
## 148 Unknown 0 Person to Person
## 149 Person to Person 0 (not applicable)
## 150 Person to Person 0 (not applicable)
## 151 Foodborne 0 (not applicable)
## 152 Unspecified 0 (not applicable)
## 153 Unspecified 0 (not applicable)
## 154 Unspecified 0 (not applicable)
## 155 Unspecified 0 (not applicable)
## 156 Unspecified 0 (not applicable)
## 157 Unspecified 0 (not applicable)
## 158 Unspecified 0 (not applicable)
## 159 Unspecified 0 (not applicable)
## 160 Unspecified 0 (not applicable)
## 161 Unspecified 0 (not applicable)
## 162 Person to Person 0 (not applicable)
## 163 Person to Person 0 Foodborne
## 164 Unspecified 0 (not applicable)
## 165 Foodborne 0 (not applicable)
## 166 Foodborne 0 (not applicable)
## 167 Foodborne 0 (not applicable)
## 168 Foodborne 0 (not applicable)
## 169 Foodborne 0 (not applicable)
## 170 Unknown 0 (not applicable)
## 171 Foodborne 0 (not applicable)
## 172 Foodborne 0 (not applicable)
## 173 Foodborne 0 (not applicable)
## 174 Foodborne 0 (not applicable)
## 175 probably not usable Environmental 0 Person to Person
## 176 Unspecified 0 (not applicable)
## 177 Person to Person 0 (not applicable)
## 178 Unspecified 0 (not applicable)
## 179 Person to Person 0 (not applicable)
## 180 Foodborne 0 (not applicable)
## 181 Foodborne 0 (not applicable)
## 182 Foodborne 0 (not applicable)
## 183 Foodborne 0 (not applicable)
## 184 Foodborne 0 (not applicable)
## 185 Person to Person 0 Environmental
## 186 Unspecified 0 (not applicable)
## 187 Unspecified 0 (not applicable)
## 188 Foodborne 0 (not applicable)
## 189 Unspecified 0 (not applicable)
## 190 Unspecified 0 (not applicable)
## 191 Unspecified 0 (not applicable)
## 192 Foodborne 0 (not applicable)
## 193 confirmed Person to Person 0 (not applicable)
## 194 Person to Person 0 (not applicable)
## 195 Foodborne 0 Person to Person
## 196 Foodborne 0 (not applicable)
## 197 Foodborne 0 (not applicable)
## 198 Unspecified 0 (not applicable)
## 199 Unspecified 0 (not applicable)
## 200 Unspecified 0 (not applicable)
## 201 Foodborne 0 (not applicable)
## 202 Unspecified 0 (not applicable)
## 203 Person to Person 0 (not applicable)
## 204 Foodborne 0 (not applicable)
## 205 Unspecified 0 (not applicable)
## 206 Person to Person 0 (not applicable)
## 207 Foodborne 0 (not applicable)
## 208 Unspecified 0 (not applicable)
## 209 Foodborne 0 (not applicable)
## 210 Person to Person 0 (not applicable)
## 211 Foodborne 0 (not applicable)
## 212 Foodborne 0 (not applicable)
## 213 Unknown 0 (not applicable)
## 214 Foodborne 0 (not applicable)
## 215 Unknown 0 (not applicable)
## 216 Foodborne 0 (not applicable)
## 217 Foodborne 0 (not applicable)
## 218 Foodborne 0 (not applicable)
## 219 Foodborne 0 (not applicable)
## 220 Unknown 0 (not applicable)
## 221 Unknown 0 (not applicable)
## 222 Unknown 0 (not applicable)
## 223 Foodborne 0 (not applicable)
## 224 Foodborne 0 (not applicable)
## 225 Foodborne 0 (not applicable)
## 226 Unknown 0 (not applicable)
## 227 Unknown 0 (not applicable)
## 228 Foodborne 0 (not applicable)
## 229 Foodborne 0 (not applicable)
## 230 Person to Person 0 (not applicable)
## 231 Foodborne 0 (not applicable)
## 232 Foodborne 0 (not applicable)
## 233 Person to Person 0 (not applicable)
## 234 Unknown 0 (not applicable)
## 235 Person to Person 0 (not applicable)
## 236 Unknown 0 (not applicable)
## 237 Person to Person 0 (not applicable)
## 238 Person to Person 0 (not applicable)
## 239 Unknown 0 (not applicable)
## 240 Person to Person 0 (not applicable)
## 241 Person to Person 0 (not applicable)
## 242 Foodborne 0 Person to Person
## 243 Person to Person 0 Environmental
## 244 Foodborne 0 (not applicable)
## 245 Foodborne 0 (not applicable)
## 246 Foodborne 0 (not applicable)
## 247 Foodborne 0 (not applicable)
## 248 Foodborne 0 (not applicable)
## 249 Unspecified 0 (not applicable)
## 250 Unspecified 0 (not applicable)
## 251 Unspecified 0 (not applicable)
## 252 Unspecified 0 (not applicable)
## 253 Unspecified 0 (not applicable)
## 254 Unspecified 0 (not applicable)
## 255 Unspecified 0 (not applicable)
## 256 Unspecified 0 (not applicable)
## 257 Unspecified 0 (not applicable)
## 258 Unspecified 0 (not applicable)
## 259 Foodborne 0 (not applicable)
## 260 Unspecified 0 (not applicable)
## 261 Unspecified 0 (not applicable)
## 262 Waterborne 0 (not applicable)
## 263 Waterborne 0 (not applicable)
## 264 Person to Person 0 Environmental
## 265 Waterborne 0 (not applicable)
## 266 Foodborne 0 (not applicable)
## 267 Person to Person 0 Environmental
## 268 Unspecified 0 (not applicable)
## 269 Waterborne 0 (not applicable)
## 270 Foodborne 0 (not applicable)
## 271 Foodborne 0 (not applicable)
## 272 Foodborne 0 (not applicable)
## 273 Foodborne 0 (not applicable)
## 274 Unspecified 0 (not applicable)
## 275 Foodborne 0 (not applicable)
## 276 Foodborne 0 (not applicable)
## 277 Foodborne 0 (not applicable)
## 278 Foodborne 0 (not applicable)
## 279 Foodborne 0 (not applicable)
## 280 Waterborne 0 (not applicable)
## 281 Waterborne 0 (not applicable)
## 282 Waterborne 0 (not applicable)
## 283 Waterborne 0 (not applicable)
## 284 Waterborne 0 (not applicable)
## 285 Waterborne 0 (not applicable)
## 286 Waterborne 0 (not applicable)
## 287 Person to Person 0 (not applicable)
## 288 Person to Person 0 Environmental
## 289 Unknown 0 (not applicable)
## 290 Foodborne 0 (not applicable)
## 291 Foodborne 0 (not applicable)
## 292 Unspecified 0 (not applicable)
## 293 Waterborne 0 Person to Person
## 294 Unspecified 0 (not applicable)
## 295 Unspecified 0 (not applicable)
## 296 Unspecified 0 (not applicable)
## 297 Unspecified 0 (not applicable)
## 298 Unspecified 0 (not applicable)
## 299 Unspecified 0 (not applicable)
## 300 Waterborne 0 (not applicable)
## 301 Unspecified 0 (not applicable)
## 302 Unspecified 0 (not applicable)
## 303 Unspecified 0 (not applicable)
## 304 Unspecified 0 (not applicable)
## 305 Unspecified 0 (not applicable)
## 306 Unspecified 0 (not applicable)
## 307 Waterborne 0 Person to Person
## 308 Foodborne 0 Person to Person
## 309 Foodborne 0 Person to Person
## 310 Waterborne 0 (not applicable)
## 311 Person to Person 0 (not applicable)
## 312 Unspecified 0 (not applicable)
## 313 Person to Person 0 (not applicable)
## 314 Person to Person 0 (not applicable)
## 315 Person to Person 0 (not applicable)
## 316 Person to Person 0 (not applicable)
## 317 Foodborne 0 (not applicable)
## 318 Waterborne 0 Person to Person
## 319 Unspecified 0 (not applicable)
## 320 Unspecified 0 (not applicable)
## 321 Unspecified 0 (not applicable)
## 322 Unspecified 0 (not applicable)
## 323 Unspecified 0 (not applicable)
## 324 Unspecified 0 (not applicable)
## 325 Unknown 0 (not applicable)
## 326 Unknown 0 (not applicable)
## 327 Unknown 0 (not applicable)
## 328 Unknown 0 (not applicable)
## 329 Unknown 0 (not applicable)
## 330 Unknown 0 (not applicable)
## 331 Foodborne 0 (not applicable)
## 332 Unknown 0 (not applicable)
## 333 Foodborne 0 (not applicable)
## 334 Foodborne 0 (not applicable)
## 335 Foodborne 0 (not applicable)
## 336 Foodborne 0 (not applicable)
## 337 Foodborne 0 (not applicable)
## 338 Foodborne 0 (not applicable)
## 339 Foodborne 0 (not applicable)
## 340 Foodborne 0 (not applicable)
## 341 Foodborne 0 (not applicable)
## 342 Foodborne 0 (not applicable)
## 343 Foodborne 0 (not applicable)
## 344 Foodborne 0 Person to Person
## 345 Foodborne 0 (not applicable)
## 346 Foodborne 0 (not applicable)
## 347 Unspecified 0 (not applicable)
## 348 Person to Person 0 (not applicable)
## 349 Unknown 0 (not applicable)
## 350 confirmed Foodborne 0 (not applicable)
## 351 Foodborne 0 (not applicable)
## 352 Unspecified 0 (not applicable)
## 353 Unspecified 0 (not applicable)
## 354 Unspecified 0 (not applicable)
## 355 Person to Person 0 (not applicable)
## 356 Person to Person 0 (not applicable)
## 357 Unknown 0 (not applicable)
## 358 Person to Person 0 (not applicable)
## 359 Unspecified 0 (not applicable)
## 360 Waterborne 0 Foodborne
## 361 Unknown 0 (not applicable)
## 362 Foodborne 0 Person to Person
## 363 Unspecified 0 (not applicable)
## 364 Unspecified 0 (not applicable)
## 365 Unspecified 0 (not applicable)
## 366 Unspecified 0 (not applicable)
## 367 Person to Person 0 (not applicable)
## 368 Unspecified 0 (not applicable)
## 369 Foodborne 0 (not applicable)
## 370 Foodborne 0 (not applicable)
## 371 Foodborne 0 (not applicable)
## 372 Foodborne 0 (not applicable)
## 373 Person to Person 0 (not applicable)
## 374 Person to Person 0 (not applicable)
## 375 Person to Person 0 (not applicable)
## 376 Person to Person 0 (not applicable)
## 377 Person to Person 0 (not applicable)
## 378 Person to Person 0 (not applicable)
## 379 Person to Person 0 (not applicable)
## 380 Person to Person 0 (not applicable)
## 381 Person to Person 0 (not applicable)
## 382 Person to Person 0 (not applicable)
## 383 Person to Person 0 (not applicable)
## 384 Unspecified 0 (not applicable)
## 385 Unspecified 0 (not applicable)
## 386 Unspecified 0 (not applicable)
## 387 confirmed Unspecified 0 (not applicable)
## 388 Foodborne 0 (not applicable)
## 389 Foodborne 0 (not applicable)
## 390 Waterborne 0 (not applicable)
## 391 Foodborne 0 (not applicable)
## 392 Waterborne 0 (not applicable)
## 393 Waterborne 0 Person to Person
## 394 Foodborne 0 (not applicable)
## 395 Foodborne 0 (not applicable)
## 396 Foodborne 0 (not applicable)
## 397 Foodborne 0 (not applicable)
## 398 Foodborne 0 (not applicable)
## 399 Foodborne 0 (not applicable)
## 400 Foodborne 0 (not applicable)
## 401 Foodborne 0 (not applicable)
## 402 Person to Person 0 Environmental
## 403 Waterborne 0 Foodborne
## 404 Unspecified 0 (not applicable)
## 405 Unspecified 0 (not applicable)
## 406 Person to Person 0 (not applicable)
## 407 Person to Person 0 (not applicable)
## 408 Unspecified 0 (not applicable)
## 409 Waterborne 0 (not applicable)
## 410 Unknown 0 (not applicable)
## 411 Person to Person 0 (not applicable)
## 412 Person to Person 0 (not applicable)
## 413 Unspecified 0 (not applicable)
## 414 Person to Person 0 (not applicable)
## 415 Foodborne 0 (not applicable)
## 416 Foodborne 0 (not applicable)
## 417 Foodborne 0 (not applicable)
## 418 Person to Person 0 (not applicable)
## 419 Person to Person 0 (not applicable)
## 420 Unspecified 0 (not applicable)
## 421 Unspecified 0 (not applicable)
## 422 Unspecified 0 (not applicable)
## 423 Unspecified 0 (not applicable)
## 424 Unspecified 0 (not applicable)
## 425 Person to Person 0 Environmental
## 426 Foodborne 0 (not applicable)
## 427 Foodborne 0 (not applicable)
## 428 Waterborne 0 (not applicable)
## 429 Unknown 0 (not applicable)
## 430 Unknown 0 (not applicable)
## 431 Foodborne 0 (not applicable)
## 432 Foodborne 0 (not applicable)
## 433 Unspecified 0 (not applicable)
## 434 Waterborne 0 (not applicable)
## 435 Foodborne 0 (not applicable)
## 436 Waterborne 0 (not applicable)
## 437 Foodborne 0 (not applicable)
## 438 Foodborne 0 (not applicable)
## 439 Foodborne 0 (not applicable)
## 440 Foodborne 0 (not applicable)
## 441 Foodborne 0 (not applicable)
## 442 Foodborne 0 (not applicable)
## 443 Waterborne 0 (not applicable)
## 444 Waterborne 0 (not applicable)
## 445 Unspecified 0 (not applicable)
## 446 Foodborne 0 (not applicable)
## 447 Waterborne 0 (not applicable)
## 448 Waterborne 0 (not applicable)
## 449 Waterborne 0 (not applicable)
## 450 Foodborne 0 (not applicable)
## 451 Foodborne 0 Environmental
## 452 Person to Person 0 Environmental
## 453 Waterborne 0 (not applicable)
## 454 Waterborne 0 (not applicable)
## 455 Waterborne 0 (not applicable)
## 456 Waterborne 0 (not applicable)
## 457 Waterborne 0 (not applicable)
## 458 Waterborne 0 (not applicable)
## 459 Unknown 0 (not applicable)
## 460 Waterborne 0 Environmental
## 461 Person to Person 0 (not applicable)
## 462 Person to Person 0 (not applicable)
## 463 Environmental 0 (not applicable)
## 464 Unspecified 0 (not applicable)
## 465 Foodborne 0 (not applicable)
## 466 Unspecified 0 (not applicable)
## 467 Person to Person 0 (not applicable)
## 468 Foodborne 0 Person to Person
## 469 Foodborne 0 Person to Person
## 470 Waterborne 0 Person to Person
## 471 Foodborne 0 (not applicable)
## 472 Foodborne 0 (not applicable)
## 473 Foodborne 0 (not applicable)
## 474 Foodborne 0 (not applicable)
## 475 Foodborne 0 (not applicable)
## 476 Foodborne 0 (not applicable)
## 477 Foodborne 0 (not applicable)
## 478 Foodborne 0 (not applicable)
## 479 Person to Person 0 (not applicable)
## 480 Person to Person 0 (not applicable)
## 481 Person to Person 0 Environmental
## 482 Foodborne 0 (not applicable)
## 483 Foodborne 0 (not applicable)
## 484 Person to Person 0 (not applicable)
## 485 Foodborne 0 (not applicable)
## 486 Waterborne 0 (not applicable)
## 487 Unspecified 0 (not applicable)
## 488 Person to Person 0 (not applicable)
## 489 Person to Person 0 Environmental
## 490 Foodborne 0 (not applicable)
## 491 Foodborne 0 (not applicable)
## 492 Unknown 0 (not applicable)
## 493 Unknown 0 (not applicable)
## 494 Unknown 0 (not applicable)
## 495 Foodborne 0 Person to Person
## 496 Unspecified 0 (not applicable)
## 497 Waterborne 0 Person to Person
## 498 Waterborne 0 (not applicable)
## 499 Unspecified 0 (not applicable)
## 500 Unspecified 0 (not applicable)
## 501 Unspecified 0 (not applicable)
## 502 Unspecified 0 (not applicable)
## 503 Unspecified 0 (not applicable)
## 504 Unspecified 0 (not applicable)
## 505 Person to Person 0 (not applicable)
## 506 Unspecified 0 (not applicable)
## 507 Person to Person 0 (not applicable)
## 508 Waterborne 0 (not applicable)
## 509 Unspecified 0 (not applicable)
## 510 Unspecified 0 (not applicable)
## 511 Waterborne 0 Person to Person
## 512 confirmed Foodborne 0 (not applicable)
## 513 confirmed Waterborne 0 Foodborne
## 514 Foodborne 0 (not applicable)
## 515 Foodborne 0 (not applicable)
## 516 Foodborne 0 (not applicable)
## 517 Foodborne 0 (not applicable)
## 518 Foodborne 0 (not applicable)
## 519 Foodborne 0 (not applicable)
## 520 Foodborne 0 (not applicable)
## 521 Foodborne 0 (not applicable)
## 522 Foodborne 0 (not applicable)
## 523 Foodborne 0 (not applicable)
## 524 Waterborne 0 (not applicable)
## 525 Unspecified 0 (not applicable)
## 526 Person to Person 0 Environmental
## 527 Waterborne 0 Person to Person
## 528 Unspecified 0 (not applicable)
## 529 Foodborne 0 (not applicable)
## 530 Waterborne 0 (not applicable)
## 531 Foodborne 0 Environmental
## 532 Environmental 0 Person to Person
## 533 Waterborne 0 (not applicable)
## 534 Person to Person 0 (not applicable)
## 535 Foodborne 0 (not applicable)
## 536 Person to Person 0 (not applicable)
## 537 Person to Person 0 (not applicable)
## 538 Environmental 0 (not applicable)
## 539 Foodborne 0 (not applicable)
## 540 Foodborne 0 (not applicable)
## 541 Unspecified 0 (not applicable)
## 542 Unspecified 0 (not applicable)
## 543 Unspecified 0 (not applicable)
## 544 Unspecified 0 (not applicable)
## 545 Unspecified 0 (not applicable)
## 546 Unspecified 0 (not applicable)
## 547 Foodborne 0 (not applicable)
## 548 Foodborne 0 (not applicable)
## 549 Environmental 0 Person to Person
## 550 confirmed Foodborne 0 (not applicable)
## 551 Environmental 0 (not applicable)
## 552 Person to Person 0 Environmental
## 553 Waterborne 0 (not applicable)
## 554 Person to Person 0 (not applicable)
## 555 Person to Person 0 (not applicable)
## 556 Person to Person 0 Environmental
## 557 Foodborne 0 (not applicable)
## 558 Person to Person 0 (not applicable)
## 559 Person to Person 0 (not applicable)
## 560 Foodborne 0 (not applicable)
## 561 Unspecified 0 (not applicable)
## 562 Unspecified 0 (not applicable)
## 563 Unspecified 0 (not applicable)
## 564 Unspecified 0 (not applicable)
## 565 Foodborne 0 (not applicable)
## 566 Unspecified 0 (not applicable)
## 567 Foodborne 0 (not applicable)
## 568 Unspecified 0 (not applicable)
## 569 Unspecified 0 (not applicable)
## 570 Unspecified 0 (not applicable)
## 571 Foodborne 0 (not applicable)
## 572 Person to Person 0 (not applicable)
## 573 Unspecified 0 (not applicable)
## 574 Foodborne 0 (not applicable)
## 575 Person to Person 0 (not applicable)
## 576 Foodborne 0 (not applicable)
## 577 Unspecified 0 (not applicable)
## 578 Unspecified 0 (not applicable)
## 579 Person to Person 0 (not applicable)
## 580 Unspecified 0 (not applicable)
## 581 Foodborne 0 (not applicable)
## 582 Unspecified 0 (not applicable)
## 583 Unspecified 0 (not applicable)
## 584 Unspecified 0 (not applicable)
## 585 Foodborne 0 (not applicable)
## 586 Unspecified 0 (not applicable)
## 587 Person to Person 0 (not applicable)
## 588 Person to Person 0 (not applicable)
## 589 Person to Person 0 (not applicable)
## 590 Foodborne 0 (not applicable)
## 591 Unspecified 0 (not applicable)
## 592 Person to Person 0 (not applicable)
## 593 Waterborne 0 (not applicable)
## 594 Unspecified 0 (not applicable)
## 595 Foodborne 0 (not applicable)
## 596 Unknown 0 (not applicable)
## 597 Unknown 0 (not applicable)
## 598 Unknown 0 (not applicable)
## 599 Foodborne 0 (not applicable)
## 600 Unknown 0 (not applicable)
## 601 Unknown 0 (not applicable)
## 602 Foodborne 0 (not applicable)
## 603 Unknown 0 (not applicable)
## 604 Foodborne 0 (not applicable)
## 605 Unknown 0 (not applicable)
## 606 Foodborne 0 (not applicable)
## 607 Unknown 0 (not applicable)
## 608 Foodborne 0 (not applicable)
## 609 Person to Person 0 (not applicable)
## 610 Foodborne 0 (not applicable)
## 611 Foodborne 0 (not applicable)
## 612 Foodborne 0 (not applicable)
## 613 Foodborne 0 (not applicable)
## 614 Unknown 0 (not applicable)
## 615 Foodborne 0 (not applicable)
## 616 Foodborne 0 (not applicable)
## 617 Foodborne 0 (not applicable)
## 618 Foodborne 0 (not applicable)
## 619 Foodborne 0 (not applicable)
## 620 Foodborne 0 (not applicable)
## 621 Foodborne 0 (not applicable)
## 622 Foodborne 0 (not applicable)
## 623 Unknown 0 (not applicable)
## 624 Unknown 0 (not applicable)
## 625 Foodborne 0 (not applicable)
## 626 Foodborne 0 (not applicable)
## 627 Unknown 0 (not applicable)
## 628 Foodborne 0 (not applicable)
## 629 Foodborne 0 (not applicable)
## 630 Foodborne 0 (not applicable)
## 631 Foodborne 0 (not applicable)
## 632 Foodborne 0 (not applicable)
## 633 Unknown 0 (not applicable)
## 634 Foodborne 0 (not applicable)
## 635 Foodborne 0 (not applicable)
## 636 Foodborne 0 (not applicable)
## 637 Unknown 0 (not applicable)
## 638 Foodborne 0 (not applicable)
## 639 Foodborne 0 (not applicable)
## 640 Foodborne 0 (not applicable)
## 641 Unknown 0 (not applicable)
## 642 Unknown 0 (not applicable)
## 643 Unknown 0 (not applicable)
## 644 probably not usable Person to Person 0 Environmental
## 645 Person to Person 0 Environmental
## 646 Foodborne 0 (not applicable)
## 647 Foodborne 0 (not applicable)
## 648 Foodborne 0 (not applicable)
## 649 Foodborne 0 (not applicable)
## 650 Foodborne 0 (not applicable)
## 651 Foodborne 0 (not applicable)
## 652 Foodborne 0 (not applicable)
## 653 Foodborne 0 (not applicable)
## 654 Foodborne 0 (not applicable)
## 655 Foodborne 0 (not applicable)
## 656 Foodborne 0 (not applicable)
## 657 Foodborne 0 (not applicable)
## 658 Foodborne 0 (not applicable)
## 659 Unspecified 0 (not applicable)
## 660 Unspecified 0 (not applicable)
## 661 Unspecified 0 (not applicable)
## 662 Unspecified 0 (not applicable)
## 663 Unspecified 0 (not applicable)
## 664 Unspecified 0 (not applicable)
## 665 Unspecified 0 (not applicable)
## 666 Unspecified 0 (not applicable)
## 667 Unspecified 0 (not applicable)
## 668 Unspecified 0 (not applicable)
## 669 Unspecified 0 (not applicable)
## 670 Unspecified 0 (not applicable)
## 671 Unspecified 0 (not applicable)
## 672 Unspecified 0 (not applicable)
## 673 Foodborne 0 (not applicable)
## 674 Foodborne 0 (not applicable)
## 675 Foodborne 0 (not applicable)
## 676 Foodborne 0 (not applicable)
## 677 Unspecified 0 (not applicable)
## 678 Unspecified 0 (not applicable)
## 679 Person to Person 0 (not applicable)
## 680 Person to Person 0 (not applicable)
## 681 Foodborne 0 (not applicable)
## 682 Waterborne 0 Environmental
## 683 Person to Person 0 (not applicable)
## 684 Foodborne 0 (not applicable)
## 685 Foodborne 0 (not applicable)
## 686 Waterborne 0 (not applicable)
## 687 Person to Person 0 Environmental
## 688 Person to Person 0 Environmental
## 689 Foodborne 0 (not applicable)
## 690 Foodborne 0 (not applicable)
## 691 Unspecified 0 (not applicable)
## 692 Waterborne 0 (not applicable)
## 693 Foodborne 0 (not applicable)
## 694 Foodborne 0 (not applicable)
## 695 Foodborne 0 (not applicable)
## 696 Foodborne 0 (not applicable)
## 697 Foodborne 0 (not applicable)
## 698 Foodborne 0 (not applicable)
## 699 Foodborne 0 (not applicable)
## 700 Foodborne 0 (not applicable)
## 701 Unspecified 0 (not applicable)
## 702 Unspecified 0 (not applicable)
## 703 Foodborne 0 (not applicable)
## 704 Foodborne 0 (not applicable)
## 705 Unspecified 0 (not applicable)
## 706 Foodborne 0 (not applicable)
## 707 Person to Person 0 (not applicable)
## 708 Unspecified 0 (not applicable)
## 709 Person to Person 0 (not applicable)
## 710 Waterborne 0 (not applicable)
## 711 Waterborne 0 (not applicable)
## 712 Waterborne 0 (not applicable)
## 713 Waterborne 0 (not applicable)
## 714 Person to Person 0 (not applicable)
## Trans2_O Trans3 Trans3_O Risk1 Risk2 RiskAll
## 1 0 (not applicable) 0 0.00000 NA 0.00000
## 2 0 (not applicable) 0 108.00000 NA 108.00000
## 3 0 (not applicable) 0 130.00000 NA 130.00000
## 4 0 (not applicable) 0 4.00000 NA 4.00000
## 5 0 (not applicable) 0 25.00000 NA 25.00000
## 6 0 (not applicable) 0 8.00000 NA 8.00000
## 7 0 (not applicable) 0 48.00000 NA 48.00000
## 8 0 (not applicable) 0 12.00000 NA 12.00000
## 9 0 (not applicable) 0 220.00000 NA 220.00000
## 10 0 (not applicable) 0 71.42857 NA 71.42857
## 11 0 (not applicable) 0 0.00000 NA 0.00000
## 12 0 (not applicable) 0 509.00000 NA 509.00000
## 13 0 (not applicable) 0 36.00000 NA 36.00000
## 14 0 (not applicable) 0 0.00000 NA 0.00000
## 15 0 (not applicable) 0 2925.00000 NA 2925.00000
## 16 0 (not applicable) 0 3826.00000 NA 3826.00000
## 17 0 (not applicable) 0 1280.00000 NA 1280.00000
## 18 0 (not applicable) 0 24000.00000 NA 24000.00000
## 19 0 (not applicable) 0 53.00000 NA 53.00000
## 20 0 (not applicable) 0 4200.00000 NA 4200.00000
## 21 0 (not applicable) 0 0.00000 NA 0.00000
## 22 0 (not applicable) 0 0.00000 NA 0.00000
## 23 0 (not applicable) 0 0.00000 NA 0.00000
## 24 0 (not applicable) 0 0.00000 NA 0.00000
## 25 0 (not applicable) 0 0.00000 NA 0.00000
## 26 0 (not applicable) 0 0.00000 NA 0.00000
## 27 0 (not applicable) 0 0.00000 NA 0.00000
## 28 0 (not applicable) 0 0.00000 NA 0.00000
## 29 0 (not applicable) 0 0.00000 NA 0.00000
## 30 0 (not applicable) 0 0.00000 NA 0.00000
## 31 0 (not applicable) 0 0.00000 NA 0.00000
## 32 0 (not applicable) 0 0.00000 NA 0.00000
## 33 0 (not applicable) 0 0.00000 NA 0.00000
## 34 0 (not applicable) 0 0.00000 NA 0.00000
## 35 0 (not applicable) 0 38.00000 NA 38.00000
## 36 0 (not applicable) 0 0.00000 NA 0.00000
## 37 0 (not applicable) 0 0.00000 NA 0.00000
## 38 0 (not applicable) 0 0.00000 NA 0.00000
## 39 0 (not applicable) 0 0.00000 NA 0.00000
## 40 0 (not applicable) 0 13.00000 NA 13.00000
## 41 0 (not applicable) 0 135.00000 NA 135.00000
## 42 0 (not applicable) 0 113.00000 NA 113.00000
## 43 0 (not applicable) 0 83.00000 NA 83.00000
## 44 0 (not applicable) 0 0.00000 NA 0.00000
## 45 0 (not applicable) 0 58.00000 NA 58.00000
## 46 0 (not applicable) 0 1492.00000 NA 1492.00000
## 47 0 (not applicable) 0 72.00000 NA 72.00000
## 48 0 (not applicable) 0 1800.00000 NA 1800.00000
## 49 0 (not applicable) 0 53.00000 NA 53.00000
## 50 0 (not applicable) 0 0.00000 NA 0.00000
## 51 0 Environmental 0 1276.00000 NA 1276.00000
## 52 0 (not applicable) 0 13.00000 NA 13.00000
## 53 0 (not applicable) 0 23.00000 NA 23.00000
## 54 0 (not applicable) 0 6.00000 NA 6.00000
## 55 0 (not applicable) 0 0.00000 NA 0.00000
## 56 0 (not applicable) 0 20.00000 NA 20.00000
## 57 0 (not applicable) 0 103.00000 NA 103.00000
## 58 0 (not applicable) 0 128.00000 NA 128.00000
## 59 0 (not applicable) 0 20.00000 NA 20.00000
## 60 0 (not applicable) 0 37.00000 NA 37.00000
## 61 0 (not applicable) 0 72.00000 NA 72.00000
## 62 0 (not applicable) 0 127.00000 67.0000 194.00000
## 63 0 (not applicable) 0 0.00000 NA 0.00000
## 64 0 (not applicable) 0 1357.00000 NA 1357.00000
## 65 0 (not applicable) 0 224.00000 NA 224.00000
## 66 0 (not applicable) 0 66.00000 NA 66.00000
## 67 0 Environmental 0 0.00000 NA 0.00000
## 68 0 (not applicable) 0 0.00000 NA 0.00000
## 69 0 (not applicable) 0 0.00000 NA 0.00000
## 70 0 (not applicable) 0 0.00000 NA 0.00000
## 71 0 (not applicable) 0 0.00000 NA 0.00000
## 72 0 (not applicable) 0 0.00000 NA 0.00000
## 73 0 (not applicable) 0 0.00000 NA 0.00000
## 74 0 (not applicable) 0 0.00000 NA 0.00000
## 75 0 (not applicable) 0 0.00000 NA 0.00000
## 76 0 (not applicable) 0 0.00000 NA 0.00000
## 77 0 (not applicable) 0 0.00000 NA 0.00000
## 78 0 (not applicable) 0 0.00000 NA 0.00000
## 79 0 (not applicable) 0 0.00000 NA 0.00000
## 80 0 (not applicable) 0 0.00000 NA 0.00000
## 81 0 (not applicable) 0 0.00000 NA 0.00000
## 82 0 (not applicable) 0 0.00000 NA 0.00000
## 83 0 (not applicable) 0 0.00000 NA 0.00000
## 84 0 (not applicable) 0 0.00000 NA 0.00000
## 85 0 (not applicable) 0 0.00000 NA 0.00000
## 86 0 (not applicable) 0 100.00000 NA 100.00000
## 87 0 (not applicable) 0 25.00000 NA 25.00000
## 88 0 (not applicable) 0 0.00000 NA 0.00000
## 89 0 (not applicable) 0 960.00000 NA 960.00000
## 90 0 (not applicable) 0 105.00000 NA 105.00000
## 91 0 (not applicable) 0 0.00000 NA 0.00000
## 92 0 (not applicable) 0 0.00000 NA 0.00000
## 93 0 (not applicable) 0 211.00000 NA 211.00000
## 94 0 (not applicable) 0 48.00000 NA 48.00000
## 95 0 (not applicable) 0 78.00000 NA 78.00000
## 96 0 (not applicable) 0 68.00000 NA 68.00000
## 97 0 (not applicable) 0 111.00000 NA 111.00000
## 98 0 (not applicable) 0 0.00000 NA 0.00000
## 99 0 (not applicable) 0 0.00000 NA 0.00000
## 100 0 Foodborne 0 907.00000 NA 907.00000
## 101 0 (not applicable) 0 82.00000 NA 82.00000
## 102 0 (not applicable) 0 153.00000 NA 153.00000
## 103 0 (not applicable) 0 204.00000 NA 204.00000
## 104 0 (not applicable) 0 0.00000 NA 0.00000
## 105 0 (not applicable) 0 37.00000 NA 37.00000
## 106 0 (not applicable) 0 147.00000 66.0000 213.00000
## 107 0 (not applicable) 0 28.00000 NA 28.00000
## 108 0 (not applicable) 0 3.00000 NA 3.00000
## 109 0 (not applicable) 0 129.00000 NA 129.00000
## 110 0 (not applicable) 0 16.00000 NA 16.00000
## 111 0 (not applicable) 0 550.00000 NA 550.00000
## 112 0 (not applicable) 0 300.00000 NA 300.00000
## 113 0 (not applicable) 0 108.00000 NA 108.00000
## 114 0 (not applicable) 0 73.00000 NA 73.00000
## 115 0 (not applicable) 0 0.00000 NA 0.00000
## 116 0 (not applicable) 0 550.00000 NA 550.00000
## 117 0 (not applicable) 0 175.00000 NA 175.00000
## 118 0 (not applicable) 0 179.00000 NA 179.00000
## 119 0 (not applicable) 0 0.00000 NA 0.00000
## 120 0 (not applicable) 0 0.00000 NA 0.00000
## 121 0 (not applicable) 0 2925.00000 NA 2925.00000
## 122 0 (not applicable) 0 112.00000 NA 112.00000
## 123 0 Environmental 0 7454.00000 NA 7454.00000
## 124 0 Environmental 0 6761.00000 NA 6761.00000
## 125 0 (not applicable) 0 10276.00000 NA 10276.00000
## 126 0 (not applicable) 0 171.00000 NA 171.00000
## 127 0 (not applicable) 0 170.00000 NA 170.00000
## 128 0 (not applicable) 0 300.00000 NA 300.00000
## 129 0 (not applicable) 0 10000.00000 NA 10000.00000
## 130 0 (not applicable) 0 673.00000 NA 673.00000
## 131 0 (not applicable) 0 108.00000 NA 108.00000
## 132 0 (not applicable) 0 355.00000 NA 355.00000
## 133 0 (not applicable) 0 6985.00000 NA 6985.00000
## 134 0 (not applicable) 0 1744.00000 NA 1744.00000
## 135 0 (not applicable) 0 5270.00000 NA 5270.00000
## 136 0 (not applicable) 0 3868.00000 NA 3868.00000
## 137 0 (not applicable) 0 6180.00000 NA 6180.00000
## 138 0 (not applicable) 0 72.00000 NA 72.00000
## 139 0 (not applicable) 0 71.00000 NA 71.00000
## 140 0 (not applicable) 0 54.00000 NA 54.00000
## 141 0 (not applicable) 0 65.00000 NA 65.00000
## 142 0 (not applicable) 0 107.00000 NA 107.00000
## 143 0 (not applicable) 0 37.00000 85.0000 122.00000
## 144 0 (not applicable) 0 30.00000 NA 30.00000
## 145 0 (not applicable) 0 69.00000 NA 69.00000
## 146 0 (not applicable) 0 30.00000 NA 30.00000
## 147 0 (not applicable) 0 83.00000 NA 83.00000
## 148 0 Other smoking 284.00000 NA 284.00000
## 149 0 (not applicable) 0 1714.00000 NA 1714.00000
## 150 0 (not applicable) 0 361.00000 NA 361.00000
## 151 0 (not applicable) 0 0.00000 NA 0.00000
## 152 0 (not applicable) 0 0.00000 NA NA
## 153 0 (not applicable) 0 0.00000 NA NA
## 154 0 (not applicable) 0 0.00000 NA NA
## 155 0 (not applicable) 0 0.00000 NA NA
## 156 0 (not applicable) 0 0.00000 NA NA
## 157 0 (not applicable) 0 0.00000 NA NA
## 158 0 (not applicable) 0 0.00000 NA NA
## 159 0 (not applicable) 0 0.00000 NA NA
## 160 0 (not applicable) 0 0.00000 NA NA
## 161 0 (not applicable) 0 0.00000 NA NA
## 162 0 (not applicable) 0 0.00000 NA NA
## 163 0 (not applicable) 0 0.00000 NA NA
## 164 0 (not applicable) 0 0.00000 NA NA
## 165 0 (not applicable) 0 325.00000 NA 325.00000
## 166 0 (not applicable) 0 400.00000 NA 400.00000
## 167 0 (not applicable) 0 132.00000 NA 132.00000
## 168 0 (not applicable) 0 36.00000 NA 36.00000
## 169 0 (not applicable) 0 0.00000 NA 0.00000
## 170 0 (not applicable) 0 13648.00000 NA 13648.00000
## 171 0 (not applicable) 0 14.00000 NA 14.00000
## 172 0 (not applicable) 0 23.00000 NA 23.00000
## 173 0 (not applicable) 0 130.00000 NA 130.00000
## 174 0 (not applicable) 0 158.00000 NA 158.00000
## 175 0 (not applicable) 0 0.00000 NA 0.00000
## 176 0 (not applicable) 0 0.00000 NA 0.00000
## 177 0 (not applicable) 0 0.00000 NA 0.00000
## 178 0 (not applicable) 0 37.00000 NA 37.00000
## 179 0 (not applicable) 0 0.00000 NA 0.00000
## 180 0 (not applicable) 0 29.00000 NA 29.00000
## 181 0 (not applicable) 0 95.00000 NA 95.00000
## 182 0 (not applicable) 0 18.00000 NA 18.00000
## 183 0 (not applicable) 0 0.00000 NA 0.00000
## 184 0 (not applicable) 0 0.00000 NA 0.00000
## 185 0 (not applicable) 0 1276.00000 NA 1276.00000
## 186 0 (not applicable) 0 0.00000 NA 0.00000
## 187 0 (not applicable) 0 0.00000 NA 0.00000
## 188 0 (not applicable) 0 2054.00000 NA 2054.00000
## 189 0 (not applicable) 0 0.00000 NA 0.00000
## 190 0 (not applicable) 0 0.00000 NA 0.00000
## 191 0 (not applicable) 0 0.00000 NA 0.00000
## 192 0 (not applicable) 0 113.00000 NA 113.00000
## 193 0 (not applicable) 0 0.00000 NA 0.00000
## 194 0 (not applicable) 0 0.00000 NA 0.00000
## 195 0 (not applicable) 0 7169.00000 NA 7169.00000
## 196 0 (not applicable) 0 370.00000 NA 370.00000
## 197 0 (not applicable) 0 524.00000 NA 524.00000
## 198 0 (not applicable) 0 56.00000 NA 56.00000
## 199 0 (not applicable) 0 0.00000 NA 0.00000
## 200 0 (not applicable) 0 0.00000 NA 0.00000
## 201 0 (not applicable) 0 49.00000 NA 49.00000
## 202 0 (not applicable) 0 266.00000 NA 266.00000
## 203 0 (not applicable) 0 165.00000 NA 165.00000
## 204 0 (not applicable) 0 0.00000 NA 0.00000
## 205 0 (not applicable) 0 96.00000 NA 96.00000
## 206 0 (not applicable) 0 0.00000 NA 0.00000
## 207 0 (not applicable) 0 118.00000 NA 118.00000
## 208 0 (not applicable) 0 23.00000 NA 23.00000
## 209 0 (not applicable) 0 20.00000 NA 20.00000
## 210 0 (not applicable) 0 0.00000 NA 0.00000
## 211 0 (not applicable) 0 500.00000 NA 500.00000
## 212 0 (not applicable) 0 2.00000 NA 2.00000
## 213 0 (not applicable) 0 4.00000 NA 4.00000
## 214 0 (not applicable) 0 112.00000 NA 112.00000
## 215 0 (not applicable) 0 0.00000 NA 0.00000
## 216 0 (not applicable) 0 26.00000 NA 26.00000
## 217 0 (not applicable) 0 25.00000 NA 25.00000
## 218 0 (not applicable) 0 0.00000 NA 0.00000
## 219 0 (not applicable) 0 13.00000 NA 13.00000
## 220 0 (not applicable) 0 0.00000 NA 0.00000
## 221 0 (not applicable) 0 0.00000 NA 0.00000
## 222 0 (not applicable) 0 10.00000 NA 10.00000
## 223 0 (not applicable) 0 12.00000 NA 12.00000
## 224 0 (not applicable) 0 3.00000 NA 3.00000
## 225 0 (not applicable) 0 2.00000 NA 2.00000
## 226 0 (not applicable) 0 60.00000 NA 60.00000
## 227 0 (not applicable) 0 0.00000 NA 0.00000
## 228 0 (not applicable) 0 0.00000 NA 0.00000
## 229 0 (not applicable) 0 71.00000 NA 71.00000
## 230 0 (not applicable) 0 0.00000 NA 0.00000
## 231 0 (not applicable) 0 565.00000 NA 565.00000
## 232 0 (not applicable) 0 14.00000 NA 14.00000
## 233 0 (not applicable) 0 0.00000 NA 0.00000
## 234 0 (not applicable) 0 796.00000 NA 796.00000
## 235 0 (not applicable) 0 0.00000 NA 0.00000
## 236 0 (not applicable) 0 176.00000 NA 176.00000
## 237 0 (not applicable) 0 0.00000 NA 0.00000
## 238 0 (not applicable) 0 0.00000 NA 0.00000
## 239 0 (not applicable) 0 5.00000 NA 5.00000
## 240 0 (not applicable) 0 0.00000 NA 0.00000
## 241 0 (not applicable) 0 0.00000 NA 0.00000
## 242 0 (not applicable) 0 219.00000 195.4545 414.45455
## 243 0 Foodborne 0 27.00000 NA 27.00000
## 244 0 (not applicable) 0 5.00000 NA 5.00000
## 245 0 (not applicable) 0 34.00000 NA 34.00000
## 246 0 (not applicable) 0 17.00000 NA 17.00000
## 247 0 (not applicable) 0 24.00000 NA 24.00000
## 248 0 (not applicable) 0 53.00000 NA 53.00000
## 249 0 (not applicable) 0 12.00000 NA 12.00000
## 250 0 (not applicable) 0 8.00000 NA 8.00000
## 251 0 (not applicable) 0 2.00000 NA 2.00000
## 252 0 (not applicable) 0 6.00000 NA 6.00000
## 253 0 (not applicable) 0 212.00000 NA 212.00000
## 254 0 (not applicable) 0 60.00000 NA 60.00000
## 255 0 (not applicable) 0 34.00000 NA 34.00000
## 256 0 (not applicable) 0 33.00000 NA 33.00000
## 257 0 (not applicable) 0 38.00000 NA 38.00000
## 258 0 (not applicable) 0 3.00000 NA 3.00000
## 259 0 (not applicable) 0 19.00000 NA 19.00000
## 260 0 (not applicable) 0 11.00000 NA 11.00000
## 261 0 (not applicable) 0 139.00000 NA 139.00000
## 262 0 (not applicable) 0 309.00000 NA 309.00000
## 263 0 (not applicable) 0 207.00000 NA 207.00000
## 264 0 (not applicable) 0 0.00000 NA 0.00000
## 265 0 (not applicable) 0 672.00000 NA 672.00000
## 266 0 (not applicable) 0 0.00000 NA 0.00000
## 267 0 (not applicable) 0 61.90476 NA 61.90476
## 268 0 (not applicable) 0 0.00000 NA 0.00000
## 269 0 (not applicable) 0 0.00000 NA 0.00000
## 270 0 (not applicable) 0 0.00000 NA 0.00000
## 271 0 (not applicable) 0 0.00000 NA 0.00000
## 272 0 (not applicable) 0 0.00000 NA 0.00000
## 273 0 (not applicable) 0 0.00000 NA 0.00000
## 274 0 (not applicable) 0 0.00000 NA 0.00000
## 275 0 (not applicable) 0 0.00000 NA 0.00000
## 276 0 (not applicable) 0 0.00000 NA 0.00000
## 277 0 (not applicable) 0 0.00000 NA 0.00000
## 278 0 (not applicable) 0 0.00000 NA 0.00000
## 279 0 (not applicable) 0 0.00000 NA 0.00000
## 280 0 (not applicable) 0 0.00000 NA 0.00000
## 281 0 (not applicable) 0 15000.00000 NA 15000.00000
## 282 0 (not applicable) 0 160.00000 NA 160.00000
## 283 0 (not applicable) 0 50.00000 NA 50.00000
## 284 0 (not applicable) 0 150.00000 NA 150.00000
## 285 0 (not applicable) 0 56.00000 NA 56.00000
## 286 0 (not applicable) 0 90.00000 NA 90.00000
## 287 0 (not applicable) 0 0.00000 NA 0.00000
## 288 0 (not applicable) 0 11.00000 NA 11.00000
## 289 0 (not applicable) 0 38.00000 NA 38.00000
## 290 0 (not applicable) 0 0.00000 NA 0.00000
## 291 0 (not applicable) 0 0.00000 NA 0.00000
## 292 0 (not applicable) 0 74.00000 NA 74.00000
## 293 0 Environmental 0 0.00000 NA 0.00000
## 294 0 (not applicable) 0 0.00000 NA 0.00000
## 295 0 (not applicable) 0 0.00000 NA 0.00000
## 296 0 (not applicable) 0 0.00000 NA 0.00000
## 297 0 (not applicable) 0 0.00000 NA 0.00000
## 298 0 (not applicable) 0 25.39683 NA 25.39683
## 299 0 (not applicable) 0 750.00000 NA 750.00000
## 300 0 (not applicable) 0 94.00000 NA 94.00000
## 301 0 (not applicable) 0 25.00000 NA 25.00000
## 302 0 (not applicable) 0 9.00000 NA 9.00000
## 303 0 (not applicable) 0 92.00000 NA 92.00000
## 304 0 (not applicable) 0 16.00000 NA 16.00000
## 305 0 (not applicable) 0 36.00000 NA 36.00000
## 306 0 (not applicable) 0 96.00000 NA 96.00000
## 307 0 (not applicable) 0 70.00000 NA 70.00000
## 308 0 (not applicable) 0 204.00000 NA 204.00000
## 309 0 (not applicable) 0 0.00000 NA 0.00000
## 310 0 (not applicable) 0 0.00000 NA 0.00000
## 311 0 (not applicable) 0 143.00000 NA 143.00000
## 312 0 (not applicable) 0 1104.00000 NA 1104.00000
## 313 0 (not applicable) 0 72.00000 NA 72.00000
## 314 0 (not applicable) 0 257.00000 NA 257.00000
## 315 0 (not applicable) 0 0.00000 NA 0.00000
## 316 0 (not applicable) 0 0.00000 NA 0.00000
## 317 0 (not applicable) 0 0.00000 NA 0.00000
## 318 0 (not applicable) 0 74.00000 NA 74.00000
## 319 0 (not applicable) 0 0.00000 NA 0.00000
## 320 0 (not applicable) 0 0.00000 NA 0.00000
## 321 0 (not applicable) 0 0.00000 NA 0.00000
## 322 0 (not applicable) 0 0.00000 NA 0.00000
## 323 0 (not applicable) 0 0.00000 NA 0.00000
## 324 0 (not applicable) 0 0.00000 NA 0.00000
## 325 0 (not applicable) 0 5.00000 NA 5.00000
## 326 0 (not applicable) 0 9.00000 NA 9.00000
## 327 0 (not applicable) 0 47.00000 NA 47.00000
## 328 0 (not applicable) 0 8.00000 NA 8.00000
## 329 0 (not applicable) 0 62.00000 NA 62.00000
## 330 0 (not applicable) 0 50.00000 NA 50.00000
## 331 0 (not applicable) 0 6.00000 NA 6.00000
## 332 0 (not applicable) 0 283.00000 NA 283.00000
## 333 0 (not applicable) 0 0.00000 NA 0.00000
## 334 0 (not applicable) 0 236.00000 NA 236.00000
## 335 0 (not applicable) 0 356.00000 NA 356.00000
## 336 0 (not applicable) 0 817.00000 NA 817.00000
## 337 0 (not applicable) 0 55.00000 NA 55.00000
## 338 0 (not applicable) 0 2.00000 NA 2.00000
## 339 0 (not applicable) 0 90.00000 NA 90.00000
## 340 0 (not applicable) 0 2.00000 NA 2.00000
## 341 0 (not applicable) 0 125.00000 NA 125.00000
## 342 0 (not applicable) 0 0.00000 NA 0.00000
## 343 0 (not applicable) 0 0.00000 NA 0.00000
## 344 0 (not applicable) 0 45.00000 NA 45.00000
## 345 0 (not applicable) 0 24.00000 NA 24.00000
## 346 0 (not applicable) 0 180.00000 NA 180.00000
## 347 0 (not applicable) 0 250.00000 NA 250.00000
## 348 0 (not applicable) 0 620.00000 NA 620.00000
## 349 0 (not applicable) 0 250.00000 NA 250.00000
## 350 0 (not applicable) 0 192.00000 NA 192.00000
## 351 0 (not applicable) 0 87.00000 NA 87.00000
## 352 0 (not applicable) 0 0.00000 NA 0.00000
## 353 0 (not applicable) 0 0.00000 NA 0.00000
## 354 0 (not applicable) 0 0.00000 NA 0.00000
## 355 0 (not applicable) 0 2769.00000 NA 2769.00000
## 356 0 (not applicable) 0 136.00000 NA 136.00000
## 357 0 (not applicable) 0 398.00000 NA 398.00000
## 358 0 (not applicable) 0 231.00000 NA 231.00000
## 359 0 (not applicable) 0 0.00000 NA 0.00000
## 360 0 (not applicable) 0 0.00000 NA 0.00000
## 361 0 (not applicable) 0 0.00000 NA 0.00000
## 362 0 Environmental 0 790.00000 NA 790.00000
## 363 0 (not applicable) 0 351.35135 NA 351.35135
## 364 0 (not applicable) 0 0.00000 NA NA
## 365 0 (not applicable) 0 0.00000 NA NA
## 366 0 (not applicable) 0 0.00000 NA NA
## 367 0 (not applicable) 0 0.00000 NA NA
## 368 0 (not applicable) 0 0.00000 NA NA
## 369 0 (not applicable) 0 0.00000 NA NA
## 370 0 (not applicable) 0 0.00000 NA NA
## 371 0 (not applicable) 0 0.00000 NA NA
## 372 0 (not applicable) 0 0.00000 NA NA
## 373 0 (not applicable) 0 0.00000 NA NA
## 374 0 (not applicable) 0 0.00000 NA NA
## 375 0 (not applicable) 0 0.00000 NA NA
## 376 0 (not applicable) 0 0.00000 NA NA
## 377 0 (not applicable) 0 0.00000 NA NA
## 378 0 (not applicable) 0 0.00000 NA NA
## 379 0 (not applicable) 0 0.00000 NA NA
## 380 0 (not applicable) 0 0.00000 NA NA
## 381 0 (not applicable) 0 0.00000 NA NA
## 382 0 (not applicable) 0 0.00000 NA NA
## 383 0 (not applicable) 0 0.00000 NA NA
## 384 0 (not applicable) 0 0.00000 NA NA
## 385 0 (not applicable) 0 0.00000 NA NA
## 386 0 (not applicable) 0 0.00000 NA NA
## 387 0 (not applicable) 0 0.00000 NA 0.00000
## 388 0 (not applicable) 0 859.00000 NA 859.00000
## 389 0 (not applicable) 0 100.00000 NA 100.00000
## 390 0 (not applicable) 0 105.00000 NA 105.00000
## 391 0 (not applicable) 0 200.00000 NA 200.00000
## 392 0 (not applicable) 0 1732.00000 NA 1732.00000
## 393 0 (not applicable) 0 0.00000 NA 0.00000
## 394 0 (not applicable) 0 1000.00000 NA 1000.00000
## 395 0 (not applicable) 0 20.00000 NA 20.00000
## 396 0 (not applicable) 0 137.00000 NA 137.00000
## 397 0 (not applicable) 0 3.00000 NA 3.00000
## 398 0 (not applicable) 0 110.00000 NA 110.00000
## 399 0 (not applicable) 0 0.00000 NA 0.00000
## 400 0 (not applicable) 0 13.00000 NA 13.00000
## 401 0 (not applicable) 0 8.00000 NA 8.00000
## 402 0 Foodborne 0 0.00000 NA 0.00000
## 403 0 (not applicable) 0 0.00000 NA 0.00000
## 404 0 (not applicable) 0 0.00000 NA 0.00000
## 405 0 (not applicable) 0 0.00000 NA 0.00000
## 406 0 (not applicable) 0 400.00000 NA 400.00000
## 407 0 (not applicable) 0 240.00000 NA 240.00000
## 408 0 (not applicable) 0 3789.00000 NA 3789.00000
## 409 0 (not applicable) 0 210.00000 NA 210.00000
## 410 0 (not applicable) 0 0.00000 NA 0.00000
## 411 0 (not applicable) 0 0.00000 NA 0.00000
## 412 0 (not applicable) 0 0.00000 NA 0.00000
## 413 0 (not applicable) 0 242.00000 NA 242.00000
## 414 0 (not applicable) 0 0.00000 NA 0.00000
## 415 0 (not applicable) 0 0.00000 NA 0.00000
## 416 0 (not applicable) 0 0.00000 NA 0.00000
## 417 0 (not applicable) 0 0.00000 NA 0.00000
## 418 0 (not applicable) 0 0.00000 NA 0.00000
## 419 0 (not applicable) 0 40.00000 NA 40.00000
## 420 0 (not applicable) 0 25.00000 NA 25.00000
## 421 0 (not applicable) 0 0.00000 NA 0.00000
## 422 0 (not applicable) 0 200.00000 NA 200.00000
## 423 0 (not applicable) 0 0.00000 NA 0.00000
## 424 0 (not applicable) 0 0.00000 NA 0.00000
## 425 0 (not applicable) 0 4500.00000 NA 4500.00000
## 426 0 (not applicable) 0 15.00000 NA 15.00000
## 427 0 (not applicable) 0 30.00000 NA 30.00000
## 428 0 (not applicable) 0 191.00000 258.0000 449.00000
## 429 0 (not applicable) 0 0.00000 NA 0.00000
## 430 0 (not applicable) 0 0.00000 NA 0.00000
## 431 0 (not applicable) 0 9.00000 NA 9.00000
## 432 0 (not applicable) 0 33.00000 NA 33.00000
## 433 0 (not applicable) 0 264.00000 NA 264.00000
## 434 0 (not applicable) 0 0.00000 NA 0.00000
## 435 0 (not applicable) 0 0.00000 NA 0.00000
## 436 0 (not applicable) 0 0.00000 NA 0.00000
## 437 0 (not applicable) 0 0.00000 NA 0.00000
## 438 0 (not applicable) 0 0.00000 NA 0.00000
## 439 0 (not applicable) 0 0.00000 NA 0.00000
## 440 0 (not applicable) 0 0.00000 NA 0.00000
## 441 0 (not applicable) 0 0.00000 NA 0.00000
## 442 0 (not applicable) 0 0.00000 NA 0.00000
## 443 0 (not applicable) 0 0.00000 NA 0.00000
## 444 0 (not applicable) 0 0.00000 NA 0.00000
## 445 0 (not applicable) 0 0.00000 NA 0.00000
## 446 0 (not applicable) 0 0.00000 NA 0.00000
## 447 0 (not applicable) 0 0.00000 NA 0.00000
## 448 0 (not applicable) 0 0.00000 NA 0.00000
## 449 0 (not applicable) 0 0.00000 NA 0.00000
## 450 0 (not applicable) 0 273.00000 NA 273.00000
## 451 0 (not applicable) 0 0.00000 NA 0.00000
## 452 0 (not applicable) 0 492.00000 256.0000 748.00000
## 453 0 (not applicable) 0 0.00000 NA 0.00000
## 454 0 (not applicable) 0 45.00000 NA 45.00000
## 455 0 (not applicable) 0 120.00000 NA 120.00000
## 456 0 (not applicable) 0 100.00000 NA 100.00000
## 457 0 (not applicable) 0 14.00000 NA 14.00000
## 458 0 (not applicable) 0 25.00000 NA 25.00000
## 459 0 (not applicable) 0 700.00000 NA 700.00000
## 460 0 (not applicable) 0 0.00000 NA 0.00000
## 461 0 (not applicable) 0 220.00000 NA 220.00000
## 462 0 (not applicable) 0 181.00000 NA 181.00000
## 463 0 (not applicable) 0 53.00000 NA 53.00000
## 464 0 (not applicable) 0 563.63636 NA 563.63636
## 465 0 (not applicable) 0 94.00000 NA 94.00000
## 466 0 (not applicable) 0 0.00000 NA 0.00000
## 467 0 (not applicable) 0 0.00000 NA 0.00000
## 468 0 (not applicable) 0 321.00000 NA 321.00000
## 469 0 (not applicable) 0 150.00000 NA 150.00000
## 470 0 (not applicable) 0 0.00000 NA 0.00000
## 471 0 (not applicable) 0 3639.00000 NA 3639.00000
## 472 0 (not applicable) 0 33.00000 NA 33.00000
## 473 0 (not applicable) 0 44.00000 NA 44.00000
## 474 0 (not applicable) 0 13.00000 NA 13.00000
## 475 0 (not applicable) 0 6.00000 NA 6.00000
## 476 0 (not applicable) 0 65.00000 NA 65.00000
## 477 0 (not applicable) 0 16.00000 NA 16.00000
## 478 0 (not applicable) 0 53.00000 NA 53.00000
## 479 0 (not applicable) 0 2800.00000 NA 2800.00000
## 480 0 (not applicable) 0 4500.00000 NA 4500.00000
## 481 0 Foodborne 0 137.00000 NA 137.00000
## 482 0 (not applicable) 0 26.00000 NA 26.00000
## 483 0 (not applicable) 0 106.00000 NA 106.00000
## 484 0 (not applicable) 0 795.00000 NA 795.00000
## 485 0 (not applicable) 0 0.00000 NA 0.00000
## 486 0 (not applicable) 0 16990.00000 NA 16990.00000
## 487 0 (not applicable) 0 0.00000 NA 0.00000
## 488 0 (not applicable) 0 2953.00000 NA 2953.00000
## 489 0 (not applicable) 0 3789.00000 NA 3789.00000
## 490 0 (not applicable) 0 23.00000 NA 23.00000
## 491 0 (not applicable) 0 56.00000 NA 56.00000
## 492 0 (not applicable) 0 80.00000 NA 80.00000
## 493 0 (not applicable) 0 84.00000 NA 84.00000
## 494 0 (not applicable) 0 80.00000 NA 80.00000
## 495 0 (not applicable) 0 80.00000 NA 80.00000
## 496 0 (not applicable) 0 0.00000 NA 0.00000
## 497 0 (not applicable) 0 84.00000 79.0000 163.00000
## 498 0 (not applicable) 0 0.00000 NA NA
## 499 0 (not applicable) 0 0.00000 NA NA
## 500 0 (not applicable) 0 0.00000 NA NA
## 501 0 (not applicable) 0 0.00000 NA NA
## 502 0 (not applicable) 0 0.00000 NA NA
## 503 0 (not applicable) 0 0.00000 NA NA
## 504 0 (not applicable) 0 0.00000 NA NA
## 505 0 (not applicable) 0 0.00000 NA NA
## 506 0 (not applicable) 0 0.00000 NA NA
## 507 0 (not applicable) 0 0.00000 NA NA
## 508 0 (not applicable) 0 0.00000 NA NA
## 509 0 (not applicable) 0 0.00000 NA NA
## 510 0 (not applicable) 0 0.00000 NA NA
## 511 0 (not applicable) 0 0.00000 NA NA
## 512 0 (not applicable) 0 753.00000 NA 753.00000
## 513 0 (not applicable) 0 81.00000 NA 81.00000
## 514 0 (not applicable) 0 225.00000 NA 225.00000
## 515 0 (not applicable) 0 0.00000 NA 0.00000
## 516 0 (not applicable) 0 0.00000 NA 0.00000
## 517 0 (not applicable) 0 150.00000 NA 150.00000
## 518 0 (not applicable) 0 4.00000 NA 4.00000
## 519 0 (not applicable) 0 21.00000 NA 21.00000
## 520 0 (not applicable) 0 18.00000 NA 18.00000
## 521 0 (not applicable) 0 2.00000 NA 2.00000
## 522 0 (not applicable) 0 12.00000 NA 12.00000
## 523 0 (not applicable) 0 0.00000 NA 0.00000
## 524 0 (not applicable) 0 0.00000 NA 0.00000
## 525 0 (not applicable) 0 0.00000 NA 0.00000
## 526 0 (not applicable) 0 180.00000 NA 180.00000
## 527 0 (not applicable) 0 772.00000 NA 772.00000
## 528 0 (not applicable) 0 27.00000 NA 27.00000
## 529 0 (not applicable) 0 68.00000 NA 68.00000
## 530 0 (not applicable) 0 189.00000 NA 189.00000
## 531 0 (not applicable) 0 625.00000 NA 625.00000
## 532 0 (not applicable) 0 266.00000 NA 266.00000
## 533 0 (not applicable) 0 0.00000 NA 0.00000
## 534 0 (not applicable) 0 0.00000 NA 0.00000
## 535 0 (not applicable) 0 0.00000 NA 0.00000
## 536 0 (not applicable) 0 0.00000 NA 0.00000
## 537 0 (not applicable) 0 0.00000 NA 0.00000
## 538 0 (not applicable) 0 4517.00000 NA 4517.00000
## 539 0 (not applicable) 0 0.00000 NA 0.00000
## 540 0 (not applicable) 0 850.00000 NA 850.00000
## 541 0 (not applicable) 0 0.00000 NA 0.00000
## 542 0 (not applicable) 0 0.00000 NA 0.00000
## 543 0 (not applicable) 0 0.00000 NA 0.00000
## 544 0 (not applicable) 0 0.00000 NA 0.00000
## 545 0 (not applicable) 0 0.00000 NA 0.00000
## 546 0 (not applicable) 0 0.00000 NA 0.00000
## 547 0 (not applicable) 0 36.00000 NA 36.00000
## 548 0 (not applicable) 0 0.00000 NA 0.00000
## 549 0 (not applicable) 0 0.00000 NA 0.00000
## 550 0 (not applicable) 0 34.00000 NA 34.00000
## 551 0 (not applicable) 0 26.00000 NA 26.00000
## 552 0 (not applicable) 0 30.00000 NA 30.00000
## 553 0 (not applicable) 0 0.00000 NA 0.00000
## 554 0 (not applicable) 0 0.00000 NA 0.00000
## 555 0 (not applicable) 0 0.00000 NA 0.00000
## 556 0 (not applicable) 0 1067.00000 NA 1067.00000
## 557 0 (not applicable) 0 22.00000 NA 22.00000
## 558 0 (not applicable) 0 0.00000 NA 0.00000
## 559 0 (not applicable) 0 0.00000 NA 0.00000
## 560 0 (not applicable) 0 1195.48872 NA 1195.48872
## 561 0 (not applicable) 0 0.00000 NA 0.00000
## 562 0 (not applicable) 0 530.00000 NA 530.00000
## 563 0 (not applicable) 0 760.00000 NA 760.00000
## 564 0 (not applicable) 0 0.00000 NA 0.00000
## 565 0 (not applicable) 0 0.00000 NA 0.00000
## 566 0 (not applicable) 0 19.00000 NA 19.00000
## 567 0 (not applicable) 0 45.00000 NA 45.00000
## 568 0 (not applicable) 0 0.00000 NA 0.00000
## 569 0 (not applicable) 0 0.00000 NA 0.00000
## 570 0 (not applicable) 0 0.00000 NA 0.00000
## 571 0 (not applicable) 0 0.00000 NA 0.00000
## 572 0 (not applicable) 0 79.00000 NA 79.00000
## 573 0 (not applicable) 0 7.00000 NA 7.00000
## 574 0 (not applicable) 0 14.00000 NA 14.00000
## 575 0 (not applicable) 0 0.00000 NA 0.00000
## 576 0 (not applicable) 0 17.00000 NA 17.00000
## 577 0 (not applicable) 0 0.00000 NA 0.00000
## 578 0 (not applicable) 0 12.00000 NA 12.00000
## 579 0 (not applicable) 0 0.00000 NA 0.00000
## 580 0 (not applicable) 0 0.00000 NA 0.00000
## 581 0 (not applicable) 0 118.00000 NA 118.00000
## 582 0 (not applicable) 0 0.00000 NA 0.00000
## 583 0 (not applicable) 0 10.00000 NA 10.00000
## 584 0 (not applicable) 0 14.00000 NA 14.00000
## 585 0 (not applicable) 0 77.00000 NA 77.00000
## 586 0 (not applicable) 0 31.00000 NA 31.00000
## 587 0 (not applicable) 0 0.00000 NA 0.00000
## 588 0 (not applicable) 0 0.00000 NA 0.00000
## 589 0 (not applicable) 0 0.00000 NA 0.00000
## 590 0 (not applicable) 0 20.00000 NA 20.00000
## 591 0 (not applicable) 0 74.00000 NA 74.00000
## 592 0 (not applicable) 0 337.00000 NA 337.00000
## 593 0 (not applicable) 0 0.00000 NA 0.00000
## 594 0 (not applicable) 0 84.00000 NA 84.00000
## 595 0 (not applicable) 0 18.00000 NA 18.00000
## 596 0 (not applicable) 0 0.00000 NA 0.00000
## 597 0 (not applicable) 0 2.00000 NA 2.00000
## 598 0 (not applicable) 0 2.00000 NA 2.00000
## 599 0 (not applicable) 0 0.00000 NA 0.00000
## 600 0 (not applicable) 0 0.00000 NA 0.00000
## 601 0 (not applicable) 0 6.00000 NA 6.00000
## 602 0 (not applicable) 0 50.00000 NA 50.00000
## 603 0 (not applicable) 0 0.00000 NA 0.00000
## 604 0 (not applicable) 0 27.00000 NA 27.00000
## 605 0 (not applicable) 0 4.00000 NA 4.00000
## 606 0 (not applicable) 0 0.00000 NA 0.00000
## 607 0 (not applicable) 0 2.00000 NA 2.00000
## 608 0 (not applicable) 0 19.00000 NA 19.00000
## 609 0 (not applicable) 0 0.00000 NA 0.00000
## 610 0 (not applicable) 0 158.00000 NA 158.00000
## 611 0 (not applicable) 0 190.00000 NA 190.00000
## 612 0 (not applicable) 0 0.00000 NA 0.00000
## 613 0 (not applicable) 0 0.00000 NA 0.00000
## 614 0 (not applicable) 0 0.00000 NA 0.00000
## 615 0 (not applicable) 0 0.00000 NA 0.00000
## 616 0 (not applicable) 0 10.00000 NA 10.00000
## 617 0 (not applicable) 0 77.00000 NA 77.00000
## 618 0 (not applicable) 0 0.00000 NA 0.00000
## 619 0 (not applicable) 0 0.00000 NA 0.00000
## 620 0 (not applicable) 0 0.00000 NA 0.00000
## 621 0 (not applicable) 0 0.00000 NA 0.00000
## 622 0 (not applicable) 0 0.00000 NA 0.00000
## 623 0 (not applicable) 0 0.00000 NA 0.00000
## 624 0 (not applicable) 0 0.00000 NA 0.00000
## 625 0 (not applicable) 0 3.00000 NA 3.00000
## 626 0 (not applicable) 0 96.00000 NA 96.00000
## 627 0 (not applicable) 0 0.00000 NA 0.00000
## 628 0 (not applicable) 0 0.00000 NA 0.00000
## 629 0 (not applicable) 0 0.00000 NA 0.00000
## 630 0 (not applicable) 0 8.00000 NA 8.00000
## 631 0 (not applicable) 0 22.00000 NA 22.00000
## 632 0 (not applicable) 0 15.00000 NA 15.00000
## 633 0 (not applicable) 0 0.00000 NA 0.00000
## 634 0 (not applicable) 0 261.00000 NA 261.00000
## 635 0 (not applicable) 0 211.00000 NA 211.00000
## 636 0 (not applicable) 0 262.00000 NA 262.00000
## 637 0 (not applicable) 0 0.00000 NA 0.00000
## 638 0 (not applicable) 0 4.00000 NA 4.00000
## 639 0 (not applicable) 0 11.00000 NA 11.00000
## 640 0 (not applicable) 0 40.00000 NA 40.00000
## 641 0 (not applicable) 0 17.00000 NA 17.00000
## 642 0 (not applicable) 0 32.00000 NA 32.00000
## 643 0 (not applicable) 0 12.00000 NA 12.00000
## 644 0 (not applicable) 0 8.00000 NA 8.00000
## 645 0 (not applicable) 0 675.00000 NA 675.00000
## 646 0 (not applicable) 0 4.00000 NA 4.00000
## 647 0 (not applicable) 0 3.00000 NA 3.00000
## 648 0 (not applicable) 0 9.00000 NA 9.00000
## 649 0 (not applicable) 0 14.00000 NA 14.00000
## 650 0 (not applicable) 0 18.00000 NA 18.00000
## 651 0 (not applicable) 0 29.00000 NA 29.00000
## 652 0 (not applicable) 0 2.00000 NA 2.00000
## 653 0 (not applicable) 0 5.00000 NA 5.00000
## 654 0 (not applicable) 0 10.00000 NA 10.00000
## 655 0 (not applicable) 0 86.00000 NA 86.00000
## 656 0 (not applicable) 0 15.00000 NA 15.00000
## 657 0 (not applicable) 0 2.00000 NA 2.00000
## 658 0 (not applicable) 0 2.00000 NA 2.00000
## 659 0 (not applicable) 0 37.00000 NA 37.00000
## 660 0 (not applicable) 0 15.00000 NA 15.00000
## 661 0 (not applicable) 0 4.00000 NA 4.00000
## 662 0 (not applicable) 0 15.00000 NA 15.00000
## 663 0 (not applicable) 0 27.00000 NA 27.00000
## 664 0 (not applicable) 0 28.00000 NA 28.00000
## 665 0 (not applicable) 0 45.00000 NA 45.00000
## 666 0 (not applicable) 0 36.00000 NA 36.00000
## 667 0 (not applicable) 0 23.00000 NA 23.00000
## 668 0 (not applicable) 0 55.00000 NA 55.00000
## 669 0 (not applicable) 0 10.00000 NA 10.00000
## 670 0 (not applicable) 0 2.00000 NA 2.00000
## 671 0 (not applicable) 0 217.00000 NA 217.00000
## 672 0 (not applicable) 0 49.00000 NA 49.00000
## 673 0 (not applicable) 0 20.00000 NA 20.00000
## 674 0 (not applicable) 0 35.00000 NA 35.00000
## 675 0 (not applicable) 0 2.00000 NA 2.00000
## 676 0 (not applicable) 0 3.00000 NA 3.00000
## 677 0 (not applicable) 0 52.00000 NA 52.00000
## 678 0 (not applicable) 0 50.00000 NA 50.00000
## 679 0 (not applicable) 0 35000.00000 NA 35000.00000
## 680 0 (not applicable) 0 2447.00000 NA 2447.00000
## 681 0 (not applicable) 0 137.00000 NA 137.00000
## 682 0 Person to Person 0 0.00000 NA 0.00000
## 683 0 (not applicable) 0 0.00000 NA 0.00000
## 684 0 (not applicable) 0 0.00000 NA 0.00000
## 685 0 (not applicable) 0 736.00000 NA 736.00000
## 686 0 (not applicable) 0 2585.00000 NA 2585.00000
## 687 0 (not applicable) 0 284.00000 NA 284.00000
## 688 0 (not applicable) 0 0.00000 NA 0.00000
## 689 0 (not applicable) 0 0.00000 NA 0.00000
## 690 0 (not applicable) 0 0.00000 NA 0.00000
## 691 0 (not applicable) 0 0.00000 NA 0.00000
## 692 0 (not applicable) 0 0.00000 NA 0.00000
## 693 0 (not applicable) 0 0.00000 NA 0.00000
## 694 0 (not applicable) 0 0.00000 NA 0.00000
## 695 0 (not applicable) 0 0.00000 NA 0.00000
## 696 0 (not applicable) 0 0.00000 NA 0.00000
## 697 0 (not applicable) 0 0.00000 NA 0.00000
## 698 0 (not applicable) 0 0.00000 NA 0.00000
## 699 0 (not applicable) 0 0.00000 NA 0.00000
## 700 0 (not applicable) 0 0.00000 NA 0.00000
## 701 0 (not applicable) 0 0.00000 NA 0.00000
## 702 0 (not applicable) 0 0.00000 NA 0.00000
## 703 0 (not applicable) 0 0.00000 NA 0.00000
## 704 0 (not applicable) 0 0.00000 NA 0.00000
## 705 0 (not applicable) 0 0.00000 NA 0.00000
## 706 0 (not applicable) 0 0.00000 NA 0.00000
## 707 0 (not applicable) 0 83.00000 NA 83.00000
## 708 0 (not applicable) 0 34.00000 NA 34.00000
## 709 0 (not applicable) 0 188.00000 NA 188.00000
## 710 0 (not applicable) 0 2500.00000 NA 2500.00000
## 711 0 (not applicable) 0 250.00000 NA 250.00000
## 712 0 (not applicable) 0 2200.00000 NA 2200.00000
## 713 0 (not applicable) 0 13.00000 NA 13.00000
## 714 0 (not applicable) 0 0.00000 NA 0.00000
## Cases1 Cases2 CasesAll Rate1 Rate2 RateAll
## 1 15 NA 15 NA NA 0.0000000
## 2 43 22 65 39.8148148 NA 39.8148148
## 3 27 NA 27 20.7692308 NA 20.7692308
## 4 4 NA 4 100.0000000 NA 100.0000000
## 5 15 NA 15 60.0000000 NA 60.0000000
## 6 6 NA 6 75.0000000 NA 75.0000000
## 7 40 NA 40 83.3333333 NA 83.3333333
## 8 10 NA 10 83.3333333 NA 83.3333333
## 9 116 NA 116 54.2000000 NA 54.2000000
## 10 45 NA 45 63.0000000 NA 63.0000000
## 11 180 4 184 NA NA 0.0000000
## 12 191 NA 191 37.5245580 NA 37.5245580
## 13 19 NA 19 53.0000000 NA 53.0000000
## 14 704 NA 704 NA NA 0.0000000
## 15 369 NA 369 12.6153846 NA 12.6153846
## 16 131 NA 131 3.4239415 NA 3.4239415
## 17 492 NA 492 38.4375000 NA 38.4375000
## 18 1169 NA 1169 4.8708333 NA 4.8708333
## 19 28 4 32 58.0000000 NA 58.0000000
## 20 1806 NA 1806 44.0000000 NA 44.0000000
## 21 20 NA 20 NA NA 0.0000000
## 22 14 NA 14 NA NA 0.0000000
## 23 14 NA 14 NA NA 0.0000000
## 24 22 NA 22 NA NA 0.0000000
## 25 15 NA 15 NA NA 0.0000000
## 26 25 NA 25 NA NA 0.0000000
## 27 17 NA 17 NA NA 0.0000000
## 28 13 NA 13 NA NA 0.0000000
## 29 22 NA 22 NA NA 0.0000000
## 30 11 NA 11 NA NA 0.0000000
## 31 14 NA 14 NA NA 0.0000000
## 32 25 NA 25 NA NA 0.0000000
## 33 14 NA 14 NA NA 0.0000000
## 34 130 16 146 NA NA 0.0000000
## 35 13 NA 13 34.2105263 NA 34.2105263
## 36 80 NA 80 NA NA 0.0000000
## 37 112 NA 112 NA NA 0.0000000
## 38 130 NA 130 NA NA 0.0000000
## 39 36 NA 36 NA NA 0.0000000
## 40 7 NA 7 53.8461539 NA 53.8461539
## 41 44 NA 44 32.5925926 NA 32.5925926
## 42 57 NA 57 50.0000000 NA 50.0000000
## 43 26 NA 26 31.0000000 NA 31.0000000
## 44 26 NA 26 NA NA 0.0000000
## 45 19 NA 19 33.0000000 NA 33.0000000
## 46 660 23 683 44.2000000 NA 44.2000000
## 47 47 4 51 65.2777778 NA 65.2777778
## 48 139 NA 139 7.7222222 NA 7.7222222
## 49 33 NA 33 62.2641509 NA 62.2641509
## 50 2 NA 2 NA NA 0.0000000
## 51 212 175 387 16.6144201 NA 16.6144201
## 52 9 NA 9 69.0000000 NA 69.0000000
## 53 12 NA 12 52.0000000 NA 52.0000000
## 54 3 NA 3 50.0000000 NA 50.0000000
## 55 21 NA 21 NA NA 0.0000000
## 56 12 NA 12 60.0000000 NA 60.0000000
## 57 50 NA 50 49.0000000 NA 49.0000000
## 58 19 NA 19 15.0000000 NA 15.0000000
## 59 19 NA 19 95.0000000 NA 95.0000000
## 60 19 NA 19 51.0000000 NA 51.0000000
## 61 27 NA 27 38.0000000 NA 38.0000000
## 62 73 4 77 57.4803150 6.0000 63.4803150
## 63 30 NA 30 NA NA 0.0000000
## 64 120 NA 120 8.8000000 NA 8.8000000
## 65 77 NA 77 34.3750000 NA 34.3750000
## 66 10 NA 10 15.1515151 NA 15.1515151
## 67 116 NA 116 NA NA 0.0000000
## 68 24 NA 24 NA NA 0.0000000
## 69 70 NA 70 NA NA 0.0000000
## 70 22 NA 22 NA NA 0.0000000
## 71 35 NA 35 NA NA 0.0000000
## 72 40 NA 40 NA NA 0.0000000
## 73 15 NA 15 NA NA 0.0000000
## 74 50 NA 50 NA NA 0.0000000
## 75 20 NA 20 NA NA 0.0000000
## 76 110 NA 110 NA NA 0.0000000
## 77 50 NA 50 NA NA 0.0000000
## 78 16 NA 16 NA NA 0.0000000
## 79 5 NA 5 NA NA 0.0000000
## 80 200 NA 200 NA NA 0.0000000
## 81 50 NA 50 NA NA 0.0000000
## 82 24 NA 24 NA NA 0.0000000
## 83 55 NA 55 NA NA 0.0000000
## 84 9 NA 9 NA NA 0.0000000
## 85 21 NA 21 NA NA 0.0000000
## 86 76 NA 76 76.0000000 NA 76.0000000
## 87 16 NA 16 64.0000000 NA 64.0000000
## 88 163 NA 163 NA NA 0.0000000
## 89 300 NA 300 31.2500000 NA 31.2500000
## 90 85 14 99 80.9523810 NA 80.9523810
## 91 25 NA 25 NA NA 0.0000000
## 92 35 NA 35 NA NA 0.0000000
## 93 83 NA 83 39.3364929 NA 39.3364929
## 94 2 NA 2 4.1666667 NA 4.1666667
## 95 3 NA 3 3.8461538 NA 3.8461538
## 96 2 NA 2 2.9411765 NA 2.9411765
## 97 84 NA 84 76.0000000 NA 76.0000000
## 98 80 NA 80 NA NA 0.0000000
## 99 35 NA 35 NA NA 0.0000000
## 100 253 NA 253 27.8941566 NA 27.8941566
## 101 28 NA 28 34.1463415 NA 34.1463415
## 102 11 NA 11 7.1895425 NA 7.1895425
## 103 36 NA 36 17.6470588 NA 17.6470588
## 104 3 NA 3 NA NA 0.0000000
## 105 26 NA 26 70.0000000 NA 70.0000000
## 106 53 7 60 36.0544218 10.6000 46.6544218
## 107 5 NA 5 17.8571429 NA 17.8571429
## 108 2 NA 2 66.6666667 NA 66.6666667
## 109 51 NA 51 39.5348837 NA 39.5348837
## 110 6 NA 6 37.5000000 NA 37.5000000
## 111 200 NA 200 36.3636364 NA 36.3636364
## 112 47 NA 47 15.6666667 NA 15.6666667
## 113 54 NA 54 50.0000000 NA 50.0000000
## 114 56 NA 56 76.7123288 NA 76.7123288
## 115 33 NA 33 NA NA 0.0000000
## 116 119 NA 119 22.0000000 NA 22.0000000
## 117 18 NA 18 10.2857143 NA 10.2857143
## 118 65 NA 65 36.3128492 NA 36.3128492
## 119 11 NA 11 NA NA 0.0000000
## 120 15 NA 15 NA NA 0.0000000
## 121 369 NA 369 12.6153846 NA 12.6153846
## 122 11 NA 11 9.8214286 NA 9.8214286
## 123 704 NA 704 9.4445935 NA 9.4445935
## 124 651 NA 651 9.6287531 NA 9.6287531
## 125 131 NA 131 1.2748151 NA 1.2748151
## 126 22 NA 22 13.0000000 NA 13.0000000
## 127 85 NA 85 50.0000000 NA 50.0000000
## 128 50 NA 50 17.0000000 NA 17.0000000
## 129 7150 NA 7150 72.0000000 NA 72.0000000
## 130 126 NA 126 19.0000000 NA 19.0000000
## 131 37 NA 37 34.2592593 NA 34.2592593
## 132 108 NA 108 30.4225352 NA 30.4225352
## 133 1173 NA 1173 17.0000000 NA 17.0000000
## 134 413 NA 413 24.0000000 NA 24.0000000
## 135 478 NA 478 9.0702087 NA 9.0702087
## 136 451 NA 451 11.6597725 NA 11.6597725
## 137 156 NA 156 2.5242718 NA 2.5242718
## 138 8 NA 8 11.1111111 NA 11.1111111
## 139 8 NA 8 11.2676056 NA 11.2676056
## 140 13 NA 13 24.0740741 NA 24.0740741
## 141 14 NA 14 21.5384615 NA 21.5384615
## 142 26 4 30 24.2990654 NA 24.2990654
## 143 15 7 22 41.0000000 8.0000 49.0000000
## 144 15 NA 15 50.0000000 NA 50.0000000
## 145 40 6 46 57.9710145 NA 57.9710145
## 146 15 NA 15 50.0000000 NA 50.0000000
## 147 33 NA 33 40.0000000 NA 40.0000000
## 148 104 NA 104 36.0000000 NA 36.0000000
## 149 196 NA 196 11.4400000 NA 11.4400000
## 150 51 NA 51 14.1000000 NA 14.1000000
## 151 51 NA 51 NA NA 0.0000000
## 152 4 NA 4 NA NA NA
## 153 5 NA 5 NA NA NA
## 154 3 NA 3 NA NA NA
## 155 2 NA 2 NA NA NA
## 156 1 NA 1 NA NA NA
## 157 2 NA 2 NA NA NA
## 158 1 NA 1 NA NA NA
## 159 1 NA 1 NA NA NA
## 160 2 NA 2 NA NA NA
## 161 2 NA 2 NA NA NA
## 162 145 NA 145 NA NA NA
## 163 652 NA 652 33.4000000 NA 33.4000000
## 164 91 NA 91 NA NA NA
## 165 35 NA 35 10.8000000 NA 10.8000000
## 166 40 NA 40 10.0000000 NA 10.0000000
## 167 4 NA 4 3.0000000 NA 3.0000000
## 168 32 NA 32 88.9000000 NA 88.9000000
## 169 3 NA 3 NA NA 0.0000000
## 170 1340 NA 1340 9.8182884 NA 9.8182884
## 171 12 NA 12 85.7142857 NA 85.7142857
## 172 19 NA 19 82.6086957 NA 82.6086957
## 173 15 NA 15 11.5384615 NA 11.5384615
## 174 62 NA 62 39.2405063 NA 39.2405063
## 175 279 NA 279 NA NA 0.0000000
## 176 69 NA 69 NA NA 0.0000000
## 177 27 NA 27 NA NA 0.0000000
## 178 18 NA 18 48.6486486 NA 48.6486486
## 179 29 NA 29 NA NA 0.0000000
## 180 23 NA 23 80.0000000 NA 80.0000000
## 181 55 NA 55 58.0000000 NA 58.0000000
## 182 9 NA 9 50.0000000 NA 50.0000000
## 183 28 NA 28 NA NA 0.0000000
## 184 184 NA 184 NA NA 0.0000000
## 185 359 NA 359 28.1347962 NA 28.1347962
## 186 66 NA 66 NA NA 0.0000000
## 187 17 NA 17 NA NA 0.0000000
## 188 125 NA 125 6.0856865 NA 6.0856865
## 189 16 NA 16 NA NA 0.0000000
## 190 12 NA 12 NA NA 0.0000000
## 191 19 NA 19 NA NA 0.0000000
## 192 64 NA 64 56.6371681 NA 56.6371681
## 193 69 455 524 NA NA 0.0000000
## 194 69 NA 69 NA NA 0.0000000
## 195 2700 NA 2700 38.0000000 NA 38.0000000
## 196 37 NA 37 10.0000000 NA 10.0000000
## 197 142 53 195 37.0000000 NA 37.0000000
## 198 29 NA 29 51.7857143 NA 51.7857143
## 199 276 NA 276 NA NA 0.0000000
## 200 57 NA 57 NA NA 0.0000000
## 201 29 NA 29 59.0000000 NA 59.0000000
## 202 139 NA 139 52.0000000 NA 52.0000000
## 203 25 NA 25 20.0000000 NA 20.0000000
## 204 7 NA 7 NA NA 0.0000000
## 205 32 NA 32 33.0000000 NA 33.0000000
## 206 29 NA 29 NA NA 0.0000000
## 207 48 NA 48 41.0000000 NA 41.0000000
## 208 18 NA 18 78.0000000 NA 78.0000000
## 209 12 NA 12 60.0000000 NA 60.0000000
## 210 26 NA 26 NA NA 0.0000000
## 211 245 NA 245 49.0000000 NA 49.0000000
## 212 2 NA 2 100.0000000 NA 100.0000000
## 213 3 NA 3 75.0000000 NA 75.0000000
## 214 22 NA 22 19.6428571 NA 19.6428571
## 215 5 NA 5 NA NA 0.0000000
## 216 18 NA 18 69.2307692 NA 69.2307692
## 217 14 NA 14 56.0000000 NA 56.0000000
## 218 4 NA 4 NA NA 0.0000000
## 219 8 NA 8 61.5384615 NA 61.5384615
## 220 16 NA 16 NA NA 0.0000000
## 221 14 NA 14 NA NA 0.0000000
## 222 5 NA 5 50.0000000 NA 50.0000000
## 223 9 NA 9 75.0000000 NA 75.0000000
## 224 3 NA 3 100.0000000 NA 100.0000000
## 225 2 NA 2 100.0000000 NA 100.0000000
## 226 29 NA 29 48.3333333 NA 48.3333333
## 227 2 NA 2 NA NA 0.0000000
## 228 2 NA 2 NA NA 0.0000000
## 229 40 NA 40 56.3380282 NA 56.3380282
## 230 20 NA 20 NA NA 0.0000000
## 231 162 NA 162 28.6725664 NA 28.6725664
## 232 6 NA 6 42.8571429 NA 42.8571429
## 233 114 NA 114 NA NA 0.0000000
## 234 325 NA 325 40.8291457 NA 40.8291457
## 235 268 NA 268 NA NA 0.0000000
## 236 72 NA 72 40.9090909 NA 40.9090909
## 237 154 NA 154 NA NA 0.0000000
## 238 95 NA 95 NA NA 0.0000000
## 239 4 NA 4 80.0000000 NA 80.0000000
## 240 41 NA 41 NA NA 0.0000000
## 241 11 NA 11 NA NA 0.0000000
## 242 158 43 201 72.0000000 22.0000 94.0000000
## 243 20 NA 20 74.0000000 NA 74.0000000
## 244 5 NA 5 100.0000000 NA 100.0000000
## 245 6 NA 6 18.0000000 NA 18.0000000
## 246 7 NA 7 41.0000000 NA 41.0000000
## 247 14 NA 14 58.0000000 NA 58.0000000
## 248 15 NA 15 28.0000000 NA 28.0000000
## 249 3 NA 3 25.0000000 NA 25.0000000
## 250 5 NA 5 63.0000000 NA 63.0000000
## 251 2 NA 2 100.0000000 NA 100.0000000
## 252 6 NA 6 100.0000000 NA 100.0000000
## 253 53 NA 53 25.0000000 NA 25.0000000
## 254 40 NA 40 67.0000000 NA 67.0000000
## 255 12 NA 12 35.0000000 NA 35.0000000
## 256 14 NA 14 42.0000000 NA 42.0000000
## 257 13 NA 13 34.0000000 NA 34.0000000
## 258 3 NA 3 100.0000000 NA 100.0000000
## 259 12 NA 12 63.0000000 NA 63.0000000
## 260 10 NA 10 91.0000000 NA 91.0000000
## 261 34 NA 34 24.0000000 NA 24.0000000
## 262 97 NA 97 31.0000000 NA 31.0000000
## 263 97 NA 97 47.0000000 NA 47.0000000
## 264 29 NA 29 NA NA 0.0000000
## 265 368 NA 368 55.0000000 NA 55.0000000
## 266 14 NA 14 NA NA 0.0000000
## 267 26 NA 26 42.0000000 NA 42.0000000
## 268 25 NA 25 NA NA 0.0000000
## 269 119 NA 119 NA NA 0.0000000
## 270 41 NA 41 NA NA 0.0000000
## 271 19 NA 19 NA NA 0.0000000
## 272 14 NA 14 NA NA 0.0000000
## 273 20 NA 20 NA NA 0.0000000
## 274 16 NA 16 NA NA 0.0000000
## 275 9 NA 9 NA NA 0.0000000
## 276 9 NA 9 NA NA 0.0000000
## 277 15 NA 15 NA NA 0.0000000
## 278 10 NA 10 NA NA 0.0000000
## 279 30 NA 30 NA NA 0.0000000
## 280 2860 NA 2860 NA NA 0.0000000
## 281 2000 NA 2000 13.3333333 NA 13.3333333
## 282 58 NA 58 36.2500000 NA 36.2500000
## 283 25 NA 25 50.0000000 NA 50.0000000
## 284 95 NA 95 63.3333333 NA 63.3333333
## 285 40 NA 40 71.4285714 NA 71.4285714
## 286 40 NA 40 44.4444444 NA 44.4444444
## 287 378 NA 378 NA NA 0.0000000
## 288 9 NA 9 81.8181818 NA 81.8181818
## 289 29 NA 29 76.3157895 NA 76.3157895
## 290 12 NA 12 NA NA 0.0000000
## 291 11 NA 11 NA NA 0.0000000
## 292 31 NA 31 41.8918919 NA 41.8918919
## 293 200 NA 200 NA NA 0.0000000
## 294 7 NA 7 NA NA 0.0000000
## 295 70 NA 70 NA NA 0.0000000
## 296 16 NA 16 NA NA 0.0000000
## 297 30 NA 30 NA NA 0.0000000
## 298 16 NA 16 63.0000000 NA 63.0000000
## 299 47 NA 47 6.2666667 NA 6.2666667
## 300 61 NA 61 65.0000000 NA 65.0000000
## 301 4 NA 4 16.0000000 NA 16.0000000
## 302 2 NA 2 22.2222222 NA 22.2222222
## 303 2 NA 2 2.1739130 NA 2.1739130
## 304 2 NA 2 12.5000000 NA 12.5000000
## 305 2 NA 2 5.5555556 NA 5.5555556
## 306 3 NA 3 3.1250000 NA 3.1250000
## 307 45 NA 45 64.2857143 NA 64.2857143
## 308 108 NA 108 53.0000000 NA 53.0000000
## 309 81 22 103 NA NA 0.0000000
## 310 5 NA 5 NA NA 0.0000000
## 311 35 NA 35 24.4755245 NA 24.4755245
## 312 121 NA 121 10.9601449 NA 10.9601449
## 313 34 NA 34 47.2222222 NA 47.2222222
## 314 126 NA 126 49.0000000 NA 49.0000000
## 315 60 NA 60 NA NA 0.0000000
## 316 32 NA 32 NA NA 0.0000000
## 317 37 3 40 NA NA 0.0000000
## 318 55 NA 55 74.3243243 NA 74.3243243
## 319 47 NA 47 NA NA 0.0000000
## 320 16 NA 16 NA NA 0.0000000
## 321 8 NA 8 NA NA 0.0000000
## 322 15 NA 15 NA NA 0.0000000
## 323 79 NA 79 NA NA 0.0000000
## 324 74 NA 74 NA NA 0.0000000
## 325 2 NA 2 40.0000000 NA 40.0000000
## 326 5 NA 5 55.5555556 NA 55.5555556
## 327 20 NA 20 42.5531915 NA 42.5531915
## 328 2 NA 2 25.0000000 NA 25.0000000
## 329 27 NA 27 43.5483871 NA 43.5483871
## 330 11 NA 11 22.0000000 NA 22.0000000
## 331 3 NA 3 50.0000000 NA 50.0000000
## 332 157 NA 157 55.4770318 NA 55.4770318
## 333 171 NA 171 NA NA 0.0000000
## 334 68 NA 68 28.8135593 NA 28.8135593
## 335 184 NA 184 51.6853933 NA 51.6853933
## 336 203 NA 203 24.8470012 NA 24.8470012
## 337 18 NA 18 32.7000000 NA 32.7000000
## 338 2 NA 2 100.0000000 NA 100.0000000
## 339 17 NA 17 18.9000000 NA 18.9000000
## 340 2 NA 2 100.0000000 NA 100.0000000
## 341 73 NA 73 59.0000000 NA 59.0000000
## 342 300 NA 300 NA NA 0.0000000
## 343 30 NA 30 NA NA 0.0000000
## 344 37 NA 37 82.2222222 NA 82.2222222
## 345 17 NA 17 70.8333333 NA 70.8333333
## 346 70 NA 70 38.8888889 NA 38.8888889
## 347 75 NA 75 30.0000000 NA 30.0000000
## 348 104 NA 104 16.7741935 NA 16.7741935
## 349 71 NA 71 28.4000000 NA 28.4000000
## 350 45 2 47 23.4375000 NA 23.4375000
## 351 34 NA 34 39.0804598 NA 39.0804598
## 352 4 NA 4 NA NA 0.0000000
## 353 39 NA 39 NA NA 0.0000000
## 354 6 NA 6 NA NA 0.0000000
## 355 14 NA 14 0.5055977 NA 0.5055977
## 356 42 NA 42 31.0000000 NA 31.0000000
## 357 3 NA 3 0.7537688 NA 0.7537688
## 358 53 NA 53 22.9437229 NA 22.9437229
## 359 82 NA 82 NA NA 0.0000000
## 360 229 8 237 NA NA 0.0000000
## 361 48 NA 48 NA NA 0.0000000
## 362 204 56 260 25.8000000 NA 25.8000000
## 363 13 NA 13 3.7000000 NA 3.7000000
## 364 1 NA 1 NA NA NA
## 365 1 NA 1 NA NA NA
## 366 1 NA 1 NA NA NA
## 367 57 NA 57 NA NA NA
## 368 NA NA NA NA NA NA
## 369 30 NA 30 NA NA NA
## 370 39 NA 39 NA NA NA
## 371 56 NA 56 NA NA NA
## 372 33 NA 33 NA NA NA
## 373 49 NA 49 NA NA NA
## 374 NA NA NA NA NA NA
## 375 10 NA 10 NA NA NA
## 376 29 NA 29 NA NA NA
## 377 13 NA 13 NA NA NA
## 378 33 NA 33 49.3000000 NA 49.3000000
## 379 8 NA 8 19.0000000 NA 19.0000000
## 380 103 NA 103 44.9000000 NA 44.9000000
## 381 17 NA 17 28.8000000 NA 28.8000000
## 382 57 NA 57 54.3000000 NA 54.3000000
## 383 28 NA 28 31.8000000 NA 31.8000000
## 384 24 NA 24 NA NA NA
## 385 47 32 79 NA NA NA
## 386 38 28 66 17.0000000 11.0000 28.0000000
## 387 5 NA 5 NA NA 0.0000000
## 388 205 NA 205 23.9000000 NA 23.9000000
## 389 70 NA 70 70.0000000 NA 70.0000000
## 390 40 NA 40 38.1000000 NA 38.1000000
## 391 49 NA 49 24.5000000 NA 24.5000000
## 392 433 NA 433 25.0000000 NA 25.0000000
## 393 344 NA 344 NA NA 0.0000000
## 394 33 NA 33 3.3000000 NA 3.3000000
## 395 19 NA 19 95.0000000 NA 95.0000000
## 396 61 NA 61 44.5255474 NA 44.5255474
## 397 3 NA 3 100.0000000 NA 100.0000000
## 398 15 NA 15 13.6363636 NA 13.6363636
## 399 15 NA 15 NA NA 0.0000000
## 400 10 NA 10 76.9230769 NA 76.9230769
## 401 8 NA 8 100.0000000 NA 100.0000000
## 402 31 NA 31 NA NA 0.0000000
## 403 134 NA 134 NA NA 0.0000000
## 404 21 NA 21 NA NA 0.0000000
## 405 38 NA 38 NA NA 0.0000000
## 406 80 NA 80 20.0000000 NA 20.0000000
## 407 40 NA 40 17.0000000 NA 17.0000000
## 408 395 NA 395 10.4249142 NA 10.4249142
## 409 141 NA 141 67.1428571 NA 67.1428571
## 410 81 NA 81 NA NA 0.0000000
## 411 23 NA 23 NA NA 0.0000000
## 412 106 NA 106 NA NA 0.0000000
## 413 11 NA 11 4.5454545 NA 4.5454545
## 414 8 NA 8 NA NA 0.0000000
## 415 400 NA 400 NA NA 0.0000000
## 416 40 NA 40 NA NA 0.0000000
## 417 50 NA 50 NA NA 0.0000000
## 418 8 NA 8 NA NA 0.0000000
## 419 22 NA 22 55.0000000 NA 55.0000000
## 420 21 NA 21 84.0000000 NA 84.0000000
## 421 25 NA 25 NA NA 0.0000000
## 422 66 NA 66 33.0000000 NA 33.0000000
## 423 12 NA 12 NA NA 0.0000000
## 424 19 NA 19 NA NA 0.0000000
## 425 326 NA 326 7.2000000 NA 7.2000000
## 426 12 NA 12 80.0000000 NA 80.0000000
## 427 12 NA 12 40.0000000 NA 40.0000000
## 428 90 39 129 47.0000000 15.0000 62.0000000
## 429 35 NA 35 NA NA 0.0000000
## 430 2 NA 2 NA NA 0.0000000
## 431 5 NA 5 56.0000000 NA 56.0000000
## 432 16 NA 16 48.0000000 NA 48.0000000
## 433 16 NA 16 6.0000000 NA 6.0000000
## 434 74 NA 74 NA NA 0.0000000
## 435 60 NA 60 NA NA 0.0000000
## 436 30 NA 30 NA NA 0.0000000
## 437 54 NA 54 NA NA 0.0000000
## 438 63 NA 63 NA NA 0.0000000
## 439 350 NA 350 NA NA 0.0000000
## 440 13 NA 13 NA NA 0.0000000
## 441 35 NA 35 NA NA 0.0000000
## 442 18 NA 18 NA NA 0.0000000
## 443 35 NA 35 NA NA 0.0000000
## 444 150 NA 150 NA NA 0.0000000
## 445 12 NA 12 NA NA 0.0000000
## 446 9 NA 9 NA NA 0.0000000
## 447 22 NA 22 NA NA 0.0000000
## 448 100 NA 100 NA NA 0.0000000
## 449 19 NA 19 NA NA 0.0000000
## 450 150 NA 150 55.0000000 NA 55.0000000
## 451 137 NA 137 NA NA 0.0000000
## 452 153 76 229 31.0000000 29.6875 60.6875000
## 453 242 NA 242 NA NA 0.0000000
## 454 13 NA 13 28.8888889 NA 28.8888889
## 455 40 NA 40 33.3333333 NA 33.3333333
## 456 60 NA 60 60.0000000 NA 60.0000000
## 457 13 NA 13 92.8571429 NA 92.8571429
## 458 20 NA 20 80.0000000 NA 80.0000000
## 459 37 5 42 5.2857143 NA 5.2857143
## 460 183 NA 183 NA NA 0.0000000
## 461 37 NA 37 16.8181818 NA 16.8181818
## 462 27 NA 27 14.9171271 NA 14.9171271
## 463 14 NA 14 26.4150943 NA 26.4150943
## 464 186 NA 186 33.0000000 NA 33.0000000
## 465 47 NA 47 50.0000000 NA 50.0000000
## 466 13 NA 13 NA NA 0.0000000
## 467 8 NA 8 NA NA 0.0000000
## 468 64 NA 64 19.9376947 NA 19.9376947
## 469 41 NA 41 27.3000000 NA 27.3000000
## 470 163 37 200 NA NA 0.0000000
## 471 124 NA 124 3.4075295 NA 3.4075295
## 472 8 NA 8 24.2000000 NA 24.2000000
## 473 8 NA 8 18.2000000 NA 18.2000000
## 474 5 NA 5 38.5000000 NA 38.5000000
## 475 5 NA 5 83.3000000 NA 83.3000000
## 476 16 NA 16 24.6000000 NA 24.6000000
## 477 5 NA 5 31.3000000 NA 31.3000000
## 478 14 NA 14 26.4150943 NA 26.4150943
## 479 162 NA 162 6.0000000 NA 6.0000000
## 480 425 NA 425 9.0000000 NA 9.0000000
## 481 48 NA 48 35.0000000 NA 35.0000000
## 482 19 NA 19 73.1000000 NA 73.1000000
## 483 60 NA 60 56.6000000 NA 56.6000000
## 484 166 NA 166 20.8805031 NA 20.8805031
## 485 4 NA 4 NA NA 0.0000000
## 486 1699 NA 1699 10.0000000 NA 10.0000000
## 487 20 NA 20 NA NA 0.0000000
## 488 55 NA 55 1.8625127 NA 1.8625127
## 489 395 NA 395 10.4249142 NA 10.4249142
## 490 11 NA 11 48.0000000 NA 48.0000000
## 491 17 NA 17 30.0000000 NA 30.0000000
## 492 8 NA 8 10.0000000 NA 10.0000000
## 493 26 NA 26 31.0000000 NA 31.0000000
## 494 22 NA 22 28.0000000 NA 28.0000000
## 495 42 2 44 52.5000000 NA 52.5000000
## 496 6390 NA 6390 NA NA 0.0000000
## 497 71 16 87 85.0000000 20.0000 105.0000000
## 498 17 NA 17 8.9000000 NA 8.9000000
## 499 6 NA 6 NA NA NA
## 500 5 NA 5 NA NA NA
## 501 2 NA 2 NA NA NA
## 502 5 NA 5 NA NA NA
## 503 4 NA 4 NA NA NA
## 504 1 NA 1 NA NA NA
## 505 86 NA 86 NA NA NA
## 506 218 NA 218 NA NA NA
## 507 27 NA 27 NA NA NA
## 508 1450 NA 1450 NA NA NA
## 509 125 NA 125 NA NA NA
## 510 41 NA 41 NA NA NA
## 511 134 NA 134 65.0000000 NA 65.0000000
## 512 333 NA 333 44.0000000 NA 44.0000000
## 513 35 NA 35 43.2098765 NA 43.2098765
## 514 69 34 103 30.7000000 NA 30.7000000
## 515 75 NA 75 NA NA 0.0000000
## 516 40 NA 40 NA NA 0.0000000
## 517 60 NA 60 40.0000000 NA 40.0000000
## 518 2 NA 2 50.0000000 NA 50.0000000
## 519 11 NA 11 52.3809524 NA 52.3809524
## 520 14 NA 14 77.7777778 NA 77.7777778
## 521 2 NA 2 100.0000000 NA 100.0000000
## 522 9 NA 9 75.0000000 NA 75.0000000
## 523 35 NA 35 NA NA 0.0000000
## 524 448 NA 448 NA NA 0.0000000
## 525 71 NA 71 NA NA 0.0000000
## 526 38 NA 38 21.1111111 NA 21.1111111
## 527 175 NA 175 22.6683938 NA 22.6683938
## 528 13 NA 13 48.1481481 NA 48.1481481
## 529 36 NA 36 52.9411765 NA 52.9411765
## 530 53 NA 53 28.0000000 NA 28.0000000
## 531 381 6 387 60.9600000 NA 60.9600000
## 532 103 NA 103 39.0000000 NA 39.0000000
## 533 1450 NA 1450 NA NA 0.0000000
## 534 41 NA 41 NA NA 0.0000000
## 535 32150 NA 32150 NA NA 0.0000000
## 536 187 NA 187 NA NA 0.0000000
## 537 165 NA 165 NA NA 0.0000000
## 538 942 NA 942 20.8545495 NA 20.8545495
## 539 79 NA 79 NA NA 0.0000000
## 540 231 NA 231 27.5000000 NA 27.5000000
## 541 18 NA 18 NA NA 0.0000000
## 542 25 NA 25 NA NA 0.0000000
## 543 26 NA 26 NA NA 0.0000000
## 544 9 NA 9 NA NA 0.0000000
## 545 30 NA 30 NA NA 0.0000000
## 546 48 NA 48 NA NA 0.0000000
## 547 21 NA 21 58.0000000 NA 58.0000000
## 548 69 NA 69 NA NA 0.0000000
## 549 310 NA 310 NA NA 0.0000000
## 550 29 NA 29 85.0000000 NA 85.0000000
## 551 21 NA 21 81.0000000 NA 81.0000000
## 552 13 NA 13 43.0000000 NA 43.0000000
## 553 650 NA 650 NA NA 0.0000000
## 554 28 NA 28 NA NA 0.0000000
## 555 35 NA 35 NA NA 0.0000000
## 556 70 NA 70 6.5604499 NA 6.5604499
## 557 15 NA 15 68.1818182 NA 68.1818182
## 558 50 NA 50 NA NA 0.0000000
## 559 81 NA 81 NA NA 0.0000000
## 560 159 NA 159 13.3000000 NA 13.3000000
## 561 40 NA 40 NA NA 0.0000000
## 562 106 NA 106 20.0000000 NA 20.0000000
## 563 152 NA 152 20.0000000 NA 20.0000000
## 564 2 NA 2 NA NA 0.0000000
## 565 3 NA 3 NA NA 0.0000000
## 566 13 NA 13 68.0000000 NA 68.0000000
## 567 34 NA 34 76.0000000 NA 76.0000000
## 568 7 NA 7 NA NA 0.0000000
## 569 4 NA 4 NA NA 0.0000000
## 570 4 NA 4 NA NA 0.0000000
## 571 13 NA 13 NA NA 0.0000000
## 572 36 NA 36 46.0000000 NA 46.0000000
## 573 6 NA 6 86.0000000 NA 86.0000000
## 574 8 NA 8 57.0000000 NA 57.0000000
## 575 6 NA 6 NA NA 0.0000000
## 576 11 NA 11 65.0000000 NA 65.0000000
## 577 19 NA 19 NA NA 0.0000000
## 578 10 NA 10 83.0000000 NA 83.0000000
## 579 57 NA 57 NA NA 0.0000000
## 580 52 NA 52 NA NA 0.0000000
## 581 76 NA 76 64.0000000 NA 64.0000000
## 582 4 NA 4 NA NA 0.0000000
## 583 6 NA 6 60.0000000 NA 60.0000000
## 584 6 NA 6 43.0000000 NA 43.0000000
## 585 34 NA 34 44.0000000 NA 44.0000000
## 586 28 NA 28 90.0000000 NA 90.0000000
## 587 51 NA 51 NA NA 0.0000000
## 588 29 NA 29 NA NA 0.0000000
## 589 64 NA 64 NA NA 0.0000000
## 590 15 NA 15 75.0000000 NA 75.0000000
## 591 38 NA 38 51.0000000 NA 51.0000000
## 592 41 NA 41 12.0000000 NA 12.0000000
## 593 218 NA 218 NA NA 0.0000000
## 594 28 11 39 33.3333333 NA 33.3333333
## 595 11 NA 11 61.1111111 NA 61.1111111
## 596 6 NA 6 NA NA 0.0000000
## 597 2 NA 2 100.0000000 NA 100.0000000
## 598 1 NA 1 50.0000000 NA 50.0000000
## 599 15 NA 15 NA NA 0.0000000
## 600 26 NA 26 NA NA 0.0000000
## 601 4 NA 4 66.6666667 NA 66.6666667
## 602 20 NA 20 40.0000000 NA 40.0000000
## 603 19 NA 19 NA NA 0.0000000
## 604 17 NA 17 62.9629630 NA 62.9629630
## 605 3 NA 3 75.0000000 NA 75.0000000
## 606 4 NA 4 NA NA 0.0000000
## 607 2 NA 2 100.0000000 NA 100.0000000
## 608 6 NA 6 31.5789474 NA 31.5789474
## 609 93 NA 93 NA NA 0.0000000
## 610 55 NA 55 34.8101266 NA 34.8101266
## 611 82 NA 82 43.1578947 NA 43.1578947
## 612 8 NA 8 NA NA 0.0000000
## 613 8 NA 8 NA NA 0.0000000
## 614 20 NA 20 NA NA 0.0000000
## 615 9 NA 9 NA NA 0.0000000
## 616 7 NA 7 70.0000000 NA 70.0000000
## 617 28 NA 28 36.3636364 NA 36.3636364
## 618 32 NA 32 NA NA 0.0000000
## 619 11 NA 11 NA NA 0.0000000
## 620 4 NA 4 NA NA 0.0000000
## 621 19 NA 19 NA NA 0.0000000
## 622 4 NA 4 NA NA 0.0000000
## 623 3 NA 3 NA NA 0.0000000
## 624 2 NA 2 NA NA 0.0000000
## 625 3 NA 3 100.0000000 NA 100.0000000
## 626 57 NA 57 59.3750000 NA 59.3750000
## 627 3 NA 3 NA NA 0.0000000
## 628 6 NA 6 NA NA 0.0000000
## 629 1 NA 1 NA NA 0.0000000
## 630 8 NA 8 100.0000000 NA 100.0000000
## 631 12 NA 12 54.5454546 NA 54.5454546
## 632 15 NA 15 100.0000000 NA 100.0000000
## 633 7 NA 7 NA NA 0.0000000
## 634 103 NA 103 39.4636015 NA 39.4636015
## 635 107 NA 107 50.7109005 NA 50.7109005
## 636 47 NA 47 17.9389313 NA 17.9389313
## 637 1 NA 1 NA NA 0.0000000
## 638 4 NA 4 100.0000000 NA 100.0000000
## 639 10 NA 10 90.9090909 NA 90.9090909
## 640 19 NA 19 47.5000000 NA 47.5000000
## 641 9 NA 9 52.9411765 NA 52.9411765
## 642 19 NA 19 59.3750000 NA 59.3750000
## 643 2 NA 2 16.6666667 NA 16.6666667
## 644 6 1 7 75.0000000 NA 75.0000000
## 645 355 NA 355 52.5925926 NA 52.5925926
## 646 3 NA 3 75.0000000 NA 75.0000000
## 647 2 NA 2 67.0000000 NA 67.0000000
## 648 7 NA 7 78.0000000 NA 78.0000000
## 649 11 NA 11 79.0000000 NA 79.0000000
## 650 7 NA 7 39.0000000 NA 39.0000000
## 651 13 NA 13 45.0000000 NA 45.0000000
## 652 2 NA 2 100.0000000 NA 100.0000000
## 653 2 NA 2 40.0000000 NA 40.0000000
## 654 7 NA 7 70.0000000 NA 70.0000000
## 655 32 NA 32 37.0000000 NA 37.0000000
## 656 7 NA 7 47.0000000 NA 47.0000000
## 657 2 NA 2 100.0000000 NA 100.0000000
## 658 2 NA 2 100.0000000 NA 100.0000000
## 659 12 NA 12 32.0000000 NA 32.0000000
## 660 13 NA 13 87.0000000 NA 87.0000000
## 661 4 NA 4 100.0000000 NA 100.0000000
## 662 11 NA 11 73.0000000 NA 73.0000000
## 663 15 NA 15 56.0000000 NA 56.0000000
## 664 17 NA 17 61.0000000 NA 61.0000000
## 665 22 NA 22 49.0000000 NA 49.0000000
## 666 12 NA 12 33.0000000 NA 33.0000000
## 667 12 NA 12 52.0000000 NA 52.0000000
## 668 20 NA 20 36.0000000 NA 36.0000000
## 669 4 NA 4 40.0000000 NA 40.0000000
## 670 2 NA 2 100.0000000 NA 100.0000000
## 671 56 NA 56 26.0000000 NA 26.0000000
## 672 6 NA 6 12.0000000 NA 12.0000000
## 673 19 NA 19 95.0000000 NA 95.0000000
## 674 10 NA 10 29.0000000 NA 29.0000000
## 675 2 NA 2 100.0000000 NA 100.0000000
## 676 3 NA 3 100.0000000 NA 100.0000000
## 677 27 NA 27 52.0000000 NA 52.0000000
## 678 21 NA 21 42.0000000 NA 42.0000000
## 679 977 NA 977 2.7914286 NA 2.7914286
## 680 445 NA 445 18.1855333 NA 18.1855333
## 681 80 NA 80 58.3941606 NA 58.3941606
## 682 295 NA 295 NA NA 0.0000000
## 683 63 NA 63 NA NA 0.0000000
## 684 188 NA 188 NA NA 0.0000000
## 685 52 NA 52 7.1000000 NA 7.1000000
## 686 542 1113 1655 20.9671180 NA 20.9671180
## 687 176 NA 176 61.9000000 NA 61.9000000
## 688 331 NA 331 NA NA 0.0000000
## 689 329 NA 329 NA NA 0.0000000
## 690 205 NA 205 NA NA 0.0000000
## 691 41 NA 41 NA NA 0.0000000
## 692 400 NA 400 NA NA 0.0000000
## 693 103 NA 103 NA NA 0.0000000
## 694 10 NA 10 NA NA 0.0000000
## 695 20 NA 20 NA NA 0.0000000
## 696 74 NA 74 NA NA 0.0000000
## 697 120 NA 120 NA NA 0.0000000
## 698 32 NA 32 NA NA 0.0000000
## 699 6 NA 6 NA NA 0.0000000
## 700 6 NA 6 NA NA 0.0000000
## 701 35 NA 35 NA NA 0.0000000
## 702 20 NA 20 NA NA 0.0000000
## 703 48 NA 48 NA NA 0.0000000
## 704 35 NA 35 NA NA 0.0000000
## 705 15 NA 15 NA NA 0.0000000
## 706 30 NA 30 NA NA 0.0000000
## 707 52 NA 52 63.0000000 NA 63.0000000
## 708 29 NA 29 85.2941177 NA 85.2941177
## 709 142 8 150 75.5319149 NA 75.5319149
## 710 200 NA 200 8.0000000 NA 8.0000000
## 711 100 NA 100 40.0000000 NA 40.0000000
## 712 300 NA 300 13.6363636 NA 13.6363636
## 713 11 NA 11 84.6153846 NA 84.6153846
## 714 58 NA 58 NA NA 0.0000000
## Hospitalizations Deaths
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 5 0
## 10 10 0
## 11 3 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 0 0
## 20 NA NA
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 1 0
## 35 NA NA
## 36 0 0
## 37 NA NA
## 38 NA NA
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 0
## 65 0 1
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 NA NA
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 NA NA
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 NA NA
## 99 NA NA
## 100 NA NA
## 101 NA NA
## 102 NA NA
## 103 NA NA
## 104 0 0
## 105 NA NA
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 1 4
## 117 NA NA
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 0 0
## 134 0 0
## 135 0 0
## 136 0 0
## 137 10 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 2 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 4
## 149 NA NA
## 150 13 0
## 151 NA NA
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 NA NA
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 25 5
## 176 0 0
## 177 0 0
## 178 0 0
## 179 26 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 NA NA
## 188 23 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 1
## 194 0 0
## 195 8 0
## 196 NA NA
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 2 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 NA NA
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 2 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 NA NA
## 308 NA NA
## 309 0 0
## 310 NA NA
## 311 NA NA
## 312 NA NA
## 313 NA NA
## 314 3 2
## 315 0 0
## 316 0 0
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 NA NA
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 1 0
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 0 0
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 0 0
## 359 0 0
## 360 0 0
## 361 NA NA
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 11 3
## 379 0 0
## 380 6 0
## 381 3 1
## 382 0 0
## 383 5 1
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 99 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 5 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 NA NA
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 NA NA
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 23 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 0 0
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 54 0
## 426 0 0
## 427 0 0
## 428 3 0
## 429 0 0
## 430 0 0
## 431 0 0
## 432 0 0
## 433 0 0
## 434 0 0
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 0 0
## 440 0 0
## 441 0 0
## 442 0 0
## 443 0 0
## 444 0 0
## 445 0 0
## 446 0 0
## 447 0 0
## 448 0 0
## 449 0 0
## 450 0 0
## 451 0 0
## 452 0 0
## 453 3 0
## 454 0 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 NA NA
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 NA NA
## 467 NA NA
## 468 NA NA
## 469 0 0
## 470 2 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 0 0
## 478 0 0
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 0 0
## 484 0 0
## 485 0 0
## 486 NA NA
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 0
## 496 0 0
## 497 40 0
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 21 0
## 509 125 0
## 510 0 0
## 511 8 0
## 512 3 0
## 513 1 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 0 0
## 519 0 0
## 520 0 0
## 521 0 0
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 1 0
## 530 1 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 0 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 0 0
## 548 0 0
## 549 0 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 0 0
## 554 0 0
## 555 0 0
## 556 0 0
## 557 0 0
## 558 0 0
## 559 0 0
## 560 0 0
## 561 0 0
## 562 0 0
## 563 0 0
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 0 0
## 591 0 0
## 592 0 0
## 593 0 0
## 594 NA NA
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 0 0
## 649 0 0
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 0
## 654 0 0
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 0
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 NA NA
## 680 0 9
## 681 1 0
## 682 0 0
## 683 0 0
## 684 NA NA
## 685 0 0
## 686 0 0
## 687 4 0
## 688 0 0
## 689 2 0
## 690 NA NA
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 0
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 4 3
## 710 0 0
## 711 0 0
## 712 0 0
## 713 0 0
## 714 0 0
## Vehicle_1
## 1 0
## 2 Boxed Lunch
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 Oysters
## 11 Oysters
## 12 Potato Salad
## 13 0
## 14 0
## 15 embarkation lunch
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 Contami ted oyster
## 35 0
## 36 Catered Lunch
## 37 0
## 38 sandwiches
## 39 0
## 40 Recreatio l river water
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 Boiled broccoli (handled by foodworkers)
## 47 salad
## 48 0
## 49 0
## 50 0
## 51 0
## 52 Shellfish
## 53 Shellfish
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 Oysters
## 62 Oysters
## 63 Raspberries
## 64 Catered Food
## 65 Infected Patients
## 66 Oysters
## 67 Coleslaw
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 drinking water
## 75 0
## 76 drinking water
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 Infected Persons
## 89 Ground Water
## 90 School Lunch
## 91 child who vomited in nursery school sandpit
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 Contami ted Well Water
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 shellfish
## 105 Shellfish
## 106 Direct person-to person spread and/or contact with diverse contami ted environmental surfaces
## 107 oysters
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 nusing assistant that placed bread on trays and served food to people
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 Tomato
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 pasta in mayon ise
## 143 0
## 144 Frozen raspberries
## 145 Frozen raspberries
## 146 Frozen raspberries
## 147 Lunch prepared by ill worker
## 148 0
## 149 0
## 150 0
## 151 salad
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 mashed potatoes
## 166 sandwiches
## 167 meat stew
## 168 sandwiches
## 169 chinese take out
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 Infected patient
## 178 0
## 179 0
## 180 Sub Sandwich
## 181 sandwich lettuce
## 182 0
## 183 0
## 184 0
## 185 Contami ted surfaces/fomites
## 186 0
## 187 0
## 188 deli sandwiches
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 Infected Persons
## 195 Wedding Cake
## 196 Salad
## 197 Pumpkin Salad
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 Bivalve Shellfish
## 205 0
## 206 0
## 207 0
## 208 0
## 209 Oyster
## 210 0
## 211 Fresh Fruit
## 212 Oysters
## 213 0
## 214 0
## 215 0
## 216 Oysters
## 217 Oysters
## 218 Oysters
## 219 0
## 220 0
## 221 0
## 222 0
## 223 Oysters
## 224 Oysters
## 225 Oysters
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 Oysters
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 Contami ted surfaces/fomites
## 244 Shellfish
## 245 Shellfish
## 246 Shellfish
## 247 Shellfish
## 248 Shellfish
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 Contami ted Ground Water
## 263 Contami ted Ground Water
## 264 0
## 265 municiple water system
## 266 Oysters
## 267 Infected Persons
## 268 0
## 269 drinking water
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Tap water
## 281 Contamia ted Ground water
## 282 Ground Water
## 283 Well Water
## 284 Well Water
## 285 Contami ted surface water (river)
## 286 Ground Water
## 287 Infected Persons
## 288 contami ted serving utensils
## 289 0
## 290 oysters
## 291 oysters
## 292 0
## 293 Well Water
## 294 kitchen staff member taken ill during the preparation of the meals
## 295 0
## 296 0
## 297 index case infected in community before entering hospital
## 298 index case became ill with usea, vomiting and diarrhoea
## 299 0
## 300 seawater subsequently was shown to be contami ted with raw sewage
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Contami ted Well Water
## 308 Raspberries
## 309 Mussels
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 Sandwiches
## 318 Flood water contami ted with sewage
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 oysters
## 332 0
## 333 oysters
## 334 0
## 335 0
## 336 0
## 337 oysters
## 338 0
## 339 oysters
## 340 0
## 341 ready-to-eat foods
## 342 Sandwiches
## 343 0
## 344 Food handler
## 345 0
## 346 Food handler
## 347 0
## 348 0
## 349 0
## 350 oysters
## 351 oysters
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 cooker
## 359 0
## 360 drinking water
## 361 0
## 362 sliced pork salad and rolled pancake with spi ch
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 Softdrinks
## 389 composite meal
## 390 tap water
## 391 sandwiches
## 392 Well Water
## 393 Tap Water
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Tap Water
## 404 0
## 405 0
## 406 Infected Persons
## 407 Infected persons
## 408 0
## 409 Sewage contami ted well water
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 Frozen Raspberries
## 416 Frozen Raspberries
## 417 Frozen Raspberries
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 Raspberries
## 427 Raspberries
## 428 Recreatio l fountain
## 429 0
## 430 0
## 431 shellfish
## 432 0
## 433 0
## 434 drinking water
## 435 0
## 436 Drinking water
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 Raspberries
## 446 Raspberries
## 447 0
## 448 0
## 449 drinking water
## 450 raw vegetables/salad
## 451 Deli meat
## 452 Aerosolized vomit
## 453 Contami ted Pool Water
## 454 Well Water
## 455 Well Water
## 456 Well Water
## 457 Well Water
## 458 Well Water
## 459 0
## 460 Drinking water
## 461 Infected Persons
## 462 0
## 463 poor sanitation in crew facilities and sleeping quarters
## 464 0
## 465 Potato Salad
## 466 0
## 467 0
## 468 0
## 469 ice from tap water and mussels were both implicated, determi tion could not be made as to which, although it's hypothesized that contami ted water may have been used to rinse the mussels
## 470 Contami ted Lake Water
## 471 0
## 472 0
## 473 oysters
## 474 oysters
## 475 0
## 476 oysters
## 477 oysters
## 478 Oysters
## 479 0
## 480 0
## 481 0
## 482 food prepared by same food handler as that in 784
## 483 salad
## 484 0
## 485 oysters
## 486 Municiple water supply
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 round of beef
## 496 0
## 497 Well water
## 498 water
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 Side salad, most likely a pasta salad
## 513 Well Water
## 514 Softdrinks
## 515 Oysters
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 Tap Water
## 525 0
## 526 0
## 527 Tap water/Community water supply A
## 528 0
## 529 Sub Sandwich
## 530 Public Swiming Pool Water
## 531 Garlic mashed potatoes, antipasta platter
## 532 Contami ted computer equipment
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 Contami ted surfaces/fomites
## 539 Oysters
## 540 Rolls
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 Oysters
## 548 Oysters
## 549 Contami ted surfaces/fomites
## 550 0
## 551 Contami ted surfaces/fomites
## 552 0
## 553 Contami ted tap water
## 554 Infected persons
## 555 Infected Persons
## 556 0
## 557 Raw Oysters
## 558 diabetic man
## 559 case from previous outbreak becamse index case for this outbreak
## 560 Salad
## 561 0
## 562 0
## 563 0
## 564 0
## 565 Oyster
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 Oyster
## 572 0
## 573 0
## 574 Oyster
## 575 0
## 576 Oyster
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 Oyster
## 591 0
## 592 0
## 593 Contami ted Drinking Water
## 594 0
## 595 Oysters
## 596 0
## 597 0
## 598 0
## 599 Oysters
## 600 0
## 601 0
## 602 Oysters
## 603 0
## 604 Oysters
## 605 0
## 606 Oysters
## 607 0
## 608 Oysters
## 609 0
## 610 0
## 611 0
## 612 Oysters
## 613 Oysters
## 614 0
## 615 Oysters
## 616 0
## 617 Oyster
## 618 0
## 619 Oysters
## 620 Oysters
## 621 Oysters
## 622 Oysters
## 623 0
## 624 0
## 625 Oysters
## 626 Oysters
## 627 0
## 628 0
## 629 Oysters
## 630 Oysters
## 631 Oysters
## 632 0
## 633 0
## 634 Oysters
## 635 Oysters
## 636 0
## 637 0
## 638 Oysters
## 639 Oysters
## 640 Oysters
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 Shellfish
## 647 Shellfish
## 648 Shellfish
## 649 Shellfish
## 650 Shellfish
## 651 Shellfish
## 652 Shellfish
## 653 Shellfish
## 654 Shellfish
## 655 Shellfish
## 656 Shellfish
## 657 Shellfish
## 658 Shellfish
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 prolonged outbreak in community
## 681 Tossed Salad
## 682 Ice
## 683 0
## 684 Salad (bar itmes)
## 685 Rolled cabbage and macaroni in catered boxed lunch
## 686 Contami ted Tap Water
## 687 Aerosolized vomit
## 688 Contami ted surfaces/fomites
## 689 Oysters
## 690 Oysters
## 691 0
## 692 drinking water
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 Aerosolized Vomit
## 708 0
## 709 Infected Persons
## 710 Ground Water
## 711 Ground Water
## 712 Ground Water
## 713 Contami ted lake water used for drinking
## 714 Infected Persons
## Veh1
## 1 Unspecified
## 2 Yes
## 3 Unspecified
## 4 Unspecified
## 5 Unspecified
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 Unspecified
## 10 Yes
## 11 Yes
## 12 Yes
## 13 Yes
## 14 Unspecified
## 15 Yes
## 16 Unspecified
## 17 Unspecified
## 18 Yes
## 19 Yes
## 20 Yes
## 21 Unspecified
## 22 Unspecified
## 23 Unspecified
## 24 Unspecified
## 25 Unspecified
## 26 Unspecified
## 27 Unspecified
## 28 Unspecified
## 29 Unspecified
## 30 Unspecified
## 31 Unspecified
## 32 Unspecified
## 33 Unspecified
## 34 Yes
## 35 Yes
## 36 Yes
## 37 Yes
## 38 Yes
## 39 Unspecified
## 40 Yes
## 41 Unknown
## 42 Unspecified
## 43 Unspecified
## 44 Yes
## 45 Unspecified
## 46 Yes
## 47 Yes
## 48 Yes
## 49 Yes
## 50 Unknown
## 51 Yes
## 52 Yes
## 53 Yes
## 54 Unspecified
## 55 Unspecified
## 56 Unspecified
## 57 Unspecified
## 58 Unspecified
## 59 Unspecified
## 60 Unspecified
## 61 Yes
## 62 Yes
## 63 Yes
## 64 Yes
## 65 Yes
## 66 Yes
## 67 Yes
## 68 Unspecified
## 69 Unspecified
## 70 Unspecified
## 71 Unspecified
## 72 Unspecified
## 73 Unspecified
## 74 Yes
## 75 Unspecified
## 76 Yes
## 77 Unspecified
## 78 Unspecified
## 79 Unspecified
## 80 Unspecified
## 81 Unspecified
## 82 Unspecified
## 83 Unspecified
## 84 Unspecified
## 85 Unspecified
## 86 Unspecified
## 87 Yes
## 88 Yes
## 89 Yes
## 90 Yes
## 91 Yes
## 92 Unspecified
## 93 Yes
## 94 Unspecified
## 95 Unspecified
## 96 Unspecified
## 97 Yes
## 98 Unspecified
## 99 Yes
## 100 Yes
## 101 Yes
## 102 Yes
## 103 Unspecified
## 104 Yes
## 105 Yes
## 106 Yes
## 107 Yes
## 108 Unknown
## 109 Unspecified
## 110 Unspecified
## 111 Unspecified
## 112 Unspecified
## 113 Yes
## 114 Yes
## 115 Yes
## 116 Yes
## 117 Unknown
## 118 Unknown
## 119 Unspecified
## 120 Unspecified
## 121 Unspecified
## 122 Unspecified
## 123 Unspecified
## 124 Unspecified
## 125 Unspecified
## 126 Unspecified
## 127 Unspecified
## 128 Unspecified
## 129 Unspecified
## 130 Unspecified
## 131 Unknown
## 132 Yes
## 133 Unspecified
## 134 Yes
## 135 Unknown
## 136 Yes
## 137 Unspecified
## 138 Unspecified
## 139 Unspecified
## 140 Unspecified
## 141 Unspecified
## 142 Yes
## 143 Unspecified
## 144 Yes
## 145 Yes
## 146 Yes
## 147 Yes
## 148 Yes
## 149 Unspecified
## 150 Yes
## 151 Yes
## 152 Unspecified
## 153 Unspecified
## 154 Unspecified
## 155 Unspecified
## 156 Unspecified
## 157 Unspecified
## 158 Unspecified
## 159 Unspecified
## 160 Unspecified
## 161 Unspecified
## 162 Unspecified
## 163 Unspecified
## 164 Unspecified
## 165 Yes
## 166 Yes
## 167 Yes
## 168 Yes
## 169 Yes
## 170 Unknown
## 171 Unspecified
## 172 Unspecified
## 173 Unspecified
## 174 Unspecified
## 175 Yes
## 176 Unspecified
## 177 Yes
## 178 Unspecified
## 179 Yes
## 180 Yes
## 181 Yes
## 182 Yes
## 183 Yes
## 184 Unspecified
## 185 Yes
## 186 Unspecified
## 187 Unspecified
## 188 Yes
## 189 Unspecified
## 190 Unspecified
## 191 Unspecified
## 192 Yes
## 193 Yes
## 194 Yes
## 195 Yes
## 196 Yes
## 197 Yes
## 198 Unspecified
## 199 Unspecified
## 200 Unspecified
## 201 Unspecified
## 202 Unspecified
## 203 Yes
## 204 Yes
## 205 Unspecified
## 206 Yes
## 207 Unspecified
## 208 Unspecified
## 209 Yes
## 210 Yes
## 211 Yes
## 212 Yes
## 213 Unknown
## 214 Yes
## 215 Unknown
## 216 Yes
## 217 Yes
## 218 Yes
## 219 Yes
## 220 Unknown
## 221 Unknown
## 222 Unknown
## 223 Yes
## 224 Yes
## 225 Yes
## 226 Unknown
## 227 Unknown
## 228 Yes
## 229 Yes
## 230 Yes
## 231 Yes
## 232 Yes
## 233 Yes
## 234 Unknown
## 235 Yes
## 236 Unknown
## 237 Yes
## 238 Yes
## 239 Unknown
## 240 Yes
## 241 Yes
## 242 Yes
## 243 Yes
## 244 Yes
## 245 Yes
## 246 Yes
## 247 Yes
## 248 Yes
## 249 Unspecified
## 250 Unspecified
## 251 Unspecified
## 252 Unspecified
## 253 Unspecified
## 254 Unspecified
## 255 Unspecified
## 256 Unspecified
## 257 Unspecified
## 258 Unspecified
## 259 Unspecified
## 260 Unspecified
## 261 Unspecified
## 262 Yes
## 263 Yes
## 264 Unknown
## 265 Yes
## 266 Yes
## 267 Yes
## 268 Unspecified
## 269 Yes
## 270 Unspecified
## 271 Unspecified
## 272 Unspecified
## 273 Unspecified
## 274 Unspecified
## 275 Unspecified
## 276 Unspecified
## 277 Unspecified
## 278 Unspecified
## 279 Unspecified
## 280 Yes
## 281 Yes
## 282 Yes
## 283 Yes
## 284 Yes
## 285 Yes
## 286 Yes
## 287 Yes
## 288 Yes
## 289 Unknown
## 290 Yes
## 291 Yes
## 292 Unspecified
## 293 Yes
## 294 Yes
## 295 Unspecified
## 296 Unspecified
## 297 Yes
## 298 Yes
## 299 Unspecified
## 300 Yes
## 301 Yes
## 302 Unspecified
## 303 Unspecified
## 304 Yes
## 305 Unspecified
## 306 Unspecified
## 307 Yes
## 308 Yes
## 309 Yes
## 310 Unspecified
## 311 Yes
## 312 Unspecified
## 313 Yes
## 314 Yes
## 315 Unknown
## 316 Yes
## 317 Yes
## 318 Yes
## 319 Unspecified
## 320 Unspecified
## 321 Unspecified
## 322 Unspecified
## 323 Unspecified
## 324 Unspecified
## 325 Unknown
## 326 Unknown
## 327 Unknown
## 328 Unknown
## 329 Unspecified
## 330 Unknown
## 331 Yes
## 332 Unknown
## 333 Yes
## 334 Unspecified
## 335 Unspecified
## 336 Unspecified
## 337 Yes
## 338 Unspecified
## 339 Yes
## 340 Unspecified
## 341 Yes
## 342 Yes
## 343 Yes
## 344 Yes
## 345 Yes
## 346 Yes
## 347 Unspecified
## 348 Unspecified
## 349 Unknown
## 350 Yes
## 351 Yes
## 352 Unspecified
## 353 Unspecified
## 354 Unspecified
## 355 Unspecified
## 356 Unspecified
## 357 Unknown
## 358 Yes
## 359 Unspecified
## 360 Yes
## 361 Unknown
## 362 Yes
## 363 Unspecified
## 364 Unspecified
## 365 Unspecified
## 366 Unspecified
## 367 Unspecified
## 368 Unspecified
## 369 Unspecified
## 370 Unspecified
## 371 Unspecified
## 372 Unspecified
## 373 Unspecified
## 374 Unspecified
## 375 Unspecified
## 376 Unspecified
## 377 Unspecified
## 378 Unspecified
## 379 Unspecified
## 380 Unspecified
## 381 Unspecified
## 382 Unspecified
## 383 Unspecified
## 384 Unspecified
## 385 Unspecified
## 386 Unspecified
## 387 Unspecified
## 388 Yes
## 389 Yes
## 390 Yes
## 391 Yes
## 392 Yes
## 393 Yes
## 394 Unspecified
## 395 Unspecified
## 396 Unspecified
## 397 Unspecified
## 398 Unspecified
## 399 Unspecified
## 400 Unspecified
## 401 Unspecified
## 402 Unknown
## 403 Yes
## 404 Unspecified
## 405 Unspecified
## 406 Yes
## 407 Yes
## 408 Unspecified
## 409 Yes
## 410 Unspecified
## 411 Unspecified
## 412 Unspecified
## 413 Unspecified
## 414 Yes
## 415 Yes
## 416 Yes
## 417 Yes
## 418 Yes
## 419 Yes
## 420 Yes
## 421 No
## 422 Unspecified
## 423 Unspecified
## 424 Unspecified
## 425 Unspecified
## 426 Yes
## 427 Yes
## 428 Yes
## 429 Unknown
## 430 Unknown
## 431 Yes
## 432 Unspecified
## 433 Unspecified
## 434 Yes
## 435 Unspecified
## 436 Yes
## 437 Unspecified
## 438 Unspecified
## 439 Unspecified
## 440 Unspecified
## 441 Unspecified
## 442 Unspecified
## 443 Unspecified
## 444 Unspecified
## 445 Yes
## 446 Yes
## 447 Unspecified
## 448 Unspecified
## 449 Yes
## 450 Yes
## 451 Yes
## 452 Yes
## 453 Yes
## 454 Yes
## 455 Yes
## 456 Yes
## 457 Yes
## 458 Yes
## 459 Unknown
## 460 Yes
## 461 Yes
## 462 Yes
## 463 Yes
## 464 Unspecified
## 465 Yes
## 466 Unspecified
## 467 Yes
## 468 Yes
## 469 Yes
## 470 Yes
## 471 Unspecified
## 472 Yes
## 473 Yes
## 474 Yes
## 475 Unspecified
## 476 Yes
## 477 Yes
## 478 Yes
## 479 Unknown
## 480 Unknown
## 481 Yes
## 482 Yes
## 483 Yes
## 484 Unknown
## 485 Yes
## 486 Yes
## 487 Unspecified
## 488 Unspecified
## 489 Unspecified
## 490 Unspecified
## 491 Unspecified
## 492 Unknown
## 493 Unknown
## 494 Unknown
## 495 Yes
## 496 Unspecified
## 497 Yes
## 498 Yes
## 499 Unspecified
## 500 Unspecified
## 501 Unspecified
## 502 Unspecified
## 503 Unspecified
## 504 Unspecified
## 505 Unspecified
## 506 Unspecified
## 507 Unspecified
## 508 Yes
## 509 Unspecified
## 510 Unspecified
## 511 Unspecified
## 512 Yes
## 513 Yes
## 514 Yes
## 515 Yes
## 516 Unspecified
## 517 Unspecified
## 518 Unspecified
## 519 Unspecified
## 520 Unspecified
## 521 Unspecified
## 522 Unspecified
## 523 Unspecified
## 524 Yes
## 525 Unspecified
## 526 Yes
## 527 Yes
## 528 Unspecified
## 529 Yes
## 530 Yes
## 531 Yes
## 532 Yes
## 533 Unspecified
## 534 Unspecified
## 535 Unspecified
## 536 Unspecified
## 537 Unspecified
## 538 Yes
## 539 Yes
## 540 Yes
## 541 Unspecified
## 542 Unspecified
## 543 Unspecified
## 544 Unspecified
## 545 Unspecified
## 546 Unspecified
## 547 Yes
## 548 Yes
## 549 Yes
## 550 Yes
## 551 Yes
## 552 Yes
## 553 Yes
## 554 Yes
## 555 Yes
## 556 Yes
## 557 Yes
## 558 Yes
## 559 Yes
## 560 Yes
## 561 Unspecified
## 562 Unspecified
## 563 Unspecified
## 564 Unspecified
## 565 Yes
## 566 Unspecified
## 567 Unspecified
## 568 Unspecified
## 569 Unspecified
## 570 Unspecified
## 571 Yes
## 572 Yes
## 573 Unspecified
## 574 Yes
## 575 Yes
## 576 Yes
## 577 Unspecified
## 578 Unspecified
## 579 Yes
## 580 Unspecified
## 581 Unspecified
## 582 Unspecified
## 583 Unspecified
## 584 Unspecified
## 585 Unspecified
## 586 Unspecified
## 587 Yes
## 588 Yes
## 589 Yes
## 590 Yes
## 591 Unspecified
## 592 Yes
## 593 Yes
## 594 Unspecified
## 595 Yes
## 596 Unknown
## 597 Unknown
## 598 Unknown
## 599 Yes
## 600 Unknown
## 601 Unknown
## 602 Yes
## 603 Unknown
## 604 Yes
## 605 Unknown
## 606 Yes
## 607 Unknown
## 608 Yes
## 609 Yes
## 610 Yes
## 611 Yes
## 612 Yes
## 613 Yes
## 614 Unknown
## 615 Yes
## 616 Yes
## 617 Yes
## 618 Yes
## 619 Yes
## 620 Yes
## 621 Yes
## 622 Yes
## 623 Unknown
## 624 Unknown
## 625 Yes
## 626 Yes
## 627 Unknown
## 628 Yes
## 629 Yes
## 630 Yes
## 631 Yes
## 632 Yes
## 633 Unknown
## 634 Yes
## 635 Yes
## 636 Yes
## 637 Unknown
## 638 Yes
## 639 Yes
## 640 Yes
## 641 Unknown
## 642 Unknown
## 643 Unknown
## 644 Yes
## 645 Yes
## 646 Yes
## 647 Yes
## 648 Yes
## 649 Yes
## 650 Yes
## 651 Yes
## 652 Yes
## 653 Yes
## 654 Yes
## 655 Yes
## 656 Yes
## 657 Yes
## 658 Yes
## 659 Unspecified
## 660 Unspecified
## 661 Unspecified
## 662 Unspecified
## 663 Unspecified
## 664 Unspecified
## 665 Unspecified
## 666 Unspecified
## 667 Unspecified
## 668 Unspecified
## 669 Unspecified
## 670 Unspecified
## 671 Unspecified
## 672 Unspecified
## 673 Unspecified
## 674 Unspecified
## 675 Unspecified
## 676 Unspecified
## 677 Unspecified
## 678 Unspecified
## 679 Yes
## 680 Yes
## 681 Yes
## 682 Yes
## 683 Yes
## 684 Yes
## 685 Yes
## 686 Yes
## 687 Yes
## 688 Yes
## 689 Yes
## 690 Yes
## 691 Unspecified
## 692 Yes
## 693 Unspecified
## 694 Unspecified
## 695 Unspecified
## 696 Unspecified
## 697 Unspecified
## 698 Unspecified
## 699 Unspecified
## 700 Unspecified
## 701 Unspecified
## 702 Unspecified
## 703 Unspecified
## 704 Unspecified
## 705 Unspecified
## 706 Unspecified
## 707 Yes
## 708 Yes
## 709 Yes
## 710 Yes
## 711 Yes
## 712 Yes
## 713 Yes
## 714 Yes
## Veh1_D_1
## 1 0
## 2 Turkey Sandwich in boxed lunch
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 Oysters
## 11 Oysters
## 12 Potato Salad
## 13 Infected Student
## 14 0
## 15 embarkation lunch
## 16 0
## 17 0
## 18 Infected Persons
## 19 Infected Persons
## 20 Infected Persons
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 oysters from Grand Pass and off of LA coast
## 35 Contami ted Tap Water
## 36 Catered Lunch
## 37 Infected Persons
## 38 Salad Sandwiches
## 39 0
## 40 River Water
## 41 0
## 42 0
## 43 0
## 44 Infected Persons
## 45 0
## 46 deep-fried spring roll
## 47 salad
## 48 Contami ted Surfaces
## 49 Food
## 50 0
## 51 Ship Restaurants
## 52 Shellfish
## 53 Shellfish
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 Oysters
## 62 Oysters
## 63 Raspberries
## 64 Catered Food
## 65 Infected Patients
## 66 Oysters
## 67 Coleslaw
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 drinking water
## 75 0
## 76 drinking water
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 Guest who reported incubation period of 2 hr
## 88 Infected Persons
## 89 Ground Water
## 90 School Lunch
## 91 child who vomited in nursery school sandpit
## 92 0
## 93 Infected Persons
## 94 0
## 95 0
## 96 0
## 97 Contami ted Well Water
## 98 0
## 99 Infected Persons
## 100 Infected Persons
## 101 Infected Persons
## 102 Infected Persons
## 103 0
## 104 shellfish
## 105 Contami ted Seafood
## 106 Infected Persons
## 107 oysters
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 Foodhandler
## 114 Foodhandler
## 115 nursing assistant was source
## 116 spread from traveling to Lourdes
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 man who was a cleaner, defecated in building A, and used same mop to clean another building
## 133 0
## 134 tomatoes from salad bar
## 135 0
## 136 food handler
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 pasta in mayon ise
## 143 0
## 144 frozen raspberry used for cake toppings
## 145 Frozen Raspberries
## 146 Frozen Raspberry cake toppings
## 147 lunch
## 148 aerosilized
## 149 0
## 150 infected/contami ted HCW
## 151 salad
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 food handler
## 166 sick child who helped prepare sandwiches
## 167 food handler
## 168 food handler
## 169 Chinese takeaway meal
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 direct contact w/vomitus or feces
## 176 0
## 177 Infected patient
## 178 0
## 179 Infected Persons
## 180 Sub Sandwich
## 181 Sub Sandwich
## 182 Sub Sandwich
## 183 Sub Sandwich
## 184 0
## 185 point source or mutliple passengers with virus
## 186 0
## 187 0
## 188 Deli food, ham
## 189 0
## 190 0
## 191 0
## 192 Salad
## 193 Infected Persons
## 194 Infected Persons
## 195 Wedding Cake
## 196 Salad
## 197 Pumpkin Salad
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 Infected Persons
## 204 Bivalve Shellfish
## 205 0
## 206 Infected Persons
## 207 0
## 208 0
## 209 Oyster
## 210 Infected Persons
## 211 Fresh Fruit
## 212 Oysters
## 213 0
## 214 Food
## 215 0
## 216 Oysters
## 217 Oysters
## 218 Oysters
## 219 Food
## 220 0
## 221 0
## 222 0
## 223 Oysters
## 224 Oysters
## 225 Oysters
## 226 0
## 227 0
## 228 Food
## 229 Food
## 230 Infected Persons
## 231 Food
## 232 Oysters
## 233 Infected Persons
## 234 0
## 235 Infected Persons
## 236 0
## 237 Infected Persons
## 238 Infected Persons
## 239 0
## 240 Infected Persons
## 241 Infected Persons
## 242 Food
## 243 close quarters, shared bathrooms, and shared meals
## 244 Shellfish
## 245 Shellfish
## 246 Shellfish
## 247 Shellfish
## 248 Shellfish
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 Contami ted Ground Water
## 263 Contami ted Ground Water
## 264 0
## 265 Contami ted Water
## 266 Oysters
## 267 Infected Persons
## 268 0
## 269 drinking water
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Tap water
## 281 Ground Water
## 282 Ground Water
## 283 Well Water
## 284 Well Water
## 285 River Water
## 286 Ground Water
## 287 Infected Persons
## 288 Infected Persons
## 289 0
## 290 oysters
## 291 oysters
## 292 0
## 293 Well Water
## 294 kitchen staff member taken ill during the preparation of the meals
## 295 0
## 296 0
## 297 index case infected in community before entering hospital
## 298 index case became ill with usea, vomiting and diarrhoea
## 299 0
## 300 seawater subsequently was shown to be contami ted with raw sewage
## 301 Fast food
## 302 0
## 303 0
## 304 Fast food
## 305 0
## 306 0
## 307 Contami ted Well Water
## 308 Raspberries
## 309 Mussels
## 310 0
## 311 Infected Persons
## 312 0
## 313 Infected Persons
## 314 Infected Persons
## 315 0
## 316 nurse from ward B who worked in ward X while symptomatic w/gastroenteritis
## 317 Sandwiches
## 318 Contami ted Flood Water
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 oysters
## 332 0
## 333 oysters
## 334 0
## 335 0
## 336 0
## 337 oysters
## 338 0
## 339 oysters
## 340 0
## 341 ready-to-eat foods
## 342 Sandwiches
## 343 Foodhandler
## 344 Food handler
## 345 Foodhandler
## 346 Food handler
## 347 0
## 348 0
## 349 0
## 350 oysters
## 351 oysters
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 cooker
## 359 0
## 360 drinking water
## 361 0
## 362 sliced pork dish with salad
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 Softdrinks
## 389 composite meal
## 390 tapwater
## 391 sandwiches
## 392 Well Water
## 393 Tap Water
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Tap Water
## 404 0
## 405 0
## 406 Infected Persons
## 407 Infected persons
## 408 0
## 409 Fecal Contami ted Well Water
## 410 0
## 411 0
## 412 0
## 413 0
## 414 index patient was 71 yr old man
## 415 Frozen Raspberries
## 416 Frozen Raspberries
## 417 Frozen Raspberries
## 418 Infected Child
## 419 Infected Persons
## 420 Ill girl
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 Raspberries
## 427 Raspberries
## 428 Contaminted Fountain Water
## 429 0
## 430 0
## 431 shellfish
## 432 0
## 433 0
## 434 drinking water
## 435 0
## 436 Drinking water
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 Raspberries
## 446 Raspberries
## 447 0
## 448 0
## 449 drinking water
## 450 Salad
## 451 batch 1 of sliced deli meat
## 452 Aerosolized vomit
## 453 Contami ted Pool Water
## 454 Well Water
## 455 Well Water
## 456 Well Water
## 457 Well Water
## 458 Well Water
## 459 0
## 460 Contami ted Water
## 461 Infected Persons
## 462 Infected Persons
## 463 poor sanitation in crew facilities and sleeping quarters
## 464 0
## 465 Potato Salad
## 466 0
## 467 Infecte Persons
## 468 Infected Persons
## 469 Ice, Mussels
## 470 Contami ted Lake Water
## 471 0
## 472 Oysters
## 473 oysters
## 474 oysters
## 475 0
## 476 oysters
## 477 oysters
## 478 frozen Japanese oysters
## 479 0
## 480 0
## 481 Tap water
## 482 caterer who prepared salads
## 483 caterer who prepared salads
## 484 0
## 485 oysters
## 486 municipal water system
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 round of beef
## 496 0
## 497 drinking water from farmer's well
## 498 stag nt water from resevoir
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 Fecal contami tion of ground water aquifer
## 509 0
## 510 0
## 511 0
## 512 Side salad, most likely a pasta salad
## 513 Well Water
## 514 infected food handler
## 515 Oysters
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 Tap Water
## 525 0
## 526 staff nurse
## 527 municipal water supply
## 528 0
## 529 Sub Sandwich
## 530 Public Swiming Pool Water
## 531 antipasta, garlic mashed potatoes
## 532 Contami ted computer equipment
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 Contami ted Surfaces
## 539 Oysters
## 540 Rolls
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 Oysters
## 548 Oysters
## 549 Contami ted Surfaces and Carpet
## 550 shared meal
## 551 Contami ted House
## 552 Infected Persons
## 553 Contami ted Drinking Water
## 554 Infected persons
## 555 Infected Persons
## 556 i ppropriate floor disinfectants between December 3, 2006 and January 31, 2007
## 557 Raw Oysters
## 558 diabetic man
## 559 index case was woman discharged from Lymington Hospital and readmitted to Southampton General Hospital
## 560 Salad served on base
## 561 0
## 562 0
## 563 0
## 564 0
## 565 Oyster
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 Oyster
## 572 Infected Persons
## 573 0
## 574 Oyster
## 575 Infected Persons
## 576 Oyster
## 577 0
## 578 0
## 579 Infected Persons
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 Infected Persons
## 588 Infected Persons
## 589 Infected Persons
## 590 Oyster
## 591 0
## 592 Infected Persons
## 593 Contami ted Drinking Water
## 594 0
## 595 Oysters
## 596 0
## 597 0
## 598 0
## 599 Oysters
## 600 0
## 601 0
## 602 Oysters
## 603 0
## 604 Oysters
## 605 0
## 606 Oysters
## 607 0
## 608 Oysters
## 609 Infected persons
## 610 Food
## 611 Food
## 612 Oysters
## 613 Oysters
## 614 0
## 615 Oysters
## 616 Food
## 617 Oyster
## 618 Food
## 619 Oysters
## 620 Oysters
## 621 Oysters
## 622 Oysters
## 623 0
## 624 0
## 625 Oysters
## 626 Oysters
## 627 0
## 628 Food
## 629 Oysters
## 630 Oysters
## 631 Oysters
## 632 Food
## 633 0
## 634 Oysters
## 635 Oysters
## 636 Food
## 637 0
## 638 Oysters
## 639 Oysters
## 640 Oysters
## 641 0
## 642 0
## 643 0
## 644 Infected Infant
## 645 Infected Persons
## 646 Shellfish
## 647 Shellfish
## 648 Shellfish
## 649 Shellfish
## 650 Shellfish
## 651 Shellfish
## 652 Shellfish
## 653 Shellfish
## 654 Shellfish
## 655 Shellfish
## 656 Shellfish
## 657 Shellfish
## 658 Shellfish
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 Infected Persons
## 680 prolonged outbreak in community
## 681 Tossed Salad
## 682 Ice
## 683 Infected Persons
## 684 salad
## 685 Boxed Lunch
## 686 Contami ted Tap Water
## 687 Vomit
## 688 toilet seat
## 689 Oysters
## 690 Oysters
## 691 0
## 692 drinking water
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 Aerosolized Vomit
## 708 Shared food
## 709 Infected Persons
## 710 Ground Water
## 711 Ground Water
## 712 Ground Water
## 713 Lake Water
## 714 Infected Persons
## Veh2
## 1 No
## 2 Yes
## 3 No
## 4 No
## 5 No
## 6 No
## 7 No
## 8 No
## 9 No
## 10 No
## 11 No
## 12 No
## 13 No
## 14 No
## 15 Yes
## 16 No
## 17 No
## 18 No
## 19 Yes
## 20 No
## 21 No
## 22 No
## 23 No
## 24 No
## 25 No
## 26 No
## 27 No
## 28 No
## 29 No
## 30 No
## 31 No
## 32 No
## 33 No
## 34 No
## 35 No
## 36 No
## 37 No
## 38 No
## 39 No
## 40 No
## 41 Yes
## 42 No
## 43 No
## 44 No
## 45 No
## 46 Yes
## 47 No
## 48 Yes
## 49 No
## 50 No
## 51 Yes
## 52 No
## 53 No
## 54 No
## 55 No
## 56 No
## 57 No
## 58 No
## 59 No
## 60 No
## 61 No
## 62 Yes
## 63 Yes
## 64 No
## 65 Yes
## 66 No
## 67 Yes
## 68 No
## 69 No
## 70 No
## 71 No
## 72 No
## 73 No
## 74 No
## 75 No
## 76 No
## 77 No
## 78 No
## 79 No
## 80 No
## 81 No
## 82 No
## 83 No
## 84 No
## 85 No
## 86 No
## 87 Yes
## 88 No
## 89 No
## 90 No
## 91 No
## 92 No
## 93 No
## 94 No
## 95 No
## 96 No
## 97 No
## 98 No
## 99 No
## 100 No
## 101 No
## 102 No
## 103 Yes
## 104 No
## 105 Yes
## 106 Yes
## 107 No
## 108 No
## 109 No
## 110 No
## 111 No
## 112 No
## 113 No
## 114 No
## 115 No
## 116 No
## 117 No
## 118 No
## 119 No
## 120 No
## 121 No
## 122 No
## 123 No
## 124 No
## 125 No
## 126 No
## 127 No
## 128 No
## 129 No
## 130 No
## 131 No
## 132 No
## 133 Yes
## 134 Yes
## 135 No
## 136 No
## 137 No
## 138 No
## 139 No
## 140 No
## 141 No
## 142 Yes
## 143 No
## 144 No
## 145 No
## 146 No
## 147 No
## 148 Yes
## 149 No
## 150 No
## 151 No
## 152 No
## 153 No
## 154 No
## 155 No
## 156 No
## 157 No
## 158 No
## 159 No
## 160 No
## 161 No
## 162 No
## 163 No
## 164 No
## 165 Yes
## 166 Yes
## 167 Yes
## 168 Yes
## 169 No
## 170 No
## 171 No
## 172 No
## 173 No
## 174 No
## 175 Yes
## 176 No
## 177 No
## 178 No
## 179 No
## 180 No
## 181 Yes
## 182 No
## 183 No
## 184 No
## 185 Yes
## 186 No
## 187 No
## 188 No
## 189 No
## 190 No
## 191 No
## 192 Yes
## 193 No
## 194 No
## 195 No
## 196 No
## 197 No
## 198 No
## 199 No
## 200 No
## 201 No
## 202 No
## 203 No
## 204 No
## 205 No
## 206 No
## 207 No
## 208 No
## 209 No
## 210 No
## 211 No
## 212 No
## 213 No
## 214 No
## 215 No
## 216 No
## 217 No
## 218 No
## 219 No
## 220 No
## 221 No
## 222 No
## 223 No
## 224 No
## 225 No
## 226 No
## 227 No
## 228 No
## 229 No
## 230 No
## 231 No
## 232 No
## 233 No
## 234 No
## 235 No
## 236 No
## 237 No
## 238 No
## 239 No
## 240 No
## 241 No
## 242 Yes
## 243 No
## 244 No
## 245 No
## 246 No
## 247 No
## 248 No
## 249 No
## 250 No
## 251 No
## 252 No
## 253 No
## 254 No
## 255 No
## 256 No
## 257 No
## 258 No
## 259 No
## 260 No
## 261 No
## 262 No
## 263 No
## 264 No
## 265 No
## 266 No
## 267 Yes
## 268 No
## 269 No
## 270 No
## 271 No
## 272 No
## 273 No
## 274 No
## 275 No
## 276 No
## 277 No
## 278 No
## 279 No
## 280 Yes
## 281 No
## 282 Yes
## 283 No
## 284 No
## 285 No
## 286 No
## 287 No
## 288 Yes
## 289 No
## 290 No
## 291 No
## 292 No
## 293 Yes
## 294 No
## 295 No
## 296 No
## 297 No
## 298 No
## 299 No
## 300 No
## 301 No
## 302 No
## 303 No
## 304 No
## 305 No
## 306 No
## 307 Yes
## 308 Yes
## 309 Yes
## 310 No
## 311 No
## 312 No
## 313 No
## 314 No
## 315 No
## 316 No
## 317 Yes
## 318 Yes
## 319 No
## 320 No
## 321 No
## 322 No
## 323 No
## 324 No
## 325 No
## 326 No
## 327 No
## 328 No
## 329 No
## 330 No
## 331 No
## 332 No
## 333 No
## 334 No
## 335 No
## 336 No
## 337 Yes
## 338 No
## 339 Yes
## 340 No
## 341 Yes
## 342 Yes
## 343 No
## 344 No
## 345 No
## 346 No
## 347 No
## 348 No
## 349 No
## 350 No
## 351 No
## 352 No
## 353 No
## 354 No
## 355 No
## 356 No
## 357 No
## 358 No
## 359 No
## 360 Yes
## 361 No
## 362 Yes
## 363 No
## 364 No
## 365 No
## 366 No
## 367 No
## 368 No
## 369 No
## 370 No
## 371 No
## 372 No
## 373 No
## 374 No
## 375 No
## 376 No
## 377 No
## 378 No
## 379 No
## 380 No
## 381 No
## 382 No
## 383 No
## 384 No
## 385 No
## 386 No
## 387 No
## 388 No
## 389 No
## 390 No
## 391 No
## 392 No
## 393 No
## 394 No
## 395 No
## 396 No
## 397 No
## 398 No
## 399 No
## 400 No
## 401 No
## 402 No
## 403 Yes
## 404 No
## 405 No
## 406 No
## 407 No
## 408 No
## 409 Yes
## 410 No
## 411 No
## 412 No
## 413 No
## 414 Yes
## 415 No
## 416 No
## 417 No
## 418 No
## 419 No
## 420 No
## 421 No
## 422 No
## 423 No
## 424 No
## 425 No
## 426 No
## 427 No
## 428 No
## 429 No
## 430 No
## 431 No
## 432 No
## 433 No
## 434 No
## 435 No
## 436 No
## 437 No
## 438 No
## 439 No
## 440 No
## 441 No
## 442 No
## 443 No
## 444 No
## 445 No
## 446 No
## 447 No
## 448 No
## 449 No
## 450 No
## 451 Yes
## 452 Yes
## 453 Yes
## 454 No
## 455 No
## 456 No
## 457 No
## 458 No
## 459 No
## 460 Yes
## 461 No
## 462 No
## 463 No
## 464 No
## 465 No
## 466 No
## 467 No
## 468 No
## 469 Yes
## 470 Yes
## 471 No
## 472 Yes
## 473 Yes
## 474 No
## 475 No
## 476 Yes
## 477 Yes
## 478 No
## 479 No
## 480 No
## 481 Yes
## 482 Yes
## 483 Yes
## 484 No
## 485 No
## 486 No
## 487 No
## 488 No
## 489 No
## 490 No
## 491 No
## 492 No
## 493 No
## 494 No
## 495 Yes
## 496 No
## 497 No
## 498 No
## 499 No
## 500 No
## 501 No
## 502 No
## 503 No
## 504 No
## 505 No
## 506 No
## 507 No
## 508 No
## 509 No
## 510 No
## 511 No
## 512 No
## 513 No
## 514 Yes
## 515 No
## 516 No
## 517 No
## 518 No
## 519 No
## 520 No
## 521 No
## 522 No
## 523 No
## 524 No
## 525 No
## 526 No
## 527 No
## 528 No
## 529 No
## 530 No
## 531 Yes
## 532 Yes
## 533 No
## 534 No
## 535 No
## 536 No
## 537 No
## 538 No
## 539 No
## 540 No
## 541 No
## 542 No
## 543 No
## 544 No
## 545 No
## 546 No
## 547 No
## 548 No
## 549 Yes
## 550 No
## 551 No
## 552 Yes
## 553 No
## 554 No
## 555 No
## 556 Yes
## 557 No
## 558 No
## 559 No
## 560 No
## 561 No
## 562 No
## 563 No
## 564 No
## 565 No
## 566 No
## 567 No
## 568 No
## 569 No
## 570 No
## 571 No
## 572 No
## 573 No
## 574 No
## 575 No
## 576 No
## 577 No
## 578 No
## 579 No
## 580 No
## 581 No
## 582 No
## 583 No
## 584 No
## 585 No
## 586 No
## 587 No
## 588 No
## 589 No
## 590 No
## 591 No
## 592 No
## 593 No
## 594 No
## 595 No
## 596 No
## 597 No
## 598 No
## 599 No
## 600 No
## 601 No
## 602 No
## 603 No
## 604 No
## 605 No
## 606 No
## 607 No
## 608 No
## 609 No
## 610 No
## 611 No
## 612 No
## 613 No
## 614 No
## 615 No
## 616 No
## 617 No
## 618 No
## 619 No
## 620 No
## 621 No
## 622 No
## 623 No
## 624 No
## 625 No
## 626 No
## 627 No
## 628 No
## 629 No
## 630 No
## 631 No
## 632 No
## 633 No
## 634 No
## 635 No
## 636 No
## 637 No
## 638 No
## 639 No
## 640 No
## 641 No
## 642 No
## 643 No
## 644 Yes
## 645 Yes
## 646 No
## 647 No
## 648 No
## 649 No
## 650 No
## 651 No
## 652 No
## 653 No
## 654 No
## 655 No
## 656 No
## 657 No
## 658 No
## 659 No
## 660 No
## 661 No
## 662 No
## 663 No
## 664 No
## 665 No
## 666 No
## 667 No
## 668 No
## 669 No
## 670 No
## 671 No
## 672 No
## 673 No
## 674 No
## 675 No
## 676 No
## 677 No
## 678 No
## 679 No
## 680 No
## 681 No
## 682 Yes
## 683 No
## 684 No
## 685 Yes
## 686 No
## 687 No
## 688 Yes
## 689 No
## 690 Yes
## 691 No
## 692 No
## 693 No
## 694 No
## 695 No
## 696 No
## 697 No
## 698 No
## 699 No
## 700 No
## 701 No
## 702 No
## 703 No
## 704 No
## 705 No
## 706 No
## 707 No
## 708 No
## 709 Yes
## 710 No
## 711 No
## 712 No
## 713 No
## 714 No
## Veh2_D_1
## 1 0
## 2 Football players
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 Infected persons
## 16 0
## 17 0
## 18 0
## 19 Scalloped Potatoes
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 initial resident is likely to have been infected by outside source
## 42 0
## 43 0
## 44 0
## 45 0
## 46 broccoli
## 47 0
## 48 Infected Persons
## 49 0
## 50 0
## 51 Infected Room Mates
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 Routine disposal of sewage in oyster harvesting area
## 63 Whole raspberries used in cream frosting of pink cakes
## 64 0
## 65 Contami ted Surfaces
## 66 0
## 67 Infected Persons
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 Shared Mediterranean food
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 Infected Persons
## 104 0
## 105 Infected Persons
## 106 Contami ted Surfaces
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 Contami ted Surfaces
## 134 hamburgers
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 spring rolls
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 HCW
## 149 0
## 150 0
## 151 0
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165 mashed potatoes
## 166 sandwiches
## 167 meat stew
## 168 sandwiches prepared by handler
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 indirect contact w/contami ted environmental surfaces
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 Jalepeno peppers
## 182 0
## 183 0
## 184 0
## 185 Toilets
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 Water
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 Infected Persons
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 Contami ted Surfaces
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Sea water
## 281 0
## 282 o
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 contami ted serving utensiles
## 289 0
## 290 0
## 291 0
## 292 0
## 293 Infected Persons
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Infected Persons
## 308 Infected Persons
## 309 Infected Persons
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 Salad
## 318 Infected persons
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 Fish Filet
## 338 0
## 339 Salad
## 340 0
## 341 Ham Sandwich
## 342 salad
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 ice
## 361 0
## 362 hand-rolled pancake filled with spi ch
## 363 0
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Custard
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 chicken
## 410 0
## 411 0
## 412 0
## 413 0
## 414 assisted feeding by healthcare workers
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 meat slicer
## 452 Contami ted Surfaces
## 453 nearby latrine with feces on the floor
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 contami ted toilets
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 Infected Persons
## 470 Infected Persons
## 471 0
## 472 Chicken Nibbles
## 473 Seafood Mari ra
## 474 0
## 475 0
## 476 Tiger Prawns
## 477 coffee white
## 478 0
## 479 0
## 480 0
## 481 Ice cubes
## 482 salad
## 483 salad
## 484 0
## 485 0
## 486 0
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512 0
## 513 0
## 514 chicken w/rice and soup
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 Contami ted kitchen surfaces
## 532 Infected Contacts
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 vomit
## 550 0
## 551 0
## 552 accommodation environment on day of arrival
## 553 0
## 554 0
## 555 0
## 556 airborne transmission after aerosolization of vomit
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 Contami ted Surfaces
## 645 Contami ted Surfaces
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 0
## 682 Contami ted Surfaces
## 683 0
## 684 0
## 685 rolled cabbage
## 686 0
## 687 0
## 688 bathroom door handle
## 689 0
## 690 Flooding event near oyster beds of sewage
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 Aerosolized droplets
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## Veh3 Veh3_D_1 PCRSect OBYear Hemisphere season
## 1 No 0 Capsid 1999 Northern Fall
## 2 No 0 Polymerase 1998 Northern Fall
## 3 No 0 Both 2006 Northern Fall
## 4 No 0 Both 2006 Northern Fall
## 5 No 0 Both 2006 Northern Fall
## 6 No 0 Both 2006 Northern Fall
## 7 No 0 Both 2006 Northern Fall
## 8 No 0 Both 2006 Northern Fall
## 9 No 0 Both 2004 Northern Fall
## 10 No 0 Unspecified 1993 Northern Fall
## 11 No 0 Unspecified 1993 Northern Fall
## 12 No 0 Unspecified 1999 Northern Fall
## 13 No 0 Unspecified 1999 Northern Fall
## 14 No 0 Unspecified 2002 Northern Fall
## 15 No 0 Unspecified 2002 Northern Fall
## 16 No 0 Unspecified 2002 Northern Fall
## 17 No 0 Unspecified 2002 Northern Fall
## 18 No 0 Unspecified 2005 Northern Fall
## 19 Yes Chicken Polymerase 2006 Northern Fall
## 20 No 0 Unspecified 1997 Northern Fall
## 21 No 0 Both 2002 Northern Fall
## 22 No 0 Both 2002 Northern Fall
## 23 No 0 Both 2002 Northern Fall
## 24 No 0 Both 2002 Northern Fall
## 25 No 0 Both 2002 Northern Fall
## 26 No 0 Both 2002 Northern Fall
## 27 No 0 Both 2002 Northern Fall
## 28 No 0 Both 2002 Northern Fall
## 29 No 0 Both 2002 Northern Fall
## 30 No 0 Both 2002 Northern Fall
## 31 No 0 Both 2002 Northern Fall
## 32 No 0 Both 2002 Northern Fall
## 33 No 0 Both 2002 Northern Fall
## 34 No 0 Unspecified 1993 Northern Fall
## 35 No 0 Unspecified 1998 Southern Fall
## 36 No 0 Both 1998 Northern Fall
## 37 No 0 Both 2005 Southern Fall
## 38 No 0 Polymerase 1999 Northern Fall
## 39 No 0 Unspecified 2003 Southern Fall
## 40 No 0 Polymerase 1994 Northern Fall
## 41 No 0 Unspecified 2008 Northern Fall
## 42 No 0 Both 2000 Northern Fall
## 43 No 0 Both 2001 Northern Fall
## 44 No 0 Both 2001 Northern Fall
## 45 No 0 Both 2003 Northern Fall
## 46 Yes lettuce Capsid 2003 Northern Fall
## 47 No 0 Unspecified 2000 Northern Fall
## 48 No 0 Unspecified 2006 Northern Fall
## 49 No 0 Both 1998 Northern Fall
## 50 No 0 Both 1998 Northern Fall
## 51 Yes Contami ted Surfaces Capsid 2002 Northern Fall
## 52 No 0 Both 1999 Northern Fall
## 53 No 0 Both 2001 Northern Fall
## 54 No 0 Both 2001 Northern Fall
## 55 No 0 Both 1999 Northern Fall
## 56 No 0 Both 1997 Northern Fall
## 57 No 0 Both 1999 Northern Fall
## 58 No 0 Both 2001 Northern Fall
## 59 No 0 Both 1997 Northern Fall
## 60 No 0 Both 2001 Northern Fall
## 61 No 0 Unspecified 1993 Northern Fall
## 62 No 0 Polymerase 1993 Northern Fall
## 63 No 0 Both 2001 Northern Fall
## 64 No 0 Unspecified 2005 Northern Fall
## 65 No 0 Both 2003 Northern Fall
## 66 No 0 Unspecified 2006 Northern Fall
## 67 Yes Contami ted Surfaces Unspecified 2000 Northern Fall
## 68 No 0 Unspecified 2002 Southern Fall
## 69 No 0 Both 2002 Northern Fall
## 70 No 0 Both 2002 Northern Fall
## 71 No 0 Both 2002 Northern Fall
## 72 No 0 Capsid 2002 Northern Fall
## 73 No 0 Polymerase 2002 Northern Fall
## 74 No 0 Both 2002 Northern Fall
## 75 No 0 Both 2002 Northern Fall
## 76 No 0 Both 2002 Northern Fall
## 77 No 0 Both 2003 Northern Fall
## 78 No 0 Both 2004 Northern Fall
## 79 No 0 Both 2004 Northern Fall
## 80 No 0 Both 2004 Northern Fall
## 81 No 0 Capsid 2006 Northern Fall
## 82 No 0 Capsid 2006 Northern Fall
## 83 No 0 Capsid 2006 Northern Fall
## 84 No 0 Capsid 2006 Northern Fall
## 85 No 0 Capsid 2006 Northern Fall
## 86 No 0 Polymerase 1998 Southern Fall
## 87 No 0 Polymerase 1999 Southern Fall
## 88 No 0 Unspecified 2002 Northern Fall
## 89 No 0 Polymerase 2002 Northern Fall
## 90 No 0 Unspecified 2005 Northern Fall
## 91 No 0 Polymerase 1998 Northern Fall
## 92 No 0 Polymerase 1999 Northern Fall
## 93 No 0 Unspecified 1999 Northern Fall
## 94 No 0 Capsid 2006 Northern Fall
## 95 No 0 Capsid 2006 Northern Fall
## 96 No 0 Capsid 2005 Northern Fall
## 97 No 0 Polymerase 2001 Northern Fall
## 98 No 0 Polymerase 1998 Northern Fall
## 99 No 0 Polymerase 2000 Northern Fall
## 100 No 0 Polymerase 2000 Northern Fall
## 101 No 0 Polymerase 2000 Northern Fall
## 102 No 0 Polymerase 2000 Northern Fall
## 103 No 0 Polymerase 2000 Northern Fall
## 104 No 0 Unspecified 2005 Northern Fall
## 105 No 0 Both 1999 Northern Fall
## 106 No 0 Unspecified 2004 Northern Fall
## 107 No 0 Both 2002 Northern Fall
## 108 No 0 Both 2002 Northern Fall
## 109 No 0 Capsid 2002 Northern Fall
## 110 No 0 Capsid 2002 Northern Fall
## 111 No 0 Polymerase 1995 Northern Fall
## 112 No 0 Polymerase 1996 Northern Fall
## 113 No 0 Polymerase 1998 Northern Fall
## 114 No 0 Polymerase 1999 Northern Fall
## 115 No 0 Polymerase 2002 Northern Fall
## 116 No 0 Both 2008 Northern Fall
## 117 No 0 Unspecified 1999 Southern Fall
## 118 No 0 Unspecified 1999 Southern Fall
## 119 No 0 Both 1998 Southern Fall
## 120 No 0 Both 1998 Southern Fall
## 121 No 0 Both 2002 Northern Fall
## 122 No 0 Both 2002 Northern Fall
## 123 No 0 Both 2002 Northern Fall
## 124 No 0 Both 2002 Northern Fall
## 125 No 0 Both 2002 Northern Fall
## 126 No 0 Both 2002 Northern Fall
## 127 No 0 Both 2002 Northern Fall
## 128 No 0 Both 2002 Northern Fall
## 129 No 0 Both 2002 Northern Fall
## 130 No 0 Both 2002 Northern Fall
## 131 No 0 Capsid 2004 Northern Fall
## 132 No 0 Capsid 2006 Northern Fall
## 133 No 0 Capsid 2005 Northern Fall
## 134 No 0 Capsid 2007 Northern Fall
## 135 No 0 Unspecified 2008 Northern Fall
## 136 No 0 Unspecified 2008 Northern Fall
## 137 No 0 Unspecified 2008 Northern Fall
## 138 No 0 Both 2009 Northern Fall
## 139 No 0 Both 2009 Northern Fall
## 140 No 0 Both 2009 Northern Fall
## 141 No 0 Both 2009 Northern Fall
## 142 No 0 Unspecified 1995 Northern Fall
## 143 No 0 Unspecified 2008 Northern Fall
## 144 No 0 Both 2009 Northern Fall
## 145 No 0 Both 2009 Northern Fall
## 146 No 0 Both 2009 Northern Fall
## 147 No 0 Both 2007 Northern Fall
## 148 No 0 Both 2008 Northern Fall
## 149 No 0 Unspecified 2008 Northern Fall
## 150 No 0 Unspecified 2006 Northern Fall
## 151 No 0 Unspecified 1998 Northern Fall
## 152 No Both 2002 Southern Fall
## 153 No Both 2002 Southern Fall
## 154 No Both 2004 Southern Fall
## 155 No Both 2004 Southern Fall
## 156 No Both 2004 Southern Fall
## 157 No Both 2004 Southern Fall
## 158 No Both 2004 Southern Fall
## 159 No Both 2004 Southern Fall
## 160 No Both 2004 Southern Fall
## 161 No Both 2004 Southern Fall
## 162 No Unspecified 2007 Northern Fall
## 163 No Unspecified 2004 Northern Fall
## 164 No Unspecified 2002 Northern Fall
## 165 No 0 Unspecified 2007 Northern Spring
## 166 No 0 Unspecified 2007 Northern Spring
## 167 No 0 Unspecified 2007 Northern Spring
## 168 No 0 Unspecified 2007 Northern Spring
## 169 No 0 Unspecified 2007 Northern Spring
## 170 No 0 Both 2003 Northern Spring
## 171 No 0 Both 2006 Northern Spring
## 172 No 0 Both 2006 Northern Spring
## 173 No 0 Both 2006 Northern Spring
## 174 No 0 Both 2006 Northern Spring
## 175 Yes staff Unspecified 2002 Northern Spring
## 176 No 0 Polymerase 1994 Southern Spring
## 177 No 0 Polymerase 1994 Southern Spring
## 178 No 0 Polymerase 1994 Southern Spring
## 179 No 0 Polymerase 2002 Northern Spring
## 180 No 0 Unspecified 2005 Northern Spring
## 181 Yes Onions Unspecified 2005 Northern Spring
## 182 No 0 Unspecified 2005 Northern Spring
## 183 No 0 Unspecified 2005 Northern Spring
## 184 No 0 Polymerase 1999 Northern Spring
## 185 No 0 Both 2004 Northern Spring
## 186 No 0 Unspecified 2002 Southern Spring
## 187 No 0 Unspecified 2007 Northern Spring
## 188 No 0 Both 1998 Northern Spring
## 189 No 0 Both 2003 Northern Spring
## 190 No 0 Both 2003 Northern Spring
## 191 No 0 Both 2003 Northern Spring
## 192 No 0 Unspecified 2000 Northern Spring
## 193 No 0 Polymerase 2002 Northern Spring
## 194 No 0 Polymerase 2003 Northern Spring
## 195 No 0 Polymerase 2002 Northern Spring
## 196 No 0 Polymerase 2003 Northern Spring
## 197 No 0 Polymerase 1999 Northern Spring
## 198 No 0 Unspecified 1994 Northern Spring
## 199 No 0 Polymerase 2002 Northern Spring
## 200 No 0 Polymerase 2004 Northern Spring
## 201 No 0 Both 1998 Northern Spring
## 202 No 0 Both 1998 Northern Spring
## 203 No 0 Both 1999 Northern Spring
## 204 No 0 Both 1999 Northern Spring
## 205 No 0 Both 2001 Northern Spring
## 206 No 0 Both 2002 Northern Spring
## 207 No 0 Both 2003 Northern Spring
## 208 No 0 Both 2003 Northern Spring
## 209 No 0 Both 2004 Northern Spring
## 210 No 0 Both 2004 Northern Spring
## 211 No 0 Polymerase 1990 Northern Spring
## 212 No 0 Both 1997 Northern Spring
## 213 No 0 Both 1997 Northern Spring
## 214 No 0 Both 1997 Northern Spring
## 215 No 0 Both 1997 Northern Spring
## 216 No 0 Both 1998 Northern Spring
## 217 No 0 Both 1998 Northern Spring
## 218 No 0 Both 1998 Northern Spring
## 219 No 0 Both 1998 Northern Spring
## 220 No 0 Both 1998 Northern Spring
## 221 No 0 Both 1999 Northern Spring
## 222 No 0 Both 2000 Northern Spring
## 223 No 0 Both 2004 Northern Spring
## 224 No 0 Both 2004 Northern Spring
## 225 No 0 Both 2004 Northern Spring
## 226 No 0 Both 2004 Northern Spring
## 227 No 0 Both 2004 Northern Spring
## 228 No 0 Both 2004 Northern Spring
## 229 No 0 Both 2004 Northern Spring
## 230 No 0 Both 2004 Northern Spring
## 231 No 0 Both 2004 Northern Spring
## 232 No 0 Both 2004 Northern Spring
## 233 No 0 Both 2004 Northern Spring
## 234 No 0 Both 2004 Northern Spring
## 235 No 0 Both 2004 Northern Spring
## 236 No 0 Both 2004 Northern Spring
## 237 No 0 Both 2004 Northern Spring
## 238 No 0 Both 2004 Northern Spring
## 239 No 0 Both 2004 Northern Spring
## 240 No 0 Both 2004 Northern Spring
## 241 No 0 Both 2004 Northern Spring
## 242 No 0 Polymerase 2000 Northern Spring
## 243 No 0 Polymerase 2004 Northern Spring
## 244 No 0 Both 1999 Northern Spring
## 245 No 0 Both 2000 Northern Spring
## 246 No 0 Both 2001 Northern Spring
## 247 No 0 Both 2002 Northern Spring
## 248 No 0 Both 2002 Northern Spring
## 249 No 0 Both 1999 Northern Spring
## 250 No 0 Both 2000 Northern Spring
## 251 No 0 Both 2002 Northern Spring
## 252 No 0 Both 2002 Northern Spring
## 253 No 0 Both 1998 Northern Spring
## 254 No 0 Both 1999 Northern Spring
## 255 No 0 Both 1999 Northern Spring
## 256 No 0 Both 2000 Northern Spring
## 257 No 0 Both 2000 Northern Spring
## 258 No 0 Both 2002 Northern Spring
## 259 No 0 Both 2001 Northern Spring
## 260 No 0 Both 1999 Northern Spring
## 261 No 0 Both 2000 Northern Spring
## 262 No 0 Capsid 2004 Northern Spring
## 263 No 0 Capsid 2004 Northern Spring
## 264 No 0 Capsid 2008 Northern Spring
## 265 No 0 Unspecified 2000 Northern Spring
## 266 No 0 Both 2000 Northern Spring
## 267 No 0 Unspecified 2002 Southern Spring
## 268 No 0 Capsid 2002 Northern Spring
## 269 No 0 Both 2002 Northern Spring
## 270 No 0 Polymerase 2002 Northern Spring
## 271 No 0 Both 2004 Northern Spring
## 272 No 0 Both 2004 Northern Spring
## 273 No 0 Both 2005 Northern Spring
## 274 No 0 Both 2005 Northern Spring
## 275 No 0 Capsid 2006 Northern Spring
## 276 No 0 Capsid 2006 Northern Spring
## 277 No 0 Capsid 2006 Northern Spring
## 278 No 0 Capsid 2006 Northern Spring
## 279 No 0 Capsid 2006 Northern Spring
## 280 No 0 Polymerase 2006 Northern Spring
## 281 No 0 Polymerase 1998 Northern Spring
## 282 No 0 Polymerase 1999 Northern Spring
## 283 No 0 Polymerase 2002 Northern Spring
## 284 No 0 Polymerase 2003 Northern Spring
## 285 No 0 Polymerase 2003 Northern Spring
## 286 No 0 Polymerase 2003 Northern Spring
## 287 No 0 Unspecified 1995 Northern Spring
## 288 No 0 Polymerase 2002 Northern Spring
## 289 No 0 Polymerase 2002 Northern Spring
## 290 No 0 Capsid 2003 Northern Spring
## 291 No 0 Capsid 2006 Northern Spring
## 292 No 0 Unspecified 2007 Northern Spring
## 293 Yes Contaminted Surfaces Polymerase 2001 Northern Spring
## 294 No 0 Polymerase 1999 Northern Spring
## 295 No 0 Polymerase 1999 Northern Spring
## 296 No 0 Polymerase 1999 Northern Spring
## 297 No 0 Polymerase 1999 Northern Spring
## 298 No 0 Polymerase 2000 Northern Spring
## 299 No 0 Polymerase 2001 Northern Spring
## 300 No 0 Polymerase 2001 Northern Spring
## 301 No 0 Capsid 2006 Northern Spring
## 302 No 0 Capsid 2006 Northern Spring
## 303 No 0 Capsid 2006 Northern Spring
## 304 No 0 Capsid 2006 Northern Spring
## 305 No 0 Capsid 2006 Northern Spring
## 306 No 0 Capsid 2006 Northern Spring
## 307 No 0 Polymerase 1999 Northern Spring
## 308 No 0 Unspecified 1998 Northern Spring
## 309 No 0 Polymerase 2002 Northern Spring
## 310 No 0 Polymerase 1999 Northern Spring
## 311 No 0 Polymerase 2000 Northern Spring
## 312 No 0 Polymerase 2000 Northern Spring
## 313 No 0 Polymerase 2000 Northern Spring
## 314 No 0 Unspecified 1994 Northern Spring
## 315 No 0 Unspecified 1995 Southern Spring
## 316 No 0 Unspecified 1995 Southern Spring
## 317 No 0 Unspecified 2002 Northern Spring
## 318 No 0 Unspecified 2005 Northern Spring
## 319 No 0 Both 1997 Northern Spring
## 320 No 0 Both 1998 Northern Spring
## 321 No 0 Both 1998 Northern Spring
## 322 No 0 Both 1998 Northern Spring
## 323 No 0 Both 1998 Northern Spring
## 324 No 0 Both 1998 Northern Spring
## 325 No 0 Both 2002 Northern Spring
## 326 No 0 Both 2003 Northern Spring
## 327 No 0 Both 2003 Northern Spring
## 328 No 0 Both 2003 Northern Spring
## 329 No 0 Both 2003 Northern Spring
## 330 No 0 Both 2003 Northern Spring
## 331 No 0 Both 2003 Northern Spring
## 332 No 0 Both 2003 Northern Spring
## 333 No 0 Both 1998 Northern Spring
## 334 No 0 Capsid 2003 Northern Spring
## 335 No 0 Capsid 2004 Northern Spring
## 336 No 0 Capsid 2006 Northern Spring
## 337 No 0 Unspecified 1999 Southern Spring
## 338 No 0 Unspecified 1999 Southern Spring
## 339 No 0 Unspecified 1999 Southern Spring
## 340 No 0 Unspecified 1999 Southern Spring
## 341 Yes Morning Tea Unspecified 2003 Southern Spring
## 342 Yes Foodhandler Polymerase 1995 Northern Spring
## 343 No 0 Both 1995 Northern Spring
## 344 No 0 Polymerase 1997 Northern Spring
## 345 No 0 Polymerase 1997 Northern Spring
## 346 No 0 Polymerase 1997 Northern Spring
## 347 No 0 Both 1998 Northern Spring
## 348 No 0 Polymerase 2000 Northern Spring
## 349 No 0 Both 2005 Northern Spring
## 350 No 0 Polymerase 2003 Southern Spring
## 351 No 0 Polymerase 2003 Southern Spring
## 352 No 0 Both 1998 Southern Spring
## 353 No 0 Both 1999 Southern Spring
## 354 No 0 Both 2000 Southern Spring
## 355 No 0 Both 2002 Northern Spring
## 356 No 0 Both 2002 Northern Spring
## 357 No 0 Capsid 2005 Northern Spring
## 358 No 0 Capsid 2005 Northern Spring
## 359 No 0 Unspecified 2005 Northern Spring
## 360 Yes house salad Polymerase 2007 Northern Spring
## 361 No 0 Both 2009 Northern Spring
## 362 Yes sliced cold sausage Unspecified 2009 Northern Spring
## 363 No 0 Unspecified 2007 Northern Spring
## 364 No Both 2004 Southern Spring
## 365 No Both 2004 Southern Spring
## 366 No Both 2004 Southern Spring
## 367 No Unspecified 2007 Northern Spring
## 368 No Unspecified 2007 Northern Spring
## 369 No Unspecified 2002 Northern Spring
## 370 No Unspecified 2002 Northern Spring
## 371 No Unspecified 2004 Northern Spring
## 372 No Unspecified 2004 Northern Spring
## 373 No Unspecified 2004 Northern Spring
## 374 No Unspecified 2005 Northern Spring
## 375 No Unspecified 2006 Northern Spring
## 376 No Unspecified 2006 Northern Spring
## 377 No Unspecified 2006 Northern Spring
## 378 No Unspecified 2002 Northern Spring
## 379 No Unspecified 2002 Northern Spring
## 380 No Unspecified 2002 Northern Spring
## 381 No Unspecified 2002 Northern Spring
## 382 No Unspecified 2002 Northern Spring
## 383 No Unspecified 2002 Northern Spring
## 384 No Unspecified 2003 Northern Spring
## 385 No Unspecified 2002 Northern Spring
## 386 No Unspecified 2002 Northern Spring
## 387 No 0 Capsid 1999 Northern Summer
## 388 No 0 Unspecified 1998 Northern Summer
## 389 No 0 Unspecified 2007 Northern Summer
## 390 No 0 Unspecified 2007 Northern Summer
## 391 No 0 Unspecified 2007 Northern Summer
## 392 No 0 Polymerase 1995 Northern Summer
## 393 No 0 Polymerase 2000 Northern Summer
## 394 No 0 Both 2006 Northern Summer
## 395 No 0 Both 2006 Northern Summer
## 396 No 0 Both 2006 Northern Summer
## 397 No 0 Both 2006 Northern Summer
## 398 No 0 Both 2006 Northern Summer
## 399 No 0 Both 2006 Northern Summer
## 400 No 0 Both 2006 Northern Summer
## 401 No 0 Both 2006 Northern Summer
## 402 No 0 Polymerase 2007 Northern Summer
## 403 No 0 Both 1994 Northern Summer
## 404 No 0 Both 2002 Southern Summer
## 405 No 0 Polymerase 1994 Southern Summer
## 406 No 0 Unspecified 2001 Northern Summer
## 407 No 0 Unspecified 2001 Northern Summer
## 408 No 0 Unspecified 2002 Northern Summer
## 409 No 0 Unspecified 2006 Northern Summer
## 410 No 0 Polymerase 1998 Northern Summer
## 411 No 0 Polymerase 1999 Northern Summer
## 412 No 0 Polymerase 1999 Northern Summer
## 413 No 0 Unspecified 0 Northern Summer
## 414 No 0 Unspecified 2006 Northern Summer
## 415 No 0 Unspecified 2005 Northern Summer
## 416 No 0 Unspecified 2005 Northern Summer
## 417 No 0 Unspecified 2005 Northern Summer
## 418 No 0 Both 1999 Northern Summer
## 419 No 0 Unspecified 1998 Southern Summer
## 420 No 0 Polymerase 2001 Northern Summer
## 421 No 0 Unspecified 2006 Northern Summer
## 422 No 0 Unspecified 2003 Southern Summer
## 423 No 0 Polymerase 2004 Northern Summer
## 424 No 0 Polymerase 2004 Northern Summer
## 425 No 0 Unspecified 2004 Northern Summer
## 426 No 0 Unspecified 2006 Northern Summer
## 427 No 0 Unspecified 2006 Northern Summer
## 428 No 0 Unspecified 2002 Northern Summer
## 429 No 0 Both 1996 Northern Summer
## 430 No 0 Both 1996 Northern Summer
## 431 No 0 Both 2001 Northern Summer
## 432 No 0 Both 1999 Northern Summer
## 433 No 0 Both 1999 Northern Summer
## 434 No 0 Capsid 2002 Northern Summer
## 435 No 0 Both 2002 Northern Summer
## 436 No 0 Both 2002 Northern Summer
## 437 No 0 Both 2003 Northern Summer
## 438 No 0 Both 2003 Northern Summer
## 439 No 0 Both 2003 Northern Summer
## 440 No 0 Both 2003 Northern Summer
## 441 No 0 Both 2004 Northern Summer
## 442 No 0 Both 2005 Northern Summer
## 443 No 0 Both 2005 Northern Summer
## 444 No 0 Capsid 2006 Northern Summer
## 445 No 0 Capsid 2006 Northern Summer
## 446 No 0 Capsid 2006 Northern Summer
## 447 No 0 Capsid 2006 Northern Summer
## 448 No 0 Capsid 2006 Northern Summer
## 449 No 0 Capsid 2006 Northern Summer
## 450 No 0 Both 2006 Northern Summer
## 451 No 0 Both 2005 Northern Summer
## 452 Yes Infected Persons Polymerase 2001 Northern Summer
## 453 No 0 Polymerase 2001 Northern Summer
## 454 No 0 Polymerase 1998 Northern Summer
## 455 No 0 Polymerase 1998 Northern Summer
## 456 No 0 Polymerase 1999 Northern Summer
## 457 No 0 Polymerase 2000 Northern Summer
## 458 No 0 Polymerase 2003 Northern Summer
## 459 No 0 Polymerase 2002 Northern Summer
## 460 No 0 Polymerase 2003 Northern Summer
## 461 No 0 Capsid 2005 Northern Summer
## 462 No 0 Capsid 2005 Northern Summer
## 463 No 0 Polymerase 1998 Northern Summer
## 464 No 0 Polymerase 1998 Northern Summer
## 465 No 0 Unspecified 1996 Northern Summer
## 466 No 0 Polymerase 1999 Northern Summer
## 467 No 0 Polymerase 1999 Northern Summer
## 468 No 0 Polymerase 2000 Northern Summer
## 469 No 0 Both 2005 Northern Summer
## 470 No 0 Unspecified 2004 Northern Summer
## 471 No 0 Capsid 2004 Northern Summer
## 472 Yes Scotch Fillet Steak Unspecified 1999 Southern Summer
## 473 Yes Roast Chicken Unspecified 1999 Southern Summer
## 474 No 0 Unspecified 1999 Southern Summer
## 475 No 0 Unspecified 1999 Southern Summer
## 476 Yes Brandy S ps Unspecified 1999 Southern Summer
## 477 Yes Coffee White Unspecified 1999 Southern Summer
## 478 No 0 Both 1983 Southern Summer
## 479 No 0 Unspecified 1999 Northern Summer
## 480 No 0 Unspecified 1999 Northern Summer
## 481 Yes Fresh juice Polymerase 2006 Northern Summer
## 482 No 0 Capsid 2007 Northern Summer
## 483 No 0 Capsid 2007 Northern Summer
## 484 No 0 Unspecified 1999 Southern Summer
## 485 No 0 Polymerase 2004 Southern Summer
## 486 No 0 Both 2008 Northern Summer
## 487 No 0 Both 1999 Southern Summer
## 488 No 0 Both 2002 Northern Summer
## 489 No 0 Both 2002 Northern Summer
## 490 No 0 Both 2002 Northern Summer
## 491 No 0 Both 2002 Northern Summer
## 492 No 0 Unspecified 2001 Northern Summer
## 493 No 0 Unspecified 2001 Northern Summer
## 494 No 0 Unspecified 2001 Northern Summer
## 495 No 0 Polymerase 2005 Northern Summer
## 496 No 0 Unspecified 2010 Southern Summer
## 497 No 0 Unspecified 2007 Northern Summer
## 498 No Unspecified 2009 Northern Summer
## 499 No Both 2002 Southern Summer
## 500 No Both 2003 Southern Summer
## 501 No Both 2003 Southern Summer
## 502 No Both 2003 Southern Summer
## 503 No Both 2004 Southern Summer
## 504 No Both 2004 Southern Summer
## 505 No Unspecified 2007 Northern Summer
## 506 No Unspecified 2006 Northern Summer
## 507 No Unspecified 2005 Northern Summer
## 508 No Unspecified 2004 Northern Summer
## 509 No Unspecified 2004 Northern Summer
## 510 No Both 2002 Northern Summer
## 511 No Unspecified 2002 Northern Summer
## 512 No 0 Polymerase 2000 Northern Winter
## 513 No 0 Polymerase 2001 Northern Winter
## 514 No 0 Unspecified 2007 Northern Winter
## 515 No 0 Unspecified 1996 Northern Winter
## 516 No 0 Both 2006 Northern Winter
## 517 No 0 Both 2006 Northern Winter
## 518 No 0 Both 2006 Northern Winter
## 519 No 0 Both 2006 Northern Winter
## 520 No 0 Both 2006 Northern Winter
## 521 No 0 Both 2006 Northern Winter
## 522 No 0 Both 2006 Northern Winter
## 523 No 0 Both 2006 Northern Winter
## 524 No 0 Unspecified 1998 Northern Winter
## 525 No 0 Both 2003 Southern Winter
## 526 No 0 Both 1996 Northern Winter
## 527 No 0 Unspecified 2002 Northern Winter
## 528 No 0 Polymerase 1994 Southern Winter
## 529 No 0 Unspecified 2000 Northern Winter
## 530 No 0 Unspecified 2004 Northern Winter
## 531 No 0 Unspecified 2006 Northern Winter
## 532 No 0 Polymerase 2007 Northern Winter
## 533 No 0 Polymerase 1998 Northern Winter
## 534 No 0 Polymerase 1998 Northern Winter
## 535 No 0 Polymerase 1998 Northern Winter
## 536 No 0 Polymerase 1998 Northern Winter
## 537 No 0 Polymerase 1999 Northern Winter
## 538 No 0 Unspecified 1996 Northern Winter
## 539 No 0 Capsid 2004 Northern Winter
## 540 No 0 Polymerase 2001 Northern Winter
## 541 No 0 Both 2002 Northern Winter
## 542 No 0 Both 2003 Northern Winter
## 543 No 0 Both 2003 Northern Winter
## 544 No 0 Both 2003 Northern Winter
## 545 No 0 Both 2002 Northern Winter
## 546 No 0 Both 2003 Northern Winter
## 547 No 0 Unspecified 2002 Northern Winter
## 548 No 0 Unspecified 2002 Northern Winter
## 549 No 0 Unspecified 1999 Northern Winter
## 550 No 0 Polymerase 2001 Northern Winter
## 551 No 0 Polymerase 2001 Northern Winter
## 552 No 0 Polymerase 2001 Northern Winter
## 553 No 0 Polymerase 2001 Northern Winter
## 554 No 0 Polymerase 2003 Northern Winter
## 555 No 0 Polymerase 2003 Northern Winter
## 556 No 0 Unspecified 2006 Northern Winter
## 557 No 0 Both 2004 Northern Winter
## 558 No 0 Polymerase 1994 Northern Winter
## 559 No 0 Polymerase 1994 Northern Winter
## 560 No 0 Unspecified 1999 Northern Winter
## 561 No 0 Polymerase 2003 Northern Winter
## 562 No 0 Polymerase 2003 Northern Winter
## 563 No 0 Polymerase 2005 Northern Winter
## 564 No 0 Both 1997 Northern Winter
## 565 No 0 Both 1997 Northern Winter
## 566 No 0 Both 1998 Northern Winter
## 567 No 0 Both 1998 Northern Winter
## 568 No 0 Both 1999 Northern Winter
## 569 No 0 Both 2000 Northern Winter
## 570 No 0 Both 2000 Northern Winter
## 571 No 0 Both 2000 Northern Winter
## 572 No 0 Both 2000 Northern Winter
## 573 No 0 Both 2000 Northern Winter
## 574 No 0 Both 2000 Northern Winter
## 575 No 0 Both 2001 Northern Winter
## 576 No 0 Both 2001 Northern Winter
## 577 No 0 Both 2001 Northern Winter
## 578 No 0 Both 2002 Northern Winter
## 579 No 0 Both 2002 Northern Winter
## 580 No 0 Both 2002 Northern Winter
## 581 No 0 Both 2003 Northern Winter
## 582 No 0 Both 2003 Northern Winter
## 583 No 0 Both 2003 Northern Winter
## 584 No 0 Both 2003 Northern Winter
## 585 No 0 Both 2003 Northern Winter
## 586 No 0 Both 2003 Northern Winter
## 587 No 0 Both 2003 Northern Winter
## 588 No 0 Both 2003 Northern Winter
## 589 No 0 Both 2004 Northern Winter
## 590 No 0 Both 2004 Northern Winter
## 591 No 0 Both 2004 Northern Winter
## 592 No 0 Both 2004 Northern Winter
## 593 No 0 Polymerase 2006 Southern Winter
## 594 No 0 Unspecified 2005 Northern Winter
## 595 No 0 Both 1997 Northern Winter
## 596 No 0 Both 1997 Northern Winter
## 597 No 0 Both 1997 Northern Winter
## 598 No 0 Both 1997 Northern Winter
## 599 No 0 Both 1997 Northern Winter
## 600 No 0 Both 1997 Northern Winter
## 601 No 0 Both 1997 Northern Winter
## 602 No 0 Both 1997 Northern Winter
## 603 No 0 Both 1997 Northern Winter
## 604 No 0 Both 1997 Northern Winter
## 605 No 0 Both 1997 Northern Winter
## 606 No 0 Both 1997 Northern Winter
## 607 No 0 Both 1997 Northern Winter
## 608 No 0 Both 1997 Northern Winter
## 609 No 0 Both 1997 Northern Winter
## 610 No 0 Both 1997 Northern Winter
## 611 No 0 Both 1997 Northern Winter
## 612 No 0 Both 1998 Northern Winter
## 613 No 0 Both 1998 Northern Winter
## 614 No 0 Both 1998 Northern Winter
## 615 No 0 Both 1998 Northern Winter
## 616 No 0 Both 1998 Northern Winter
## 617 No 0 Both 1998 Northern Winter
## 618 No 0 Both 1998 Northern Winter
## 619 No 0 Both 1998 Northern Winter
## 620 No 0 Both 1998 Northern Winter
## 621 No 0 Both 1998 Northern Winter
## 622 No 0 Both 1998 Northern Winter
## 623 No 0 Both 1998 Northern Winter
## 624 No 0 Both 1999 Northern Winter
## 625 No 0 Both 1999 Northern Winter
## 626 No 0 Both 1999 Northern Winter
## 627 No 0 Both 1999 Northern Winter
## 628 No 0 Both 1999 Northern Winter
## 629 No 0 Both 1999 Northern Winter
## 630 No 0 Both 1999 Northern Winter
## 631 No 0 Both 1999 Northern Winter
## 632 No 0 Both 1999 Northern Winter
## 633 No 0 Both 2000 Northern Winter
## 634 No 0 Both 2000 Northern Winter
## 635 No 0 Both 2000 Northern Winter
## 636 No 0 Both 2000 Northern Winter
## 637 No 0 Both 2000 Northern Winter
## 638 No 0 Both 2000 Northern Winter
## 639 No 0 Both 2000 Northern Winter
## 640 No 0 Both 2000 Northern Winter
## 641 No 0 Both 2000 Northern Winter
## 642 No 0 Both 2000 Northern Winter
## 643 No 0 Both 2000 Northern Winter
## 644 No 0 Unspecified 2003 Northern Winter
## 645 No 0 Polymerase 2004 Northern Winter
## 646 No 0 Both 1998 Northern Winter
## 647 No 0 Both 1999 Northern Winter
## 648 No 0 Both 2000 Northern Winter
## 649 No 0 Both 2000 Northern Winter
## 650 No 0 Both 2001 Northern Winter
## 651 No 0 Both 2001 Northern Winter
## 652 No 0 Both 2001 Northern Winter
## 653 No 0 Both 2002 Northern Winter
## 654 No 0 Both 2002 Northern Winter
## 655 No 0 Both 2002 Northern Winter
## 656 No 0 Both 2001 Northern Winter
## 657 No 0 Both 2001 Northern Winter
## 658 No 0 Both 2002 Northern Winter
## 659 No 0 Both 1997 Northern Winter
## 660 No 0 Both 1997 Northern Winter
## 661 No 0 Both 1997 Northern Winter
## 662 No 0 Both 1998 Northern Winter
## 663 No 0 Both 1999 Northern Winter
## 664 No 0 Both 1999 Northern Winter
## 665 No 0 Both 2000 Northern Winter
## 666 No 0 Both 2001 Northern Winter
## 667 No 0 Both 2001 Northern Winter
## 668 No 0 Both 2002 Northern Winter
## 669 No 0 Both 2002 Northern Winter
## 670 No 0 Both 2002 Northern Winter
## 671 No 0 Both 2001 Northern Winter
## 672 No 0 Both 1998 Northern Winter
## 673 No 0 Both 1997 Northern Winter
## 674 No 0 Both 1999 Northern Winter
## 675 No 0 Both 2000 Northern Winter
## 676 No 0 Both 2000 Northern Winter
## 677 No 0 Both 1998 Northern Winter
## 678 No 0 Both 2002 Northern Winter
## 679 No 0 Polymerase 2007 Northern Winter
## 680 No 0 Both 2006 Northern Winter
## 681 No 0 Unspecified 1999 Northern Winter
## 682 No 0 Polymerase 1992 Northern Winter
## 683 No 0 Polymerase 2001 Northern Winter
## 684 No 0 Unspecified 1994 Northern Winter
## 685 No 0 Capsid 2001 Northern Winter
## 686 No 0 Polymerase 1998 Northern Winter
## 687 No 0 Unspecified 2007 Northern Winter
## 688 Yes physiotherapy instrument Unspecified 1999 Northern Winter
## 689 No 0 Both 2002 Northern Winter
## 690 No 0 Both 2006 Northern Winter
## 691 No 0 Unspecified 2000 Southern Winter
## 692 No 0 Both 2002 Northern Winter
## 693 No 0 Both 2003 Northern Winter
## 694 No 0 Both 2003 Northern Winter
## 695 No 0 Both 2004 Northern Winter
## 696 No 0 Both 2004 Northern Winter
## 697 No 0 Both 2004 Northern Winter
## 698 No 0 Both 2004 Northern Winter
## 699 No 0 Both 2004 Northern Winter
## 700 No 0 Both 2004 Northern Winter
## 701 No 0 Capsid 2004 Northern Winter
## 702 No 0 Capsid 2005 Northern Winter
## 703 No 0 Capsid 2006 Northern Winter
## 704 No 0 Capsid 2006 Northern Winter
## 705 No 0 Capsid 2006 Northern Winter
## 706 No 0 Capsid 2006 Northern Winter
## 707 No 0 Polymerase 1998 Northern Winter
## 708 No 0 Polymerase 1999 Southern Winter
## 709 No 0 Both 1996 Northern Winter
## 710 No 0 Polymerase 1999 Northern Winter
## 711 No 0 Polymerase 1999 Northern Winter
## 712 No 0 Polymerase 2000 Northern Winter
## 713 No 0 Polymerase 2003 Northern Winter
## 714 No 0 Unspecified 2001 Northern Winter
## MeanI1 MedianI1 Range_S_I1 Range_L_I1 MeanD1 MedianD1 Range_S_D1
## 1 0 0 0.0 0 0.0 0.0 0.0
## 2 0 37 0.0 0 0.0 36.0 0.0
## 3 0 0 0.0 0 0.0 0.0 0.0
## 4 0 0 0.0 0 0.0 0.0 0.0
## 5 0 0 0.0 0 0.0 0.0 0.0
## 6 0 0 0.0 0 0.0 0.0 0.0
## 7 0 0 0.0 0 0.0 0.0 0.0
## 8 0 0 0.0 0 0.0 0.0 0.0
## 9 0 0 0.0 0 0.0 0.0 0.0
## 10 0 31 2.0 69 0.0 48.0 10.0
## 11 0 34 0.0 0 0.0 37.0 0.0
## 12 0 33 6.0 96 0.0 24.0 5.0
## 13 0 0 0.0 0 24.0 0.0 4.0
## 14 0 0 0.0 0 0.0 0.0 0.0
## 15 0 0 0.0 0 0.0 0.0 0.0
## 16 0 0 0.0 0 0.0 0.0 0.0
## 17 0 0 0.0 0 0.0 0.0 0.0
## 18 0 0 0.0 0 0.0 0.0 0.0
## 19 0 0 20.0 61 0.0 54.0 6.0
## 20 0 0 0.0 0 37.0 0.0 3.0
## 21 0 0 0.0 0 0.0 0.0 0.0
## 22 0 0 0.0 0 0.0 0.0 0.0
## 23 0 0 0.0 0 0.0 0.0 0.0
## 24 0 0 0.0 0 0.0 0.0 0.0
## 25 0 0 0.0 0 0.0 0.0 0.0
## 26 0 0 0.0 0 0.0 0.0 0.0
## 27 0 0 0.0 0 0.0 0.0 0.0
## 28 0 0 0.0 0 0.0 0.0 0.0
## 29 0 0 0.0 0 0.0 0.0 0.0
## 30 0 0 0.0 0 0.0 0.0 0.0
## 31 0 0 0.0 0 0.0 0.0 0.0
## 32 0 0 0.0 0 0.0 0.0 0.0
## 33 0 0 0.0 0 0.0 0.0 0.0
## 34 34 0 31.0 39 47.0 0.0 32.0
## 35 0 46 0.0 0 0.0 36.0 0.0
## 36 0 0 0.0 0 0.0 0.0 0.0
## 37 0 0 0.0 0 0.0 0.0 0.0
## 38 0 0 12.0 24 0.0 0.0 0.0
## 39 0 0 0.0 0 0.0 0.0 0.0
## 40 0 0 0.0 0 0.0 36.0 8.0
## 41 0 0 0.0 0 0.0 0.0 0.0
## 42 0 0 0.0 0 0.0 0.0 0.0
## 43 0 0 0.0 0 0.0 0.0 0.0
## 44 0 0 0.0 0 0.0 0.0 0.0
## 45 0 0 0.0 0 0.0 0.0 0.0
## 46 31 0 0.0 0 0.0 0.0 0.0
## 47 32 33 8.0 60 43.0 0.0 12.0
## 48 0 0 0.0 0 48.0 48.0 0.0
## 49 0 0 0.0 0 0.0 0.0 0.0
## 50 0 0 0.0 0 0.0 0.0 0.0
## 51 0 0 0.0 0 0.0 0.0 0.0
## 52 0 0 0.0 0 0.0 0.0 0.0
## 53 0 0 0.0 0 0.0 0.0 0.0
## 54 0 0 0.0 0 0.0 0.0 0.0
## 55 0 0 0.0 0 0.0 0.0 0.0
## 56 0 0 0.0 0 0.0 0.0 0.0
## 57 0 0 0.0 0 0.0 0.0 0.0
## 58 0 0 0.0 0 0.0 0.0 0.0
## 59 0 0 0.0 0 0.0 0.0 0.0
## 60 0 0 0.0 0 0.0 0.0 0.0
## 61 0 37 9.0 62 0.0 24.0 3.0
## 62 0 31 5.0 52 0.0 36.0 6.0
## 63 0 0 0.0 0 0.0 0.0 0.0
## 64 0 0 0.0 0 0.0 0.0 0.0
## 65 0 0 0.0 0 0.0 0.0 0.0
## 66 0 36 31.0 63 0.0 0.0 0.0
## 67 0 0 0.0 0 0.0 0.0 0.0
## 68 0 0 0.0 0 0.0 0.0 0.0
## 69 0 0 0.0 0 0.0 0.0 0.0
## 70 0 0 0.0 0 0.0 0.0 0.0
## 71 0 0 0.0 0 0.0 0.0 0.0
## 72 0 0 0.0 0 0.0 0.0 0.0
## 73 0 0 0.0 0 0.0 0.0 0.0
## 74 0 0 0.0 0 0.0 0.0 0.0
## 75 0 0 0.0 0 0.0 0.0 0.0
## 76 0 0 0.0 0 0.0 0.0 0.0
## 77 0 0 0.0 0 0.0 0.0 0.0
## 78 0 0 0.0 0 0.0 0.0 0.0
## 79 0 0 0.0 0 0.0 0.0 0.0
## 80 0 0 0.0 0 0.0 0.0 0.0
## 81 0 0 0.0 0 0.0 0.0 0.0
## 82 0 0 0.0 0 0.0 0.0 0.0
## 83 0 0 0.0 0 0.0 0.0 0.0
## 84 0 0 0.0 0 0.0 0.0 0.0
## 85 0 0 0.0 0 0.0 0.0 0.0
## 86 0 0 0.0 0 0.0 0.0 24.0
## 87 28 0 0.0 0 0.0 0.0 24.0
## 88 0 0 0.0 0 0.0 24.0 24.0
## 89 0 0 0.0 0 0.0 0.0 0.0
## 90 0 0 24.0 42 0.0 0.0 0.0
## 91 0 0 0.0 0 0.0 0.0 0.0
## 92 0 0 0.0 0 0.0 0.0 0.0
## 93 0 0 0.0 0 0.0 0.0 24.0
## 94 0 0 0.0 0 0.0 0.0 0.0
## 95 0 0 0.0 0 0.0 0.0 0.0
## 96 0 0 0.0 0 0.0 0.0 0.0
## 97 0 0 0.0 0 48.0 0.0 0.0
## 98 0 0 0.0 0 0.0 0.0 0.0
## 99 0 0 0.0 0 0.0 0.0 0.0
## 100 0 0 0.0 0 0.0 0.0 0.0
## 101 0 0 0.0 0 0.0 0.0 0.0
## 102 0 0 0.0 0 0.0 0.0 0.0
## 103 0 0 0.0 0 0.0 0.0 0.0
## 104 16 17 14.0 19 24.0 0.0 0.0
## 105 0 0 0.0 0 0.0 0.0 0.0
## 106 0 0 0.0 0 0.0 48.0 0.0
## 107 0 0 0.0 0 0.0 0.0 0.0
## 108 0 0 0.0 0 0.0 0.0 0.0
## 109 0 0 0.0 0 0.0 0.0 0.0
## 110 0 0 0.0 0 0.0 0.0 0.0
## 111 0 0 0.0 0 0.0 0.0 0.0
## 112 0 0 0.0 0 0.0 0.0 0.0
## 113 0 0 0.0 0 0.0 0.0 0.0
## 114 0 0 0.0 0 0.0 0.0 0.0
## 115 0 0 0.0 0 0.0 0.0 0.0
## 116 0 0 0.0 0 0.0 0.0 0.0
## 117 0 0 0.0 0 0.0 0.0 0.0
## 118 0 0 0.0 0 0.0 0.0 0.0
## 119 0 0 0.0 0 0.0 0.0 0.0
## 120 0 0 0.0 0 0.0 0.0 0.0
## 121 0 0 0.0 0 0.0 0.0 0.0
## 122 0 0 0.0 0 0.0 0.0 0.0
## 123 0 0 0.0 0 0.0 0.0 0.0
## 124 0 0 0.0 0 0.0 0.0 0.0
## 125 0 0 0.0 0 0.0 0.0 0.0
## 126 0 0 0.0 0 0.0 0.0 0.0
## 127 0 0 0.0 0 0.0 0.0 0.0
## 128 0 0 0.0 0 0.0 0.0 0.0
## 129 0 0 0.0 0 0.0 0.0 0.0
## 130 0 0 0.0 0 0.0 0.0 0.0
## 131 0 0 0.0 0 0.0 0.0 0.0
## 132 0 0 0.0 0 0.0 0.0 0.0
## 133 0 0 0.0 0 0.0 0.0 0.0
## 134 0 0 0.0 0 21.0 0.0 2.0
## 135 0 0 0.0 0 58.0 0.0 0.0
## 136 0 0 0.0 0 0.0 0.0 0.0
## 137 0 0 0.0 0 0.0 48.0 0.0
## 138 0 0 0.0 0 0.0 0.0 0.0
## 139 0 0 0.0 0 0.0 0.0 0.0
## 140 0 0 0.0 0 0.0 0.0 0.0
## 141 0 0 0.0 0 0.0 0.0 0.0
## 142 0 0 0.0 0 0.0 0.0 0.0
## 143 0 0 0.0 0 0.0 0.0 0.0
## 144 0 0 0.0 0 0.0 0.0 0.0
## 145 33 0 14.0 76 22.0 0.0 1.0
## 146 0 0 0.0 0 0.0 0.0 0.0
## 147 36 0 24.0 72 35.0 0.0 0.0
## 148 0 0 0.0 0 72.0 0.0 24.0
## 149 0 0 0.0 0 0.0 0.0 0.0
## 150 0 0 0.0 0 0.0 0.0 0.0
## 151 38 0 6.0 85 0.0 0.0 24.0
## 152 0 0 0.0 0 0.0 0.0 0.0
## 153 0 0 0.0 0 0.0 0.0 0.0
## 154 0 0 0.0 0 0.0 0.0 0.0
## 155 0 0 0.0 0 0.0 0.0 0.0
## 156 0 0 0.0 0 0.0 0.0 0.0
## 157 0 0 0.0 0 0.0 0.0 0.0
## 158 0 0 0.0 0 0.0 0.0 0.0
## 159 0 0 0.0 0 0.0 0.0 0.0
## 160 0 0 0.0 0 0.0 0.0 0.0
## 161 0 0 0.0 0 0.0 0.0 0.0
## 162 0 0 0.0 0 0.0 0.0 0.0
## 163 0 0 0.0 0 273.6 235.2 0.0
## 164 0 0 0.0 0 0.0 0.0 0.0
## 165 0 0 0.0 0 0.0 0.0 0.0
## 166 0 0 0.0 0 0.0 0.0 0.0
## 167 0 0 0.0 0 0.0 0.0 0.0
## 168 0 0 0.0 0 0.0 0.0 0.0
## 169 0 0 0.0 0 0.0 0.0 0.0
## 170 0 0 0.0 0 0.0 0.0 0.0
## 171 0 0 0.0 0 0.0 0.0 0.0
## 172 0 0 0.0 0 0.0 0.0 0.0
## 173 0 0 0.0 0 0.0 0.0 0.0
## 174 0 0 0.0 0 0.0 0.0 0.0
## 175 0 0 0.0 0 0.0 0.0 0.0
## 176 0 0 24.0 48 0.0 0.0 24.0
## 177 0 0 24.0 48 0.0 0.0 24.0
## 178 0 0 0.0 0 0.0 0.0 24.0
## 179 0 0 0.0 0 0.0 0.0 0.0
## 180 0 0 8.0 56 0.0 0.0 0.0
## 181 0 0 0.0 0 0.0 0.0 0.0
## 182 0 0 0.0 0 0.0 0.0 0.0
## 183 0 0 0.0 0 0.0 0.0 0.0
## 184 0 0 0.0 0 0.0 0.0 0.0
## 185 0 0 0.0 0 0.0 0.0 0.0
## 186 0 0 0.0 0 0.0 0.0 0.0
## 187 0 0 0.0 0 0.0 0.0 0.0
## 188 0 0 24.0 48 0.0 48.0 24.0
## 189 0 0 0.0 0 0.0 0.0 0.0
## 190 0 0 0.0 0 0.0 0.0 0.0
## 191 0 0 0.0 0 0.0 0.0 0.0
## 192 0 0 0.0 0 0.0 24.0 5.0
## 193 0 0 0.0 0 0.0 0.0 0.0
## 194 0 0 0.0 0 0.0 0.0 0.0
## 195 0 35 6.0 74 0.0 4.0 2.0
## 196 0 0 0.0 0 0.0 0.0 0.0
## 197 0 34 2.0 61 0.0 0.0 0.0
## 198 0 0 0.0 0 12.0 0.0 6.0
## 199 0 0 0.0 0 0.0 0.0 0.0
## 200 0 0 0.0 0 0.0 0.0 0.0
## 201 0 0 0.0 0 0.0 0.0 0.0
## 202 0 0 0.0 0 0.0 0.0 0.0
## 203 0 0 0.0 0 0.0 0.0 0.0
## 204 0 0 0.0 0 0.0 0.0 0.0
## 205 0 0 0.0 0 0.0 0.0 0.0
## 206 0 0 0.0 0 0.0 0.0 0.0
## 207 0 0 0.0 0 0.0 0.0 0.0
## 208 0 0 0.0 0 0.0 0.0 0.0
## 209 0 0 0.0 0 0.0 0.0 0.0
## 210 0 0 0.0 0 0.0 0.0 0.0
## 211 0 0 0.0 0 0.0 0.0 0.0
## 212 0 0 0.0 0 0.0 0.0 0.0
## 213 0 0 0.0 0 0.0 0.0 0.0
## 214 0 0 0.0 0 0.0 0.0 0.0
## 215 0 0 0.0 0 0.0 0.0 0.0
## 216 0 0 0.0 0 0.0 0.0 0.0
## 217 0 0 0.0 0 0.0 0.0 0.0
## 218 0 0 0.0 0 0.0 0.0 0.0
## 219 0 0 0.0 0 0.0 0.0 0.0
## 220 0 0 0.0 0 0.0 0.0 0.0
## 221 0 0 0.0 0 0.0 0.0 0.0
## 222 0 0 0.0 0 0.0 0.0 0.0
## 223 0 0 0.0 0 0.0 0.0 0.0
## 224 0 0 0.0 0 0.0 0.0 0.0
## 225 0 0 0.0 0 0.0 0.0 0.0
## 226 0 0 0.0 0 0.0 0.0 0.0
## 227 0 0 0.0 0 0.0 0.0 0.0
## 228 0 0 0.0 0 0.0 0.0 0.0
## 229 0 0 0.0 0 0.0 0.0 0.0
## 230 0 0 0.0 0 0.0 0.0 0.0
## 231 0 0 0.0 0 0.0 0.0 0.0
## 232 0 0 0.0 0 0.0 0.0 0.0
## 233 0 0 0.0 0 0.0 0.0 0.0
## 234 0 0 0.0 0 0.0 0.0 0.0
## 235 0 0 0.0 0 0.0 0.0 0.0
## 236 0 0 0.0 0 0.0 0.0 0.0
## 237 0 0 0.0 0 0.0 0.0 0.0
## 238 0 0 0.0 0 0.0 0.0 0.0
## 239 0 0 0.0 0 0.0 0.0 0.0
## 240 0 0 0.0 0 0.0 0.0 0.0
## 241 0 0 0.0 0 0.0 0.0 0.0
## 242 0 0 0.0 0 0.0 0.0 0.0
## 243 0 0 0.0 0 67.0 0.0 24.0
## 244 0 0 0.0 0 0.0 0.0 0.0
## 245 0 0 0.0 0 0.0 0.0 0.0
## 246 0 0 0.0 0 0.0 0.0 0.0
## 247 0 0 0.0 0 0.0 0.0 0.0
## 248 0 0 0.0 0 0.0 0.0 0.0
## 249 0 0 0.0 0 0.0 0.0 0.0
## 250 0 0 0.0 0 0.0 0.0 0.0
## 251 0 0 0.0 0 0.0 0.0 0.0
## 252 0 0 0.0 0 0.0 0.0 0.0
## 253 0 0 0.0 0 0.0 0.0 0.0
## 254 0 0 0.0 0 0.0 0.0 0.0
## 255 0 0 0.0 0 0.0 0.0 0.0
## 256 0 0 0.0 0 0.0 0.0 0.0
## 257 0 0 0.0 0 0.0 0.0 0.0
## 258 0 0 0.0 0 0.0 0.0 0.0
## 259 0 0 0.0 0 0.0 0.0 0.0
## 260 0 0 0.0 0 0.0 0.0 0.0
## 261 0 0 0.0 0 0.0 0.0 0.0
## 262 0 0 0.0 0 0.0 72.0 24.0
## 263 0 0 0.0 0 0.0 72.0 24.0
## 264 0 0 0.0 0 0.0 0.0 0.0
## 265 0 0 0.0 0 0.0 0.0 0.0
## 266 0 0 0.0 0 0.0 0.0 0.0
## 267 7 65 0.0 0 0.0 36.0 24.0
## 268 0 0 0.0 0 0.0 0.0 0.0
## 269 0 0 0.0 0 0.0 0.0 0.0
## 270 0 0 0.0 0 0.0 0.0 0.0
## 271 0 0 0.0 0 0.0 0.0 0.0
## 272 0 0 0.0 0 0.0 0.0 0.0
## 273 0 0 0.0 0 0.0 0.0 0.0
## 274 0 0 0.0 0 0.0 0.0 0.0
## 275 0 0 0.0 0 0.0 0.0 0.0
## 276 0 0 0.0 0 0.0 0.0 0.0
## 277 0 0 0.0 0 0.0 0.0 0.0
## 278 0 0 0.0 0 0.0 0.0 0.0
## 279 0 0 0.0 0 0.0 0.0 0.0
## 280 0 0 0.0 0 0.0 0.0 0.0
## 281 0 0 0.0 0 0.0 0.0 0.0
## 282 0 0 0.0 0 0.0 0.0 0.0
## 283 0 0 0.0 0 0.0 0.0 0.0
## 284 0 0 0.0 0 0.0 0.0 0.0
## 285 0 0 0.0 0 0.0 0.0 0.0
## 286 0 0 0.0 0 0.0 0.0 0.0
## 287 0 0 0.0 0 0.0 0.0 24.0
## 288 0 0 30.0 43 0.0 0.0 6.0
## 289 0 28 21.0 37 0.0 0.0 0.0
## 290 0 0 0.0 0 0.0 0.0 0.0
## 291 0 0 0.0 0 0.0 0.0 0.0
## 292 0 0 0.0 0 0.0 0.0 0.0
## 293 0 0 0.0 0 0.0 0.0 0.0
## 294 0 0 0.0 0 0.0 0.0 0.0
## 295 0 0 0.0 0 0.0 0.0 0.0
## 296 0 0 0.0 0 0.0 0.0 0.0
## 297 0 0 0.0 0 0.0 0.0 0.0
## 298 0 0 0.0 0 0.0 0.0 0.0
## 299 0 0 0.0 0 0.0 0.0 0.0
## 300 0 0 0.0 0 0.0 0.0 0.0
## 301 0 0 0.0 0 0.0 0.0 0.0
## 302 0 0 0.0 0 0.0 0.0 0.0
## 303 0 0 0.0 0 0.0 0.0 0.0
## 304 0 0 0.0 0 0.0 0.0 0.0
## 305 0 0 0.0 0 0.0 0.0 0.0
## 306 0 0 0.0 0 0.0 0.0 0.0
## 307 0 0 0.0 0 0.0 24.0 2.0
## 308 0 41 12.0 119 0.0 48.0 2.0
## 309 0 0 0.0 0 0.0 0.0 0.0
## 310 0 0 0.0 0 0.0 0.0 0.0
## 311 0 0 0.0 0 0.0 0.0 0.0
## 312 0 0 0.0 0 0.0 0.0 0.0
## 313 0 0 0.0 0 0.0 0.0 0.0
## 314 0 0 0.0 0 0.0 0.0 0.0
## 315 0 0 0.0 0 0.0 0.0 0.0
## 316 0 0 0.0 0 0.0 0.0 0.0
## 317 0 27 15.0 37 0.0 0.0 0.0
## 318 0 0 0.0 0 0.0 0.0 1.0
## 319 0 0 0.0 0 0.0 0.0 0.0
## 320 0 0 0.0 0 0.0 0.0 0.0
## 321 0 0 0.0 0 0.0 0.0 0.0
## 322 0 0 0.0 0 0.0 0.0 0.0
## 323 0 0 0.0 0 0.0 0.0 0.0
## 324 0 0 0.0 0 0.0 0.0 0.0
## 325 0 0 0.0 0 0.0 0.0 0.0
## 326 0 0 0.0 0 0.0 0.0 0.0
## 327 0 0 0.0 0 0.0 0.0 0.0
## 328 0 0 0.0 0 0.0 0.0 0.0
## 329 0 0 0.0 0 0.0 0.0 0.0
## 330 0 0 0.0 0 0.0 0.0 0.0
## 331 0 0 0.0 0 0.0 0.0 0.0
## 332 0 0 0.0 0 0.0 0.0 0.0
## 333 0 0 18.0 48 0.0 0.0 0.0
## 334 0 0 0.0 0 0.0 0.0 0.0
## 335 0 0 0.0 0 0.0 0.0 0.0
## 336 0 0 0.0 0 0.0 0.0 0.0
## 337 0 31 10.0 45 0.0 48.0 5.0
## 338 0 37 36.0 38 0.0 14.0 12.0
## 339 0 33 14.0 48 0.0 33.0 2.0
## 340 0 18 17.0 19 0.0 16.0 15.0
## 341 0 0 0.0 0 0.0 0.0 0.0
## 342 0 0 0.0 0 0.0 0.0 0.0
## 343 0 0 0.0 0 0.0 0.0 0.0
## 344 0 0 0.0 0 0.0 0.0 0.0
## 345 0 0 0.0 0 0.0 0.0 0.0
## 346 0 0 0.0 0 0.0 0.0 0.0
## 347 0 0 0.0 0 0.0 0.0 0.0
## 348 0 0 0.0 0 0.0 0.0 0.0
## 349 0 0 0.0 0 0.0 0.0 0.0
## 350 0 34 0.0 0 0.0 54.0 0.0
## 351 0 34 0.0 0 0.0 48.0 0.0
## 352 0 0 0.0 0 0.0 0.0 0.0
## 353 0 0 0.0 0 0.0 0.0 0.0
## 354 0 0 0.0 0 0.0 0.0 0.0
## 355 0 0 0.0 0 0.0 0.0 0.0
## 356 0 0 0.0 0 0.0 0.0 0.0
## 357 0 0 0.0 0 0.0 0.0 0.0
## 358 0 0 0.0 0 0.0 0.0 0.0
## 359 0 0 0.0 0 0.0 0.0 0.0
## 360 0 36 8.0 72 0.0 48.0 24.0
## 361 0 0 0.0 0 0.0 0.0 0.0
## 362 0 0 0.0 0 0.0 48.0 24.0
## 363 0 0 0.0 0 36.0 0.0 24.0
## 364 0 0 0.0 0 0.0 0.0 0.0
## 365 0 0 0.0 0 0.0 0.0 0.0
## 366 0 0 0.0 0 0.0 0.0 0.0
## 367 0 0 0.0 0 0.0 0.0 0.0
## 368 0 0 0.0 0 0.0 0.0 0.0
## 369 0 0 0.0 0 0.0 0.0 0.0
## 370 0 0 0.0 0 0.0 0.0 0.0
## 371 0 0 0.0 0 0.0 0.0 0.0
## 372 0 0 0.0 0 0.0 0.0 0.0
## 373 0 0 0.0 0 0.0 0.0 0.0
## 374 0 0 0.0 0 0.0 0.0 0.0
## 375 0 0 0.0 0 0.0 0.0 0.0
## 376 0 0 0.0 0 0.0 0.0 0.0
## 377 0 0 0.0 0 0.0 0.0 0.0
## 378 0 0 0.0 0 0.0 0.0 0.0
## 379 0 0 0.0 0 0.0 0.0 0.0
## 380 0 0 0.0 0 0.0 0.0 0.0
## 381 0 0 0.0 0 0.0 0.0 0.0
## 382 0 0 0.0 0 0.0 0.0 0.0
## 383 0 0 0.0 0 0.0 0.0 0.0
## 384 0 0 0.0 0 0.0 0.0 0.0
## 385 0 0 0.0 0 0.0 0.0 0.0
## 386 0 0 0.0 0 0.0 0.0 0.0
## 387 0 0 0.0 0 0.0 0.0 0.0
## 388 0 0 24.0 36 0.0 0.0 0.0
## 389 0 0 0.0 0 0.0 0.0 0.0
## 390 0 0 0.0 0 0.0 0.0 0.0
## 391 0 0 0.0 0 0.0 0.0 0.0
## 392 0 0 0.0 0 0.0 0.0 0.0
## 393 0 0 0.0 0 0.0 0.0 0.0
## 394 0 0 0.0 0 0.0 0.0 0.0
## 395 0 0 0.0 0 0.0 0.0 0.0
## 396 0 0 0.0 0 0.0 0.0 0.0
## 397 0 0 0.0 0 0.0 0.0 0.0
## 398 0 0 0.0 0 0.0 0.0 0.0
## 399 0 0 0.0 0 0.0 0.0 0.0
## 400 0 0 0.0 0 0.0 0.0 0.0
## 401 0 0 0.0 0 0.0 0.0 0.0
## 402 0 0 0.0 0 0.0 0.0 0.0
## 403 0 0 0.0 0 0.0 0.0 0.0
## 404 0 0 0.0 0 0.0 0.0 0.0
## 405 0 0 0.0 0 0.0 0.0 24.0
## 406 0 0 0.0 0 0.0 0.0 24.0
## 407 0 0 0.0 0 0.0 0.0 24.0
## 408 0 0 0.0 0 0.0 0.0 0.0
## 409 0 0 0.0 0 0.0 0.0 0.0
## 410 0 0 0.0 0 0.0 0.0 0.0
## 411 0 0 0.0 0 0.0 0.0 0.0
## 412 0 0 0.0 0 0.0 0.0 0.0
## 413 0 0 0.0 0 0.0 72.0 48.0
## 414 0 0 0.0 0 0.0 0.0 0.0
## 415 0 0 0.0 0 0.0 0.0 0.0
## 416 0 0 0.0 0 0.0 0.0 0.0
## 417 0 0 0.0 0 0.0 0.0 0.0
## 418 0 0 0.0 0 0.0 0.0 0.0
## 419 0 0 0.0 0 0.0 0.0 0.0
## 420 0 0 0.0 0 0.0 0.0 0.0
## 421 0 0 0.0 0 0.0 0.0 0.0
## 422 0 0 0.0 0 0.0 0.0 0.0
## 423 0 0 0.0 0 0.0 0.0 0.0
## 424 0 0 0.0 0 0.0 0.0 0.0
## 425 0 0 0.0 0 0.0 0.0 0.0
## 426 0 0 0.0 0 0.0 0.0 0.0
## 427 0 0 24.0 36 0.0 0.0 24.0
## 428 30 0 7.0 72 0.0 0.0 0.0
## 429 0 0 0.0 0 0.0 0.0 0.0
## 430 0 0 0.0 0 0.0 0.0 0.0
## 431 0 0 0.0 0 0.0 0.0 0.0
## 432 0 0 0.0 0 0.0 0.0 0.0
## 433 0 0 0.0 0 0.0 0.0 0.0
## 434 0 0 0.0 0 0.0 0.0 0.0
## 435 0 0 0.0 0 0.0 0.0 0.0
## 436 0 0 0.0 0 0.0 0.0 0.0
## 437 0 0 0.0 0 0.0 0.0 0.0
## 438 0 0 0.0 0 0.0 0.0 0.0
## 439 0 0 0.0 0 0.0 0.0 0.0
## 440 0 0 0.0 0 0.0 0.0 0.0
## 441 0 0 0.0 0 0.0 0.0 0.0
## 442 0 0 0.0 0 0.0 0.0 0.0
## 443 0 0 0.0 0 0.0 0.0 0.0
## 444 0 0 0.0 0 0.0 0.0 0.0
## 445 0 0 0.0 0 0.0 0.0 0.0
## 446 0 0 0.0 0 0.0 0.0 0.0
## 447 0 0 0.0 0 0.0 0.0 0.0
## 448 0 0 0.0 0 0.0 0.0 0.0
## 449 0 0 0.0 0 0.0 0.0 0.0
## 450 0 0 4.0 54 49.0 0.0 5.0
## 451 0 0 0.0 0 0.0 24.0 5.0
## 452 0 0 0.0 0 55.2 48.0 1.0
## 453 0 31 0.0 0 0.0 32.0 0.0
## 454 0 0 0.0 0 0.0 0.0 0.0
## 455 0 0 0.0 0 0.0 0.0 0.0
## 456 0 0 0.0 0 0.0 0.0 0.0
## 457 0 0 0.0 0 0.0 0.0 0.0
## 458 0 0 0.0 0 0.0 0.0 0.0
## 459 0 3 2.0 96 0.0 0.0 0.0
## 460 0 0 0.0 0 0.0 0.0 0.0
## 461 0 0 0.0 0 0.0 0.0 0.0
## 462 0 0 0.0 0 0.0 0.0 0.0
## 463 0 0 0.0 0 0.0 0.0 0.0
## 464 0 0 0.0 0 0.0 0.0 0.0
## 465 39 39 20.0 65 0.0 0.0 0.0
## 466 0 0 0.0 0 0.0 0.0 0.0
## 467 0 0 0.0 0 0.0 0.0 0.0
## 468 0 0 0.0 0 0.0 0.0 0.0
## 469 0 0 0.0 0 0.0 0.0 0.0
## 470 48 48 1.0 168 0.0 0.0 0.0
## 471 0 0 0.0 0 0.0 0.0 0.0
## 472 0 34 16.0 43 0.0 28.0 10.0
## 473 0 40 24.0 46 0.0 34.0 23.0
## 474 0 22 16.0 50 0.0 34.0 19.0
## 475 0 28 22.0 30 0.0 17.0 8.0
## 476 0 33 15.0 49 0.0 48.0 4.0
## 477 0 37 31.0 38 0.0 33.0 6.0
## 478 0 0 24.0 48 0.0 0.0 0.0
## 479 0 0 0.0 0 0.0 0.0 0.0
## 480 0 0 0.0 0 0.0 0.0 0.0
## 481 0 0 0.0 0 0.0 0.0 0.0
## 482 32 0 15.0 55 37.0 0.0 24.0
## 483 39 0 11.0 64 44.0 0.0 1.0
## 484 0 0 0.0 0 0.0 0.0 0.0
## 485 0 34 0.0 0 0.0 0.0 0.0
## 486 0 0 0.0 0 0.0 0.0 0.0
## 487 0 0 0.0 0 0.0 0.0 0.0
## 488 0 0 0.0 0 0.0 0.0 0.0
## 489 0 0 0.0 0 0.0 0.0 0.0
## 490 0 0 0.0 0 0.0 0.0 0.0
## 491 0 0 0.0 0 0.0 0.0 0.0
## 492 0 0 0.0 0 0.0 0.0 0.0
## 493 0 0 0.0 0 0.0 0.0 0.0
## 494 0 0 0.0 0 0.0 0.0 0.0
## 495 32 0 25.0 45 0.0 0.0 0.0
## 496 0 0 0.0 0 0.0 0.0 0.0
## 497 0 0 24.0 72 0.0 60.0 48.0
## 498 0 0 0.0 0 0.0 0.0 0.0
## 499 0 0 0.0 0 0.0 0.0 0.0
## 500 0 0 0.0 0 0.0 0.0 0.0
## 501 0 0 0.0 0 0.0 0.0 0.0
## 502 0 0 0.0 0 0.0 0.0 0.0
## 503 0 0 0.0 0 0.0 0.0 0.0
## 504 0 0 0.0 0 0.0 0.0 0.0
## 505 0 0 0.0 0 0.0 0.0 0.0
## 506 0 0 0.0 0 0.0 0.0 0.0
## 507 0 0 0.0 0 0.0 0.0 0.0
## 508 0 0 0.0 0 0.0 96.0 24.0
## 509 0 0 0.0 0 0.0 0.0 0.0
## 510 0 0 0.0 0 0.0 0.0 0.0
## 511 0 0 0.0 0 0.0 48.0 24.0
## 512 0 0 24.0 0 0.0 48.0 24.0
## 513 0 0 0.0 0 0.0 48.0 24.0
## 514 0 0 0.0 0 0.0 0.0 0.0
## 515 0 0 0.0 0 0.0 0.0 0.0
## 516 0 0 0.0 0 0.0 0.0 0.0
## 517 0 0 0.0 0 0.0 0.0 0.0
## 518 0 0 0.0 0 0.0 0.0 0.0
## 519 0 0 0.0 0 0.0 0.0 0.0
## 520 0 0 0.0 0 0.0 0.0 0.0
## 521 0 0 0.0 0 0.0 0.0 0.0
## 522 0 0 0.0 0 0.0 0.0 0.0
## 523 0 0 0.0 0 0.0 0.0 0.0
## 524 0 0 0.0 0 0.0 0.0 0.0
## 525 0 0 0.0 0 0.0 0.0 0.0
## 526 0 0 0.0 0 0.0 0.0 0.0
## 527 0 0 0.0 0 0.0 0.0 0.0
## 528 0 0 0.0 0 0.0 0.0 0.0
## 529 0 31 3.0 49 0.0 27.0 6.0
## 530 0 30 8.0 62 0.0 0.0 0.0
## 531 0 32 0.0 0 0.0 42.0 2.0
## 532 0 0 0.0 0 0.0 36.0 0.2
## 533 0 0 0.0 0 0.0 0.0 0.0
## 534 0 0 0.0 0 0.0 0.0 0.0
## 535 0 0 0.0 0 0.0 0.0 0.0
## 536 0 0 0.0 0 0.0 0.0 0.0
## 537 0 0 0.0 0 0.0 0.0 0.0
## 538 0 0 0.0 0 0.0 0.0 0.0
## 539 0 0 0.0 0 0.0 0.0 0.0
## 540 0 31 0.0 0 0.0 48.0 0.0
## 541 0 0 0.0 0 0.0 0.0 0.0
## 542 0 0 0.0 0 0.0 0.0 0.0
## 543 0 0 0.0 0 0.0 0.0 0.0
## 544 0 0 0.0 0 0.0 0.0 0.0
## 545 0 0 0.0 0 0.0 0.0 0.0
## 546 0 0 0.0 0 0.0 0.0 0.0
## 547 0 34 4.0 58 36.0 0.0 24.0
## 548 0 34 2.0 68 0.0 0.0 0.0
## 549 0 0 0.0 0 0.0 0.0 12.0
## 550 0 0 0.0 0 0.0 0.0 0.0
## 551 0 0 0.0 0 0.0 0.0 0.0
## 552 0 0 0.0 0 0.0 0.0 0.0
## 553 0 0 0.0 0 0.0 0.0 0.0
## 554 0 0 0.0 0 0.0 0.0 0.0
## 555 0 0 0.0 0 0.0 0.0 0.0
## 556 0 0 0.0 0 0.0 0.0 0.0
## 557 0 0 6.0 36 0.0 0.0 0.0
## 558 0 0 0.0 0 0.0 0.0 0.0
## 559 0 0 0.0 0 0.0 0.0 0.0
## 560 0 0 0.0 0 0.0 0.0 0.0
## 561 0 0 0.0 0 0.0 0.0 0.0
## 562 0 0 0.0 0 0.0 0.0 0.0
## 563 0 0 0.0 0 0.0 0.0 0.0
## 564 0 0 0.0 0 0.0 0.0 0.0
## 565 0 0 0.0 0 0.0 0.0 0.0
## 566 0 0 0.0 0 0.0 0.0 0.0
## 567 0 0 0.0 0 0.0 0.0 0.0
## 568 0 0 0.0 0 0.0 0.0 0.0
## 569 0 0 0.0 0 0.0 0.0 0.0
## 570 0 0 0.0 0 0.0 0.0 0.0
## 571 0 0 0.0 0 0.0 0.0 0.0
## 572 0 0 0.0 0 0.0 0.0 0.0
## 573 0 0 0.0 0 0.0 0.0 0.0
## 574 0 0 0.0 0 0.0 0.0 0.0
## 575 0 0 0.0 0 0.0 0.0 0.0
## 576 0 0 0.0 0 0.0 0.0 0.0
## 577 0 0 0.0 0 0.0 0.0 0.0
## 578 0 0 0.0 0 0.0 0.0 0.0
## 579 0 0 0.0 0 0.0 0.0 0.0
## 580 0 0 0.0 0 0.0 0.0 0.0
## 581 0 0 0.0 0 0.0 0.0 0.0
## 582 0 0 0.0 0 0.0 0.0 0.0
## 583 0 0 0.0 0 0.0 0.0 0.0
## 584 0 0 0.0 0 0.0 0.0 0.0
## 585 0 0 0.0 0 0.0 0.0 0.0
## 586 0 0 0.0 0 0.0 0.0 0.0
## 587 0 0 0.0 0 0.0 0.0 0.0
## 588 0 0 0.0 0 0.0 0.0 0.0
## 589 0 0 0.0 0 0.0 0.0 0.0
## 590 0 0 0.0 0 0.0 0.0 0.0
## 591 0 0 0.0 0 0.0 0.0 0.0
## 592 0 0 0.0 0 0.0 0.0 0.0
## 593 0 0 0.0 0 0.0 0.0 0.0
## 594 0 0 0.0 0 0.0 0.0 0.0
## 595 0 0 0.0 0 0.0 0.0 0.0
## 596 0 0 0.0 0 0.0 0.0 0.0
## 597 0 0 0.0 0 0.0 0.0 0.0
## 598 0 0 0.0 0 0.0 0.0 0.0
## 599 0 0 0.0 0 0.0 0.0 0.0
## 600 0 0 0.0 0 0.0 0.0 0.0
## 601 0 0 0.0 0 0.0 0.0 0.0
## 602 0 0 0.0 0 0.0 0.0 0.0
## 603 0 0 0.0 0 0.0 0.0 0.0
## 604 0 0 0.0 0 0.0 0.0 0.0
## 605 0 0 0.0 0 0.0 0.0 0.0
## 606 0 0 0.0 0 0.0 0.0 0.0
## 607 0 0 0.0 0 0.0 0.0 0.0
## 608 0 0 0.0 0 0.0 0.0 0.0
## 609 0 0 0.0 0 0.0 0.0 0.0
## 610 0 0 0.0 0 0.0 0.0 0.0
## 611 0 0 0.0 0 0.0 0.0 0.0
## 612 0 0 0.0 0 0.0 0.0 0.0
## 613 0 0 0.0 0 0.0 0.0 0.0
## 614 0 0 0.0 0 0.0 0.0 0.0
## 615 0 0 0.0 0 0.0 0.0 0.0
## 616 0 0 0.0 0 0.0 0.0 0.0
## 617 0 0 0.0 0 0.0 0.0 0.0
## 618 0 0 0.0 0 0.0 0.0 0.0
## 619 0 0 0.0 0 0.0 0.0 0.0
## 620 0 0 0.0 0 0.0 0.0 0.0
## 621 0 0 0.0 0 0.0 0.0 0.0
## 622 0 0 0.0 0 0.0 0.0 0.0
## 623 0 0 0.0 0 0.0 0.0 0.0
## 624 0 0 0.0 0 0.0 0.0 0.0
## 625 0 0 0.0 0 0.0 0.0 0.0
## 626 0 0 0.0 0 0.0 0.0 0.0
## 627 0 0 0.0 0 0.0 0.0 0.0
## 628 0 0 0.0 0 0.0 0.0 0.0
## 629 0 0 0.0 0 0.0 0.0 0.0
## 630 0 0 0.0 0 0.0 0.0 0.0
## 631 0 0 0.0 0 0.0 0.0 0.0
## 632 0 0 0.0 0 0.0 0.0 0.0
## 633 0 0 0.0 0 0.0 0.0 0.0
## 634 0 0 0.0 0 0.0 0.0 0.0
## 635 0 0 0.0 0 0.0 0.0 0.0
## 636 0 0 0.0 0 0.0 0.0 0.0
## 637 0 0 0.0 0 0.0 0.0 0.0
## 638 0 0 0.0 0 0.0 0.0 0.0
## 639 0 0 0.0 0 0.0 0.0 0.0
## 640 0 0 0.0 0 0.0 0.0 0.0
## 641 0 0 0.0 0 0.0 0.0 0.0
## 642 0 0 0.0 0 0.0 0.0 0.0
## 643 0 0 0.0 0 0.0 0.0 0.0
## 644 0 0 21.0 34 0.0 0.0 12.0
## 645 0 0 0.0 0 0.0 0.0 0.0
## 646 0 0 0.0 0 0.0 0.0 0.0
## 647 0 0 0.0 0 0.0 0.0 0.0
## 648 0 0 0.0 0 0.0 0.0 0.0
## 649 0 0 0.0 0 0.0 0.0 0.0
## 650 0 0 0.0 0 0.0 0.0 0.0
## 651 0 0 0.0 0 0.0 0.0 0.0
## 652 0 0 0.0 0 0.0 0.0 0.0
## 653 0 0 0.0 0 0.0 0.0 0.0
## 654 0 0 0.0 0 0.0 0.0 0.0
## 655 0 0 0.0 0 0.0 0.0 0.0
## 656 0 0 0.0 0 0.0 0.0 0.0
## 657 0 0 0.0 0 0.0 0.0 0.0
## 658 0 0 0.0 0 0.0 0.0 0.0
## 659 0 0 0.0 0 0.0 0.0 0.0
## 660 0 0 0.0 0 0.0 0.0 0.0
## 661 0 0 0.0 0 0.0 0.0 0.0
## 662 0 0 0.0 0 0.0 0.0 0.0
## 663 0 0 0.0 0 0.0 0.0 0.0
## 664 0 0 0.0 0 0.0 0.0 0.0
## 665 0 0 0.0 0 0.0 0.0 0.0
## 666 0 0 0.0 0 0.0 0.0 0.0
## 667 0 0 0.0 0 0.0 0.0 0.0
## 668 0 0 0.0 0 0.0 0.0 0.0
## 669 0 0 0.0 0 0.0 0.0 0.0
## 670 0 0 0.0 0 0.0 0.0 0.0
## 671 0 0 0.0 0 0.0 0.0 0.0
## 672 0 0 0.0 0 0.0 0.0 0.0
## 673 0 0 0.0 0 0.0 0.0 0.0
## 674 0 0 0.0 0 0.0 0.0 0.0
## 675 0 0 0.0 0 0.0 0.0 0.0
## 676 0 0 0.0 0 0.0 0.0 0.0
## 677 0 0 0.0 0 0.0 0.0 0.0
## 678 0 0 0.0 0 0.0 0.0 0.0
## 679 0 0 0.0 0 0.0 0.0 12.0
## 680 0 0 0.0 0 0.0 0.0 0.0
## 681 0 31 1.0 86 0.0 0.0 72.0
## 682 0 0 0.0 0 41.0 0.0 0.0
## 683 0 0 0.0 0 0.0 0.0 0.0
## 684 0 0 0.0 0 36.0 0.0 24.0
## 685 0 42 20.0 58 0.0 0.0 0.0
## 686 0 0 0.0 0 0.0 0.0 0.0
## 687 0 0 0.0 0 0.0 48.0 24.0
## 688 0 0 0.0 0 0.0 0.0 0.0
## 689 0 0 0.0 0 0.0 0.0 0.0
## 690 0 0 0.0 0 0.0 0.0 0.0
## 691 0 0 0.0 0 0.0 0.0 0.0
## 692 0 0 0.0 0 0.0 0.0 0.0
## 693 0 0 0.0 0 0.0 0.0 0.0
## 694 0 0 0.0 0 0.0 0.0 0.0
## 695 0 0 0.0 0 0.0 0.0 0.0
## 696 0 0 0.0 0 0.0 0.0 0.0
## 697 0 0 0.0 0 0.0 0.0 0.0
## 698 0 0 0.0 0 0.0 0.0 0.0
## 699 0 0 0.0 0 0.0 0.0 0.0
## 700 0 0 0.0 0 0.0 0.0 0.0
## 701 0 0 0.0 0 0.0 0.0 0.0
## 702 0 0 0.0 0 0.0 0.0 0.0
## 703 0 0 0.0 0 0.0 0.0 0.0
## 704 0 0 0.0 0 0.0 0.0 0.0
## 705 0 0 0.0 0 0.0 0.0 0.0
## 706 0 0 0.0 0 0.0 0.0 0.0
## 707 0 0 0.0 0 0.0 0.0 0.0
## 708 0 0 14.5 0 0.0 0.0 24.0
## 709 0 0 0.0 0 0.0 0.0 24.0
## 710 0 0 0.0 0 0.0 0.0 0.0
## 711 0 0 0.0 0 0.0 0.0 0.0
## 712 0 0 0.0 0 0.0 0.0 0.0
## 713 0 0 0.0 0 0.0 0.0 0.0
## 714 0 0 0.0 0 0.0 0.0 0.0
## Range_L_D1 MeanA1 MedianA1 Range_Y_A1 Range_O_A1 Action1
## 1 0 NA NA 0.75 2.000 Unspecified
## 2 0 NA NA 0 0.000 Unspecified
## 3 0 NA NA 0 0.000 Unspecified
## 4 0 NA NA 0 0.000 Unspecified
## 5 0 NA NA 0 0.000 Unspecified
## 6 0 NA NA 0 0.000 Unspecified
## 7 0 NA NA 0 0.000 Unspecified
## 8 0 NA NA 0 0.000 Unspecified
## 9 0 NA NA 0 0.000 Unspecified
## 10 168 NA NA 0 0.000 Yes
## 11 0 NA NA 0 0.000 Yes
## 12 120 NA NA 0 0.000 Unspecified
## 13 33 NA NA 0 0.000 Unspecified
## 14 0 NA NA 0 0.000 Yes
## 15 0 NA NA 0 0.000 Yes
## 16 0 NA NA 0 0.000 Yes
## 17 0 NA NA 0 0.000 Yes
## 18 0 NA NA 0 0.000 Yes
## 19 135 NA NA 0 0.000 Yes
## 20 96 28.0000 NA 19 54.000 Unspecified
## 21 0 NA NA 0 0.000 Unspecified
## 22 0 NA NA 0 0.000 Unspecified
## 23 0 NA NA 0 0.000 Unspecified
## 24 0 NA NA 0 0.000 Unspecified
## 25 0 NA NA 0 0.000 Unspecified
## 26 0 NA NA 0 0.000 Unspecified
## 27 0 NA NA 0 0.000 Unspecified
## 28 0 NA NA 0 0.000 Unspecified
## 29 0 NA NA 0 0.000 Unspecified
## 30 0 NA NA 0 0.000 Unspecified
## 31 0 NA NA 0 0.000 Unspecified
## 32 0 NA NA 0 0.000 Unspecified
## 33 0 NA NA 0 0.000 Unspecified
## 34 59 NA NA 0 0.000 Yes
## 35 0 NA NA 22 61.000 Yes
## 36 0 NA NA 0 0.000 Unspecified
## 37 0 NA NA 0 0.000 Unspecified
## 38 0 NA NA 18 28.000 Unspecified
## 39 0 NA NA 0 0.000 Unspecified
## 40 100 NA NA 13 40.000 Unspecified
## 41 0 NA NA 0 0.000 Yes
## 42 0 NA NA 15 81.000 Unspecified
## 43 0 NA NA 1 63.000 Unspecified
## 44 0 NA NA 15 18.000 Unspecified
## 45 0 NA NA 33 48.000 Unspecified
## 46 0 17.0000 NA 11 74.000 Yes
## 47 84 33.0000 36 14 53.000 Yes
## 48 0 NA NA 0 0.000 Yes
## 49 0 NA NA 0 0.000 Unspecified
## 50 0 NA NA 0 0.000 Unspecified
## 51 0 NA NA 0 0.000 Yes
## 52 0 NA NA 0 0.000 Unspecified
## 53 0 NA NA 0 0.000 Unspecified
## 54 0 NA NA 0 0.000 Unspecified
## 55 0 NA NA 0 0.000 Unspecified
## 56 0 NA NA 0 0.000 Unspecified
## 57 0 NA NA 0 0.000 Unspecified
## 58 0 NA NA 0 0.000 Unspecified
## 59 0 NA NA 0 0.000 Unspecified
## 60 0 NA NA 0 0.000 Unspecified
## 61 120 NA NA 0 0.000 Unspecified
## 62 216 NA 39 5 77.000 Yes
## 63 0 NA NA 0 0.000 Unspecified
## 64 0 NA NA 0 0.000 Yes
## 65 0 NA NA 0 0.000 Yes
## 66 0 NA NA 0 0.000 Yes
## 67 0 NA NA 0 0.000 Yes
## 68 0 NA NA 0 0.000 Yes
## 69 0 NA NA 0 0.000 Unspecified
## 70 0 NA NA 0 0.000 Unspecified
## 71 0 NA NA 0 0.000 Unspecified
## 72 0 NA NA 0 0.000 Unspecified
## 73 0 NA NA 0 0.000 Unspecified
## 74 0 NA NA 0 0.000 Unspecified
## 75 0 NA NA 0 0.000 Unspecified
## 76 0 NA NA 0 0.000 Unspecified
## 77 0 NA NA 0 0.000 Unspecified
## 78 0 NA NA 0 0.000 Unspecified
## 79 0 NA NA 0 0.000 Unspecified
## 80 0 NA NA 0 0.000 Unspecified
## 81 0 NA NA 0 0.000 Unspecified
## 82 0 NA NA 0 0.000 Unspecified
## 83 0 NA NA 0 0.000 Unspecified
## 84 0 NA NA 0 0.000 Unspecified
## 85 0 NA NA 0 0.000 Unspecified
## 86 168 NA NA 0 0.000 Unspecified
## 87 96 NA NA 0 0.000 Unspecified
## 88 168 NA NA 0 0.000 Yes
## 89 0 NA NA 0 0.000 Unspecified
## 90 0 NA NA 0 0.000 Yes
## 91 0 NA NA 0 0.000 Unspecified
## 92 0 NA NA 0 0.000 Unspecified
## 93 360 NA NA 0 46.000 Yes
## 94 0 NA NA 0 0.000 Unspecified
## 95 0 NA NA 0 0.000 Unspecified
## 96 0 NA NA 0 0.000 Unspecified
## 97 0 NA NA 0 0.000 Yes
## 98 0 NA NA 0 0.000 Unspecified
## 99 0 NA NA 0 0.000 Unspecified
## 100 0 NA NA 0 0.000 Unspecified
## 101 0 NA NA 0 0.000 Unspecified
## 102 0 NA NA 0 0.000 Unspecified
## 103 0 NA NA 0 0.000 Unspecified
## 104 0 NA 47 43 54.000 Yes
## 105 0 43.0000 NA 24 56.000 Yes
## 106 0 NA NA 0 0.000 Yes
## 107 0 NA NA 0 0.000 Unspecified
## 108 0 NA NA 0 0.000 Unspecified
## 109 0 NA NA 0 0.000 Unspecified
## 110 0 NA NA 0 0.000 Unspecified
## 111 0 NA NA 7 40.000 Unspecified
## 112 0 NA NA 25 51.000 Unspecified
## 113 0 NA NA 18 60.000 Unspecified
## 114 0 NA NA 12 80.000 Unspecified
## 115 0 NA NA 0 0.000 Yes
## 116 0 NA NA 0 0.000 Unspecified
## 117 0 NA NA 0 0.000 Unspecified
## 118 0 NA NA 0 0.000 Unspecified
## 119 0 NA NA 0 0.000 Unspecified
## 120 0 NA NA 0 0.000 Unspecified
## 121 0 NA NA 0 0.000 Unspecified
## 122 0 NA NA 0 0.000 Unspecified
## 123 0 NA NA 0 0.000 Yes
## 124 0 NA NA 0 0.000 Yes
## 125 0 NA NA 0 0.000 Unspecified
## 126 0 NA NA 0 0.000 Unspecified
## 127 0 NA NA 0 0.000 Unspecified
## 128 0 NA NA 0 0.000 Unspecified
## 129 0 NA NA 0 0.000 Unspecified
## 130 0 NA NA 0 0.000 Unspecified
## 131 0 NA NA 0 0.000 Unspecified
## 132 0 NA NA 0 0.000 Yes
## 133 0 NA NA 0 0.000 Yes
## 134 120 NA 36 22 65.000 Yes
## 135 0 2.0000 NA 0 0.000 Yes
## 136 0 NA NA 0 0.000 Yes
## 137 0 NA NA 0 0.000 Yes
## 138 0 NA NA 0 0.000 Unspecified
## 139 0 NA NA 0 0.000 Unspecified
## 140 0 NA NA 0 0.000 Unspecified
## 141 0 NA NA 0 0.000 Unspecified
## 142 0 NA NA 0 0.000 Yes
## 143 0 NA 79 23 84.000 Yes
## 144 0 NA NA 0 0.000 Yes
## 145 72 NA NA 0 0.000 Yes
## 146 0 NA NA 0 0.000 Yes
## 147 0 NA NA 0 0.000 Unspecified
## 148 384 NA NA 0 0.000 Yes
## 149 0 72.0000 NA 0 0.000 Yes
## 150 0 NA NA 0 0.000 Yes
## 151 48 NA NA 0 0.000 Unspecified
## 152 0 1.7500 NA 0 0.000 Unspecified
## 153 0 9.0000 NA 0 0.000 Unspecified
## 154 0 86.6700 NA 0 0.000 Unspecified
## 155 0 4.0000 NA 0 0.000 Unspecified
## 156 0 69.0000 NA 0 0.000 Unspecified
## 157 0 11.0000 NA 0 0.000 Unspecified
## 158 0 83.0000 NA 0 0.000 Unspecified
## 159 0 18.0000 NA 0 0.000 Unspecified
## 160 0 82.5000 NA 0 0.000 Unspecified
## 161 0 1.5000 NA 0 0.000 Unspecified
## 162 0 NA NA 0 0.000 Yes
## 163 0 NA NA 0 0.000 Yes
## 164 0 48.0000 NA 0 0.000 Unspecified
## 165 0 NA NA 0 0.000 Unspecified
## 166 0 NA NA 0 0.000 Unspecified
## 167 0 NA NA 0 0.000 Unspecified
## 168 0 NA NA 0 0.000 Unspecified
## 169 0 NA NA 0 0.000 Unspecified
## 170 0 NA NA 0 0.000 Unspecified
## 171 0 NA NA 0 0.000 Unspecified
## 172 0 NA NA 0 0.000 Unspecified
## 173 0 NA NA 0 0.000 Unspecified
## 174 0 NA NA 0 0.000 Unspecified
## 175 0 NA NA 0 0.000 Yes
## 176 72 NA NA 0 0.000 Unspecified
## 177 72 NA NA 0 0.000 Unspecified
## 178 36 NA NA 0 0.000 Unspecified
## 179 0 NA NA 0 0.000 Yes
## 180 0 NA NA 0 0.000 Yes
## 181 0 NA NA 0 0.000 Yes
## 182 0 NA NA 0 0.000 Yes
## 183 0 NA NA 0 0.000 Yes
## 184 0 NA NA 0 0.000 Unspecified
## 185 0 56.0000 NA 0 0.000 Yes
## 186 0 NA NA 0 0.000 Yes
## 187 0 NA NA 0 0.000 Yes
## 188 240 NA NA 0 0.000 Yes
## 189 0 NA NA 0 0.000 Unspecified
## 190 0 NA NA 0 0.000 Unspecified
## 191 0 NA NA 0 0.000 Unspecified
## 192 72 NA NA 0 0.000 Unspecified
## 193 0 NA NA 0 0.000 Unspecified
## 194 0 NA NA 0 0.000 Unspecified
## 195 133 NA 43 6 83.000 Unspecified
## 196 0 NA NA 0 0.000 Yes
## 197 0 NA NA 1 61.000 Yes
## 198 69 NA NA 0 0.000 Yes
## 199 0 NA NA 0 0.000 Unspecified
## 200 0 NA NA 0 0.000 Unspecified
## 201 0 NA NA 0 0.000 Unspecified
## 202 0 NA NA 14 52.000 Unspecified
## 203 0 NA NA 0 0.000 Unspecified
## 204 0 NA NA 22 26.000 Unspecified
## 205 0 NA NA 1 78.000 Unspecified
## 206 0 NA NA 10 11.000 Unspecified
## 207 0 NA NA 23 55.000 Unspecified
## 208 0 NA NA 15 17.000 Unspecified
## 209 0 NA NA 22 23.000 Unspecified
## 210 0 NA NA 7 10.000 Unspecified
## 211 0 NA NA 0 0.000 Unspecified
## 212 0 NA NA 0 0.000 Unspecified
## 213 0 NA NA 0 0.000 Unspecified
## 214 0 NA NA 0 0.000 Unspecified
## 215 0 NA NA 0 0.000 Unspecified
## 216 0 NA NA 0 0.000 Unspecified
## 217 0 NA NA 0 0.000 Unspecified
## 218 0 NA NA 0 0.000 Unspecified
## 219 0 NA NA 0 0.000 Unspecified
## 220 0 NA NA 0 0.000 Unspecified
## 221 0 NA NA 0 0.000 Unspecified
## 222 0 NA NA 0 0.000 Unspecified
## 223 0 NA NA 0 0.000 Unspecified
## 224 0 NA NA 0 0.000 Unspecified
## 225 0 NA NA 0 0.000 Unspecified
## 226 0 NA NA 0 0.000 Unspecified
## 227 0 NA NA 0 0.000 Unspecified
## 228 0 NA NA 0 0.000 Unspecified
## 229 0 NA NA 0 0.000 Unspecified
## 230 0 NA NA 0 0.000 Unspecified
## 231 0 NA NA 0 0.000 Unspecified
## 232 0 NA NA 0 0.000 Unspecified
## 233 0 NA NA 0 0.000 Unspecified
## 234 0 NA NA 0 0.000 Unspecified
## 235 0 NA NA 0 0.000 Unspecified
## 236 0 NA NA 0 0.000 Unspecified
## 237 0 NA NA 0 0.000 Unspecified
## 238 0 NA NA 0 0.000 Unspecified
## 239 0 NA NA 0 0.000 Unspecified
## 240 0 NA NA 0 0.000 Unspecified
## 241 0 NA NA 0 0.000 Unspecified
## 242 0 46.0000 45 1 83.000 Yes
## 243 168 68.0000 NA 50 85.000 Yes
## 244 0 NA NA 0 0.000 Unspecified
## 245 0 NA NA 0 0.000 Unspecified
## 246 0 NA NA 0 0.000 Unspecified
## 247 0 NA NA 0 0.000 Unspecified
## 248 0 NA NA 0 0.000 Unspecified
## 249 0 NA NA 0 0.000 Unspecified
## 250 0 NA NA 0 0.000 Unspecified
## 251 0 NA NA 0 0.000 Unspecified
## 252 0 NA NA 0 0.000 Unspecified
## 253 0 NA NA 0 0.000 Unspecified
## 254 0 NA NA 0 0.000 Unspecified
## 255 0 NA NA 0 0.000 Unspecified
## 256 0 NA NA 0 0.000 Unspecified
## 257 0 NA NA 0 0.000 Unspecified
## 258 0 NA NA 0 0.000 Unspecified
## 259 0 NA NA 0 0.000 Unspecified
## 260 0 NA NA 0 0.000 Unspecified
## 261 0 NA NA 0 0.000 Unspecified
## 262 168 NA NA 0 0.000 Unspecified
## 263 168 NA NA 0 0.000 Unspecified
## 264 0 NA NA 0 0.000 Yes
## 265 0 NA 27 8 70.000 Yes
## 266 0 NA NA 0 0.000 Unspecified
## 267 72 83.0000 NA 0 0.000 Yes
## 268 0 NA NA 0 0.000 Unspecified
## 269 0 NA NA 0 0.000 Unspecified
## 270 0 NA NA 0 0.000 Unspecified
## 271 0 NA NA 0 0.000 Unspecified
## 272 0 NA NA 0 0.000 Unspecified
## 273 0 NA NA 0 0.000 Unspecified
## 274 0 NA NA 0 0.000 Unspecified
## 275 0 NA NA 0 0.000 Unspecified
## 276 0 NA NA 0 0.000 Unspecified
## 277 0 NA NA 0 0.000 Unspecified
## 278 0 NA NA 0 0.000 Unspecified
## 279 0 NA NA 0 0.000 Unspecified
## 280 0 25.0000 NA 0 0.000 Yes
## 281 0 NA NA 0 0.000 Unspecified
## 282 0 NA NA 0 0.000 Unspecified
## 283 0 NA NA 0 0.000 Unspecified
## 284 0 NA NA 0 0.000 Unspecified
## 285 0 NA NA 0 0.000 Unspecified
## 286 0 NA NA 0 0.000 Unspecified
## 287 120 NA NA 0 0.000 Yes
## 288 96 NA NA 0 0.000 Yes
## 289 60 NA NA 0 0.000 Yes
## 290 0 NA NA 0 0.000 Unspecified
## 291 0 NA NA 0 0.000 Unspecified
## 292 0 76.0000 NA 0 0.000 Yes
## 293 0 NA NA 0 0.000 Yes
## 294 0 NA NA 0 0.000 Unspecified
## 295 0 NA NA 0 0.000 Yes
## 296 0 NA NA 0 0.000 Unspecified
## 297 0 NA NA 0 0.000 Unspecified
## 298 0 NA NA 0 0.000 Unspecified
## 299 0 NA NA 0 0.000 Unspecified
## 300 0 NA NA 0 0.000 Unspecified
## 301 0 NA NA 0 0.000 Unspecified
## 302 0 NA NA 0 0.000 Unspecified
## 303 0 NA NA 0 0.000 Unspecified
## 304 0 NA NA 0 0.000 Unspecified
## 305 0 NA NA 0 0.000 Unspecified
## 306 0 NA NA 0 0.000 Unspecified
## 307 72 NA 26 19 66.000 Yes
## 308 120 NA NA 0 0.000 Unspecified
## 309 0 NA NA 0 0.000 Unspecified
## 310 0 NA NA 0 0.000 Unspecified
## 311 0 NA NA 0 0.000 Unspecified
## 312 0 NA NA 0 0.000 Unspecified
## 313 0 NA NA 0 0.000 Unspecified
## 314 0 NA NA 16 101.000 Yes
## 315 0 NA NA 0 0.000 Yes
## 316 0 81.0000 NA 67 91.000 Yes
## 317 0 NA NA 0 0.000 Yes
## 318 96 NA NA 0 0.000 Unspecified
## 319 0 NA NA 0 0.000 Unspecified
## 320 0 NA NA 0 0.000 Unspecified
## 321 0 NA NA 0 0.000 Unspecified
## 322 0 NA NA 0 0.000 Unspecified
## 323 0 NA NA 0 0.000 Unspecified
## 324 0 NA NA 0 0.000 Unspecified
## 325 0 NA NA 0 0.000 Unspecified
## 326 0 NA NA 0 0.000 Unspecified
## 327 0 NA NA 0 0.000 Unspecified
## 328 0 NA NA 0 0.000 Unspecified
## 329 0 NA NA 0 0.000 Unspecified
## 330 0 NA NA 0 0.000 Unspecified
## 331 0 NA NA 0 0.000 Unspecified
## 332 0 NA NA 0 0.000 Unspecified
## 333 0 NA NA 0 0.000 Yes
## 334 0 NA NA 0 0.000 Unspecified
## 335 0 NA NA 0 0.000 Unspecified
## 336 0 NA NA 0 0.000 Unspecified
## 337 84 NA 5 10 70.000 Unspecified
## 338 16 NA 54 52 56.000 Unspecified
## 339 171 NA 47 24 79.000 Unspecified
## 340 16 NA 31 26 36.000 Unspecified
## 341 0 43.0000 NA 18 70.000 Yes
## 342 0 NA NA 17 67.000 Unspecified
## 343 0 NA NA 17 43.000 Unspecified
## 344 0 NA NA 20 54.000 Unspecified
## 345 0 NA NA 28 40.000 Unspecified
## 346 0 NA NA 11 76.000 Unspecified
## 347 0 NA NA 25 97.000 Unspecified
## 348 0 NA NA 7 40.000 Unspecified
## 349 0 NA NA 0 0.000 Unspecified
## 350 0 NA NA 0 0.000 Yes
## 351 0 NA NA 0 0.000 Yes
## 352 0 NA NA 0 0.000 Unspecified
## 353 0 NA NA 0 0.000 Unspecified
## 354 0 NA NA 0 0.000 Unspecified
## 355 0 NA NA 0 0.000 Unspecified
## 356 0 NA NA 0 0.000 Unspecified
## 357 0 NA NA 0 0.000 Unspecified
## 358 0 NA NA 0 0.000 Unspecified
## 359 0 19.0000 NA 18 23.000 Unspecified
## 360 168 NA 6 5 92.000 Yes
## 361 0 NA NA 0 0.000 Unspecified
## 362 96 NA 53 0 0.000 Yes
## 363 72 6.0000 NA 0 0.000 Yes
## 364 0 NA NA 0 0.000 Unspecified
## 365 0 8.0000 NA 0 0.000 Unspecified
## 366 0 NA NA 0 0.000 Unspecified
## 367 0 NA NA 0 0.000 Yes
## 368 0 NA NA 0 0.000 Yes
## 369 0 NA NA 0 0.000 Unspecified
## 370 0 NA NA 0 0.000 Unspecified
## 371 0 NA NA 0 0.000 Unspecified
## 372 0 NA NA 0 0.000 Unspecified
## 373 0 NA NA 0 0.000 Unspecified
## 374 0 NA NA 0 0.000 Unspecified
## 375 0 NA NA 0 0.000 Unspecified
## 376 0 NA NA 0 0.000 Unspecified
## 377 0 NA NA 0 0.000 Unspecified
## 378 0 NA NA 0 0.000 Unspecified
## 379 0 NA NA 0 0.000 Unspecified
## 380 0 NA NA 0 0.000 Unspecified
## 381 0 NA NA 0 0.000 Unspecified
## 382 0 NA NA 0 0.000 Unspecified
## 383 0 NA NA 0 0.000 Unspecified
## 384 0 NA NA 0 0.000 Yes
## 385 0 NA NA 0 0.000 Unspecified
## 386 0 NA NA 0 0.000 Unspecified
## 387 0 NA NA 0.167 0.833 Unspecified
## 388 0 NA NA 0 0.000 Yes
## 389 0 NA NA 0 0.000 Unspecified
## 390 0 NA NA 0 0.000 Unspecified
## 391 0 NA NA 0 0.000 Unspecified
## 392 0 NA NA 0 0.000 Yes
## 393 0 NA NA 0 0.000 Yes
## 394 0 NA NA 0 0.000 Unspecified
## 395 0 NA NA 0 0.000 Unspecified
## 396 0 NA NA 0 0.000 Unspecified
## 397 0 NA NA 0 0.000 Unspecified
## 398 0 NA NA 0 0.000 Unspecified
## 399 0 NA NA 0 0.000 Unspecified
## 400 0 NA NA 0 0.000 Unspecified
## 401 0 NA NA 0 0.000 Unspecified
## 402 0 NA NA 0 0.000 Yes
## 403 0 NA NA 0 0.000 Yes
## 404 0 NA NA 0 0.000 Unspecified
## 405 36 NA NA 0 0.000 Unspecified
## 406 48 NA NA 0 0.000 Yes
## 407 48 NA NA 0 0.000 Yes
## 408 0 NA NA 0 0.000 Yes
## 409 0 NA 12 0 0.000 Yes
## 410 0 NA NA 0 0.000 Unspecified
## 411 0 NA NA 0 0.000 Unspecified
## 412 0 NA NA 0 0.000 Unspecified
## 413 144 NA 5 0.333 22.000 Yes
## 414 0 NA NA 0 0.000 Yes
## 415 0 NA 85 41 102.000 Yes
## 416 0 NA NA 0 0.000 Yes
## 417 0 NA NA 0 0.000 Yes
## 418 0 NA NA 0 0.000 Unspecified
## 419 0 NA NA 0 0.000 Unspecified
## 420 0 NA NA 0 0.000 Yes
## 421 0 NA NA 0 0.000 Yes
## 422 0 NA NA 0 0.000 Unspecified
## 423 0 NA NA 0 0.000 Unspecified
## 424 0 NA NA 0 0.000 Unspecified
## 425 0 NA NA 0 0.000 Yes
## 426 0 NA NA 0 0.000 Yes
## 427 72 13.0000 NA 0 0.000 Yes
## 428 0 9.0000 NA 4 12.000 Yes
## 429 0 NA NA 0 0.000 Unspecified
## 430 0 NA NA 0 0.000 Unspecified
## 431 0 NA NA 0 0.000 Unspecified
## 432 0 NA NA 0 0.000 Unspecified
## 433 0 NA NA 0 0.000 Unspecified
## 434 0 NA NA 0 0.000 Unspecified
## 435 0 NA NA 0 0.000 Unspecified
## 436 0 NA NA 0 0.000 Unspecified
## 437 0 NA NA 0 0.000 Unspecified
## 438 0 NA NA 0 0.000 Unspecified
## 439 0 NA NA 0 0.000 Unspecified
## 440 0 NA NA 0 0.000 Unspecified
## 441 0 NA NA 0 0.000 Unspecified
## 442 0 NA NA 0 0.000 Unspecified
## 443 0 NA NA 0 0.000 Unspecified
## 444 0 NA NA 0 0.000 Unspecified
## 445 0 NA NA 0 0.000 Unspecified
## 446 0 NA NA 0 0.000 Unspecified
## 447 0 NA NA 0 0.000 Unspecified
## 448 0 NA NA 0 0.000 Unspecified
## 449 0 NA NA 0 0.000 Unspecified
## 450 156 NA NA 0 0.000 Unspecified
## 451 144 NA NA 0 0.000 Yes
## 452 312 NA NA 3 0.000 Yes
## 453 0 NA 9 0.75 73.000 Yes
## 454 0 NA NA 0 0.000 Unspecified
## 455 0 NA NA 0 0.000 Unspecified
## 456 0 NA NA 0 0.000 Unspecified
## 457 0 NA NA 0 0.000 Unspecified
## 458 0 NA NA 0 0.000 Unspecified
## 459 0 NA NA 0 0.000 Unspecified
## 460 0 NA NA 0 0.000 Unspecified
## 461 0 NA NA 0 0.000 Unspecified
## 462 0 NA NA 0 0.000 Unspecified
## 463 0 NA NA 0 0.000 Unspecified
## 464 0 NA NA 0 0.000 Unspecified
## 465 0 NA NA 0 0.000 Yes
## 466 0 NA NA 0 0.000 Unspecified
## 467 0 NA NA 0 0.000 Unspecified
## 468 0 NA NA 0 0.000 Unspecified
## 469 0 26.0000 NA 3 58.000 Yes
## 470 0 19.0000 12 0 0.000 Yes
## 471 0 NA NA 0 0.000 Unspecified
## 472 76 NA 32 26 59.000 Unspecified
## 473 111 NA 47 33 62.000 Unspecified
## 474 77 NA 24 23 53.000 Unspecified
## 475 36 NA 24 23 30.000 Unspecified
## 476 87 NA 42 16 60.000 Unspecified
## 477 73 NA 57 45 60.000 Unspecified
## 478 0 NA NA 0 0.000 Unspecified
## 479 0 NA NA 0 0.000 Yes
## 480 0 NA NA 0 0.000 Yes
## 481 0 NA NA 0 0.000 Yes
## 482 72 39.0000 NA 13 83.000 Yes
## 483 120 34.0000 NA 0 0.000 Yes
## 484 0 NA NA 0 0.000 Yes
## 485 0 NA NA 0 0.000 Yes
## 486 0 NA 13 0 0.000 Yes
## 487 0 NA NA 0 0.000 Unspecified
## 488 0 NA NA 0 0.000 Unspecified
## 489 0 NA NA 0 0.000 Yes
## 490 0 NA NA 0 0.000 Unspecified
## 491 0 NA NA 0 0.000 Unspecified
## 492 0 NA NA 0 0.000 Yes
## 493 0 NA NA 0 0.000 Yes
## 494 0 NA NA 0 0.000 Yes
## 495 0 NA 11 9 50.000 Unspecified
## 496 0 NA 2 0 0.000 Unspecified
## 497 120 13.0000 NA 7 47.000 Yes
## 498 0 39.0000 NA 0 88.000 Yes
## 499 0 66.0000 NA 0 0.000 Unspecified
## 500 0 84.2000 NA 0 0.000 Unspecified
## 501 0 NA NA 0 0.000 Unspecified
## 502 0 2.2000 NA 0 0.000 Unspecified
## 503 0 0.0833 NA 0 0.000 Unspecified
## 504 0 2.0000 NA 0 0.000 Unspecified
## 505 0 NA NA 0 0.000 Yes
## 506 0 74.5000 NA 3 months 97.000 Yes
## 507 0 NA NA 0 0.000 Unspecified
## 508 1248 NA 4 <1 52.000 Yes
## 509 0 1.2000 NA 5 months 8.000 Unspecified
## 510 0 NA NA 0 0.000 Unspecified
## 511 336 NA NA 0 0.000 Yes
## 512 192 NA 37 3 89.000 Yes
## 513 216 NA 37 15 84.000 Yes
## 514 0 NA NA 0 0.000 Unspecified
## 515 0 NA NA 0 0.000 Yes
## 516 0 NA NA 0 0.000 Unspecified
## 517 0 NA NA 0 0.000 Unspecified
## 518 0 NA NA 0 0.000 Unspecified
## 519 0 NA NA 0 0.000 Unspecified
## 520 0 NA NA 0 0.000 Unspecified
## 521 0 NA NA 0 0.000 Unspecified
## 522 0 NA NA 0 0.000 Unspecified
## 523 0 NA NA 0 0.000 Unspecified
## 524 0 NA NA 0 0.000 Yes
## 525 0 NA NA 0 0.000 Unspecified
## 526 0 NA NA 26 90.000 Yes
## 527 0 NA NA 0 0.000 Yes
## 528 0 NA NA 0 0.000 Unspecified
## 529 120 NA NA 0 0.000 Unspecified
## 530 0 NA 7 0.417 61.000 Yes
## 531 172 NA 4 1 92.000 Yes
## 532 96 NA NA 3 66.000 Yes
## 533 0 NA NA 0 0.000 Unspecified
## 534 0 NA NA 0 0.000 Unspecified
## 535 0 NA NA 0 0.000 Unspecified
## 536 0 NA NA 0 0.000 Unspecified
## 537 0 NA NA 0 0.000 Unspecified
## 538 0 NA NA 0 0.000 Yes
## 539 0 43.0000 NA 23 68.000 Yes
## 540 0 NA 39 17 63.000 Yes
## 541 0 NA NA 0 0.000 Unspecified
## 542 0 NA NA 0 0.000 Unspecified
## 543 0 NA NA 0 0.000 Unspecified
## 544 0 NA NA 0 0.000 Unspecified
## 545 0 NA NA 0 0.000 Unspecified
## 546 0 NA NA 0 0.000 Unspecified
## 547 72 NA 45 3 88.000 Yes
## 548 0 NA NA 0 0.000 Unspecified
## 549 24 NA NA 0 0.000 Yes
## 550 0 NA NA 0 0.000 Yes
## 551 0 NA NA 0 0.000 Yes
## 552 0 NA NA 0 0.000 Yes
## 553 0 NA NA 0 0.000 Unspecified
## 554 0 NA NA 0 0.000 Unspecified
## 555 0 NA NA 0 0.000 Unspecified
## 556 0 NA NA 0 0.000 Yes
## 557 0 NA NA 0 0.000 Unspecified
## 558 0 NA NA 0 0.000 Unspecified
## 559 0 NA NA 0 0.000 Unspecified
## 560 0 NA NA 0 0.000 Yes
## 561 0 NA NA 0 0.000 Unspecified
## 562 0 NA NA 18 22.000 Unspecified
## 563 0 NA NA 18 22.000 Unspecified
## 564 0 NA NA 38 44.000 Unspecified
## 565 0 NA NA 20 26.000 Unspecified
## 566 0 NA NA 6 39.000 Unspecified
## 567 0 NA NA 20 60.000 Unspecified
## 568 0 NA NA 16 39.000 Unspecified
## 569 0 NA NA 17 48.000 Unspecified
## 570 0 NA NA 11 38.000 Unspecified
## 571 0 NA NA 24 45.000 Unspecified
## 572 0 NA NA 21 66.000 Unspecified
## 573 0 NA NA 26 42.000 Unspecified
## 574 0 NA NA 30 57.000 Unspecified
## 575 0 NA NA 7 8.000 Unspecified
## 576 0 NA NA 34 68.000 Unspecified
## 577 0 NA NA 24 35.000 Unspecified
## 578 0 NA NA 24 35.000 Unspecified
## 579 0 NA NA 20 80.000 Unspecified
## 580 0 NA NA 16 54.000 Unspecified
## 581 0 NA NA 6 59.000 Unspecified
## 582 0 NA NA 13 14.000 Unspecified
## 583 0 NA NA 18 40.000 Unspecified
## 584 0 NA NA 28 50.000 Unspecified
## 585 0 NA NA 21 70.000 Unspecified
## 586 0 NA NA 21 59.000 Unspecified
## 587 0 NA NA 1 5.000 Unspecified
## 588 0 NA NA 1 41.000 Unspecified
## 589 0 NA NA 20 103.000 Unspecified
## 590 0 NA NA 23 57.000 Unspecified
## 591 0 NA NA 1 86.000 Unspecified
## 592 0 NA NA 6 12.000 Unspecified
## 593 0 NA NA 0 0.000 Yes
## 594 0 NA NA 0 0.000 Unspecified
## 595 0 NA NA 0 0.000 Unspecified
## 596 0 NA NA 0 0.000 Unspecified
## 597 0 NA NA 0 0.000 Unspecified
## 598 0 NA NA 0 0.000 Unspecified
## 599 0 NA NA 0 0.000 Unspecified
## 600 0 NA NA 0 0.000 Unspecified
## 601 0 NA NA 0 0.000 Unspecified
## 602 0 NA NA 0 0.000 Unspecified
## 603 0 NA NA 0 0.000 Unspecified
## 604 0 NA NA 0 0.000 Unspecified
## 605 0 NA NA 0 0.000 Unspecified
## 606 0 NA NA 0 0.000 Unspecified
## 607 0 NA NA 0 0.000 Unspecified
## 608 0 NA NA 0 0.000 Unspecified
## 609 0 NA NA 0 0.000 Unspecified
## 610 0 NA NA 0 0.000 Unspecified
## 611 0 NA NA 0 0.000 Unspecified
## 612 0 NA NA 0 0.000 Unspecified
## 613 0 NA NA 0 0.000 Unspecified
## 614 0 NA NA 0 0.000 Unspecified
## 615 0 NA NA 0 0.000 Unspecified
## 616 0 NA NA 0 0.000 Unspecified
## 617 0 NA NA 0 0.000 Unspecified
## 618 0 NA NA 0 0.000 Unspecified
## 619 0 NA NA 0 0.000 Unspecified
## 620 0 NA NA 0 0.000 Unspecified
## 621 0 NA NA 0 0.000 Unspecified
## 622 0 NA NA 0 0.000 Unspecified
## 623 0 NA NA 0 0.000 Unspecified
## 624 0 NA NA 0 0.000 Unspecified
## 625 0 NA NA 0 0.000 Unspecified
## 626 0 NA NA 0 0.000 Unspecified
## 627 0 NA NA 0 0.000 Unspecified
## 628 0 NA NA 0 0.000 Unspecified
## 629 0 NA NA 0 0.000 Unspecified
## 630 0 NA NA 0 0.000 Unspecified
## 631 0 NA NA 0 0.000 Unspecified
## 632 0 NA NA 0 0.000 Unspecified
## 633 0 NA NA 0 0.000 Unspecified
## 634 0 NA NA 0 0.000 Unspecified
## 635 0 NA NA 0 0.000 Unspecified
## 636 0 NA NA 0 0.000 Unspecified
## 637 0 NA NA 0 0.000 Unspecified
## 638 0 NA NA 0 0.000 Unspecified
## 639 0 NA NA 0 0.000 Unspecified
## 640 0 NA NA 0 0.000 Unspecified
## 641 0 NA NA 0 0.000 Unspecified
## 642 0 NA NA 0 0.000 Unspecified
## 643 0 NA NA 0 0.000 Unspecified
## 644 96 NA NA 0.833 0.000 Yes
## 645 0 NA NA 0 0.000 Yes
## 646 0 NA NA 0 0.000 Unspecified
## 647 0 NA NA 0 0.000 Unspecified
## 648 0 NA NA 0 0.000 Unspecified
## 649 0 NA NA 0 0.000 Unspecified
## 650 0 NA NA 0 0.000 Unspecified
## 651 0 NA NA 0 0.000 Unspecified
## 652 0 NA NA 0 0.000 Unspecified
## 653 0 NA NA 0 0.000 Unspecified
## 654 0 NA NA 0 0.000 Unspecified
## 655 0 NA NA 0 0.000 Unspecified
## 656 0 NA NA 0 0.000 Unspecified
## 657 0 NA NA 0 0.000 Unspecified
## 658 0 NA NA 0 0.000 Unspecified
## 659 0 NA NA 0 0.000 Unspecified
## 660 0 NA NA 0 0.000 Unspecified
## 661 0 NA NA 0 0.000 Unspecified
## 662 0 NA NA 0 0.000 Unspecified
## 663 0 NA NA 0 0.000 Unspecified
## 664 0 NA NA 0 0.000 Unspecified
## 665 0 NA NA 0 0.000 Unspecified
## 666 0 NA NA 0 0.000 Unspecified
## 667 0 NA NA 0 0.000 Unspecified
## 668 0 NA NA 0 0.000 Unspecified
## 669 0 NA NA 0 0.000 Unspecified
## 670 0 NA NA 0 0.000 Unspecified
## 671 0 NA NA 0 0.000 Unspecified
## 672 0 NA NA 0 0.000 Unspecified
## 673 0 NA NA 0 0.000 Unspecified
## 674 0 NA NA 0 0.000 Unspecified
## 675 0 NA NA 0 0.000 Unspecified
## 676 0 NA NA 0 0.000 Unspecified
## 677 0 NA NA 0 0.000 Unspecified
## 678 0 NA NA 0 0.000 Unspecified
## 679 60 NA NA 0 0.000 Yes
## 680 0 NA NA 0 0.000 Yes
## 681 168 NA NA 0 0.000 Unspecified
## 682 0 NA NA 0 0.000 Yes
## 683 0 NA NA 0 0.000 Yes
## 684 168 NA 18 16 28.000 Yes
## 685 0 NA NA 0 0.000 Unspecified
## 686 0 NA NA 0 0.000 Yes
## 687 96 NA NA 0 0.000 Yes
## 688 0 NA NA 0 0.000 Yes
## 689 0 NA NA 0 0.000 Yes
## 690 0 NA NA 0 0.000 Yes
## 691 0 NA NA 0 0.000 Yes
## 692 0 NA NA 0 0.000 Unspecified
## 693 0 NA NA 0 0.000 Unspecified
## 694 0 NA NA 0 0.000 Unspecified
## 695 0 NA NA 0 0.000 Unspecified
## 696 0 NA NA 0 0.000 Unspecified
## 697 0 NA NA 0 0.000 Unspecified
## 698 0 NA NA 0 0.000 Unspecified
## 699 0 NA NA 0 0.000 Unspecified
## 700 0 NA NA 0 0.000 Unspecified
## 701 0 NA NA 0 0.000 Unspecified
## 702 0 NA NA 0 0.000 Unspecified
## 703 0 NA NA 0 0.000 Unspecified
## 704 0 NA NA 0 0.000 Unspecified
## 705 0 NA NA 0 0.000 Unspecified
## 706 0 NA NA 0 0.000 Unspecified
## 707 0 NA NA 0 0.000 Yes
## 708 168 NA NA 0 0.000 Unspecified
## 709 336 NA NA 0 0.000 Yes
## 710 0 NA NA 0 0.000 Unspecified
## 711 0 NA NA 0 0.000 Unspecified
## 712 0 NA NA 0 0.000 Unspecified
## 713 0 NA NA 0 0.000 Unspecified
## 714 0 NA NA 0 0.000 Yes
## Action2_1
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 Oyster harvesting area was cloased for seven days
## 11 Harvest area closed, oysters were recalled, warning issued to consumers
## 12 0
## 13 0
## 14 Dissinfection of ship, quarentine, cancelation of further voyages for 10 days
## 15 Reinforced sanitation measures, excluded ill foodhandlers from work
## 16 quarantine of ill staff, reinforcement of sanitation practices, disinfection of ship
## 17 Disinfection and sanitation measures, removed from service for agressive cleaning
## 18 Sinks installed, hand sanitizer made available, warnings and flyers were distributed
## 19 suspected infectioned isolated, etoh based hand sanitizers distributed, portable sinks installed, educatio l hygiene materials
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 recall and destroying some oysters harvested from LA coast from Nov 9-12, although most are still accounted for
## 35 Water line was flushed regularly
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 wing ma ger meeting about hand washing, cleaning and disposal of soiled items, protection methods for staff, disinfection techniques and food-handling precautions
## 42 0
## 43 0
## 44 0
## 45 0
## 46 Restaurant was immediately closed
## 47 kitchen was thoroughly cleaned, demonstration of infective link b/n chef and cases stressed food hygiene to staff
## 48 Signs, improved hygine, isolation of sick, cleaning, removal of self-service from dining halls
## 49 0
## 50 0
## 51 Ship was cleaned for a week following the second week of outbreaks
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 Oyster beds were closed to harvesting for a period of time
## 63 0
## 64 Caterer was closed for a week, kitchen was disinfected, sick policy implimented
## 65 Hand hygine emphasized, sick policy implimented
## 66 implicated oyster lot was voluntarily recalled by the tio l distributor
## 67 Sick policy implimented, hand hygiene emphasized, hotel was closed for 8 hours for extensive cleaning
## 68 Strict staffing policy, hand hygiene emphasized, ward closed and cleaned
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 in cardiology dept, educatio l interventions concerning the prevention of transmission of NoV
## 89 0
## 90 School was closed for several days
## 91 0
## 92 0
## 93 Signs were posted not to swim, guests were seperated while eating
## 94 0
## 95 0
## 96 0
## 97 Saloon was closed
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 Restaurant was closed
## 105 Ship came into port early
## 106 Staff policy, hand hygiene emphasized, changed type of disinfectant, additio l cleaning, use of ppe
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 handrubbing with a hydroalcolic gel, surfaces washed with a solution of glucoprotamine, washbowls washed with hypochlorite
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 Ships were removed from service for 1 week of extensive cleaning
## 124 1 week of cleaning ship
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 cleaned w/hypochlorous acid solution & hand washing, stopped food service and instructed staff on prevention
## 133 additio l portable bathrooms, education on hygiene, newsletters, alcohol-based hand sanitizers, increase access to soap & water, rehydration area, isolation room
## 134 ill food handler went home after vomiting
## 135 alcohol hand sanitizers installed
## 136 campus closed, students and staff instructed to stay home (staff for 72 hours, until asymptomatic)
## 137 cleaning of dormitories, public restrooms, and commu l areas was implemented with cleaning agents approved for norovirus
## 138 0
## 139 0
## 140 0
## 141 0
## 142 guests of symptomatic cases advised not to go into work until 48 hours atfer stools returned to normal
## 143 lavatory closed
## 144 \tContami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states.
## 145 Contami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states.
## 146 Contami ted batch withdrawn from market; Finnish authorities issued alert through Rapid Alert System for Food and Feed to other EU member states
## 147 0
## 148 \tGlove wearing implemented in four wards of HC building; three wards thoroughly disinfected and isolated from ward associated with outbreak wave; social activities canceled and staff asked to limit cross-contact between wards.
## 149 inspections were conducted at every port, jacuzzi and pool was closed, AC intake filters were sanitized, and a termi l cleaning took place
## 150 usage of ethanol-based produccts to wash hands, all areas of building thoroughly disinfected 3 times a day, PPE used by HCWs
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 Infection control measures
## 163 Primary infection control methods- environmental decontami tion, cohort isolation of infectious patients, hand-washing
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 staff wore gloves and aprons, discarding gloves and apron after treating each patient, isolating the affected from the u ffected, and using disposable plates and cutlery for the duration of the outbreak
## 176 0
## 177 0
## 178 0
## 179 The field hospital was closed to all but patients with gasteroenteritis
## 180 Restaurant was cleaned, closed, then professio lly cleaned
## 181 Restaurant was cleaned, closed, then professio lly cleaned
## 182 Restaurant was cleaned, closed, then professio lly cleaned
## 183 Restaurant was cleaned, closed, then professio lly cleaned
## 184 0
## 185 voluntary 24 hr isolation period suggested by staff to decrease contami ted surfaces and fomites
## 186 Infection control measured applied, staff educated on transmission, ward were cleaned, patients were cohorted
## 187 Quarantine of infected patients, surfaces cleaned with bleach solution
## 188 Deli bar was closed
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 Hygiene procedures implimented, toilets were seperated, facilities cleaned
## 197 Sick food handlers asked to stay home, investigation of caterer's kitchen
## 198 Nurse cohorting, infection controls, ward closure, staff sick policy instituted
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 Hotel and restaurant were closed for 14 days for extensive cleaning, associated hospital instituted employee sick policy
## 243 wiped down surfaces such as vinyl tablecloths, doorknobs, vinyl mattresses, food containers, and other hard surfaces with a diluted bleach solution of unknown concentration
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 new admissions to psychiatric ward were halted, healthcare workers to not report to work until at least 72h after the resolution of symptoms, careful surveillance for new cases, disinfection of patientsÂ\220 rooms, strict hand hygiene practice
## 265 A boil water notice was posted
## 266 0
## 267 Resident Contact was minimized, hand hygiene emphasized, sick policy implimented
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Water system was chlori ted
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 Infected rooms were steam cleaned, sanitation inspections improved practices
## 288 Investigation of outbreak, hand washing encouraged by public health service
## 289 Restaurant was closed and cleaned
## 290 0
## 291 0
## 292 Emphasized handwashing, gargling, disinfecting environmental surfaces
## 293 Facilities closed for one week, water was boiled before use, surfaces were sanitized
## 294 0
## 295 Hospital was closed to new admissions
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Well was closed, UV purifier installed and water was chlori ted
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 Closed to admissions, staff sick policy implimented, using perso l protective equipment
## 315 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 316 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 317 Sick policy implimented, hand hygine emphasized
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 Tomales Bay closed to shellfish harvesting, voluntary recall of potentially contami ted oysters initiated
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 Greater Murray Area Health Service issued local media releases to remind food businesses and the public about proper food preparation, catering company voluntarily ceased all operations from 16 October for a short period
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 351 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 voluntary closure of restaurant
## 361 0
## 362 closed and disinfected the kitchen, disposed of food
## 363 Infection control practices essation of occupatio l therapy; cohort program; visiting restrictions; symptomatic staff sent home
## 364 0
## 365 0
## 366 0
## 367 Infection control measures
## 368 Quarantine put in place; bleach solution used to sanitize environment
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 Hand washing encouraged, bottled water brought to troops
## 385 0
## 386 0
## 387 0
## 388 Cases were isolated in a hospital apart from non-cases, investigations were carried out
## 389 0
## 390 0
## 391 0
## 392 The restaruant was closed twice, one bus company stoped using the restaurant, and an investigation was conducted
## 393 Chlori tion of water, using a clean moble water supply, conducted an investigation of piping
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 restaurant was closed 2 days after all staff got sick with gastroenteritis
## 403 Infected staff advised to stay off work for 48 hours
## 404 0
## 405 0
## 406 Campers sent home, investigation took place, hand washing stations erected
## 407 Surfaces washed with 10% bleach, Soap dispensors added to facilities
## 408 Ship was cleaned, when outbreak persisted, proximal cruise was cancled and ship was cleaned for a week
## 409 Camp was closed during investigation, implimented new sewage system and periodic testing
## 410 0
## 411 0
## 412 0
## 413 Infection control measures taken, area deep cleaned, ward was closed to new patients, infected were isolated
## 414 infection control team closed ward, thorough environmental cleaning, use of alcohol-based rub & hand washing, symptomatic patients fed w/ sogastric tube or percutaneous endoscopic gastrotomy
## 415 Raspberries were recalled
## 416 Product was recalled
## 417 Product was recalled
## 418 0
## 419 0
## 420 trace back of food from the catering company, no further cases found
## 421 contact precautions (hand washing, gloves, gowns) as well as masks those cleaning vomitus or feces, discouraged ill patients from leaving room, restrict ill visitors, ill staff took leave til asymptomatic for 48 h
## 422 0
## 423 0
## 424 0
## 425 proper hand hygiene, soap pumps & disposable paper towels, separate toilets for sick participants, guidelines for cleaning toilets & contami ted surfaces with a 1,000-ppm chlorine solution
## 426 Raspberries pulled from the market
## 427 Raspberries pulled from market
## 428 Fountain shut down, water chlori ted, new systems put in place to moniter water
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 processing plant began a log to track employee illnesses, instituted use of NoV-approved sanitizer for product contact surfaces, hand-washing, plastic gloves when handling ready-to-eat product
## 452 School was disinfected with amonia, later closed and disinfected with chlorine
## 453 Pool was closed, drained and then chlori ted, drained again and closed for the season
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 Surfaces were disinfected with bleach after having been vomited on
## 466 0
## 467 0
## 468 0
## 469 Drinking tap water was banned, bottled water was used to cook, water tanks were superchlori ted
## 470 Public advised not to swim in lakes
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 ill food handlers were removed of duty
## 480 ill food handlers were removed of duty
## 481 public toilets were closed, patients were isolated during their illness, ill crew members disembarked, and hand washing, hygiene and disinfection measures were taken
## 482 caterer was advised on appropriate methods of food storage and refrigeration during transportation
## 483 caterer was advised on appropriate methods of food storage and refrigeration during transportation
## 484 public health unit advised that affected staff should not return to work until 48 hours after cessation of symptoms
## 485 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 486 increase the chlorine concentration at the main water-treatment works
## 487 0
## 488 0
## 489 Ships were removed from service for 1 week of extensive cleaning
## 490 0
## 491 0
## 492 exclude members of affected groups from water sports, activities with shared implements; provided dedicated latrines, washing facilities, drinking water; excluded from food handling, preparation; isolated until asymptomatic for 48 hours
## 493 exclude members of affected groups from water sports, activities with shared implements; provided dedicated latrines, washing facilities, drinking water; excluded from food handling, preparation; isolated until asymptomatic for 48 hours
## 494 exclude members of affected groups from water sports, activities with shared implements; provided dedicated latrines, washing facilities, drinking water; excluded from food handling, preparation; isolated until asymptomatic for 48 hours
## 495 0
## 496 0
## 497 hygeinic procedures were taken and camp was cancelled
## 498 environmental investigation by regio l health authorities
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 Infection control measures
## 506 Isolation of infected patients
## 507 0
## 508 Press release warning visitors of contami ted water, investigation of water sources/septic tanks, providing water to residents of nearby towns
## 509 0
## 510 0
## 511 Hygiene advice, boiling of drinking water
## 512 Banquet program was cancled, investigations were carried out, Caterer was closed to comply with regulations
## 513 The lodge was closed and an investigation was conducted
## 514 0
## 515 prohibit oyster harvesting within one mile of oil rig, implement stricter regulation of sewage treatment systems on oil facilities, require toilets on harvest boats, have regular inspection and water acceptance station at docks
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 Hotel was closed, water was superchlori ted, superheated, and flushed follwing investigation
## 525 0
## 526 strict enteric precautions (gowns and gloves when soiling likely, facial masks when vomit present), hand washing, send ill staff home
## 527 boil notice for water supply
## 528 0
## 529 0
## 530 Hyperchlori tion of pool water, outbreak investigation, maintanence errors fixed
## 531 All food was discarded, facility was cleaned twice
## 532 Cleaned most surfaces with bleach, followed by investigation, cleaned all surfaces with bleach, ill told to stay at home for 72 hours
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 Guests were seperated, all food was cooked, hotel was closed and deep cleaned
## 539 Public anouncements, revising oyster harvesting regulations, coordi ted with harvesters
## 540 Ill food handlers did not work until 48 hrs. post symptoms, hygiene emphasized
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 Harvesters were asked to place their oysters in purification bins prior to sale
## 548 0
## 549 clean with hypochlorite solution, steam clean
## 550 Camp was clean, closed and the fi lly professio lly cleaned
## 551 Camp was clean, closed and the fi lly professio lly cleaned
## 552 Camp was clean, closed and the fi lly professio lly cleaned
## 553 0
## 554 0
## 555 0
## 556 Enforced hand hygiene and environmental cleaning, cohort isolation of infected hospital patients, banning ill medical staff from working and awareness-building in general
## 557 0
## 558 0
## 559 0
## 560 Kitchen and mess hall were closed, troops ate battle rations, ill and healthy were separated
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 Sick policy implimented, hand hygiene sig ge, emergency chlori tion, thorough cleaning
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 index case was promtly removed and changed
## 645 Extensive outbreak control including cleaning, patient cohorting, hygiene, sick policy, and ward closure
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 Public was warned, hygiene was emphasized
## 680 temporary closure of wards, patient contact isolation til 2 days after recovery, patient transfers discouraged, keep list of gastroenteritis cases, contami ted surfaces & rooms cleaned w chlorine disinfectant
## 681 0
## 682 Ship was cleaned, ice was discarded, water was purified, ship docked for a week to clean
## 683 Extensive cleaning and disinfection, patients no longer transfered
## 684 closed dining hall
## 685 0
## 686 Water system was super chlori ted
## 687 index case was given a single room to prevent further exposure, exposed surfaces and fomites in the hostel were cleaned and disinfected using alcohol-based disinfectants
## 688 Surfaces, Rooms, and Equipment were disinfected, hand hygine was emphasized, sick patients told to remain in their rooms
## 689 Harvesters were asked to depurate oysters for 2 days prior to sale
## 690 Depurification times implimented, oysters were recalled, oyster beds shut down for 3 weeks
## 691 Strict staffing policy, ward was closed, areas were disinfected
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 Cleaned and disinfected vomitus
## 708 0
## 709 Infection control measures taken, hand hygiene emphasized, employee sick plolicy, areas closed to admission, restricted visitors
## 710 0
## 711 0
## 712 0
## 713 0
## 714 Ward closed to admissions, staffing policy implimented, infection control measures and deep cleaning
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 No 0 0 0 0 0 0
## 2 Yes 0 0 0 0 0 0
## 3 No 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## 7 No 0 0 0 0 0 0
## 8 No 0 0 0 0 0 0
## 9 No 0 0 0 0 0 0
## 10 No 0 0 0 0 0 0
## 11 Yes 0 0 0 0 0 0
## 12 No 0 0 0 0 0 0
## 13 No 0 0 0 0 0 0
## 14 No 0 0 0 0 0 0
## 15 No 0 0 0 0 0 0
## 16 No 0 0 0 0 0 0
## 17 No 0 0 0 0 0 0
## 18 No 0 0 0 0 0 0
## 19 Yes 0 0 0 0 0 0
## 20 No 0 0 0 0 0 0
## 21 No 0 0 0 0 0 0
## 22 No 0 0 0 0 0 0
## 23 No 0 0 0 0 0 0
## 24 No 0 0 0 0 0 0
## 25 No 0 0 0 0 0 0
## 26 No 0 0 0 0 0 0
## 27 No 0 0 0 0 0 0
## 28 No 0 0 0 0 0 0
## 29 No 0 0 0 0 0 0
## 30 No 0 0 0 0 0 0
## 31 No 0 0 0 0 0 0
## 32 No 0 0 0 0 0 0
## 33 No 0 0 0 0 0 0
## 34 Yes 0 0 0 0 0 0
## 35 No 0 0 0 0 0 0
## 36 No 0 0 0 0 0 0
## 37 No 0 0 0 0 0 0
## 38 No 0 0 0 0 0 0
## 39 No 0 0 0 0 0 0
## 40 No 0 0 0 0 0 0
## 41 No 0 0 0 0 0 0
## 42 No 0 0 0 0 0 0
## 43 No 0 0 0 0 0 0
## 44 No 0 0 0 0 0 0
## 45 No 0 0 0 0 0 0
## 46 Yes 0 0 0 0 0 0
## 47 Yes 0 0 0 0 0 0
## 48 No 0 0 0 0 0 0
## 49 No 0 0 0 0 0 0
## 50 No 0 0 0 0 0 0
## 51 Yes 0 0 0 0 0 0
## 52 No 0 0 0 0 0 0
## 53 No 0 0 0 0 0 0
## 54 No 0 0 0 0 0 0
## 55 No 0 0 0 0 0 0
## 56 No 0 0 0 0 0 0
## 57 No 0 0 0 0 0 0
## 58 No 0 0 0 0 0 0
## 59 No 0 0 0 0 0 0
## 60 No 0 0 0 0 0 0
## 61 No 0 0 0 0 0 0
## 62 Yes 0 0 0 0 0 0
## 63 No 0 0 0 0 0 0
## 64 No 0 0 0 0 0 0
## 65 No 0 0 0 0 0 0
## 66 No 0 0 0 0 0 0
## 67 No 0 0 0 0 0 0
## 68 No 0 0 0 0 0 0
## 69 No 0 0 0 0 0 0
## 70 No 0 0 0 0 0 0
## 71 No 0 0 0 0 0 0
## 72 No 0 0 0 0 0 0
## 73 No 0 0 0 0 0 0
## 74 No 0 0 0 0 0 0
## 75 No 0 0 0 0 0 0
## 76 No 0 0 0 0 0 0
## 77 No 0 0 0 0 0 0
## 78 No 0 0 0 0 0 0
## 79 No 0 0 0 0 0 0
## 80 No 0 0 0 0 0 0
## 81 No 0 0 0 0 0 0
## 82 No 0 0 0 0 0 0
## 83 No 0 0 0 0 0 0
## 84 No 0 0 0 0 0 0
## 85 No 0 0 0 0 0 0
## 86 No 0 0 0 0 0 0
## 87 No 0 0 0 0 0 0
## 88 No 0 0 0 0 0 0
## 89 No 0 0 0 0 0 0
## 90 Yes 0 0 0 0 0 0
## 91 No 0 0 0 0 0 0
## 92 No 0 0 0 0 0 0
## 93 No 0 0 0 0 0 0
## 94 No 0 0 0 0 0 0
## 95 No 0 0 0 0 0 0
## 96 No 0 0 0 0 0 0
## 97 No 0 0 0 0 0 0
## 98 No 0 0 0 0 0 0
## 99 No 0 0 0 0 0 0
## 100 No 0 0 0 0 0 0
## 101 No 0 0 0 0 0 0
## 102 No 0 0 0 0 0 0
## 103 No 0 0 0 0 0 0
## 104 No 0 0 0 0 0 0
## 105 No 0 0 0 0 0 0
## 106 Yes 0 0 0 0 0 0
## 107 No 0 0 0 0 0 0
## 108 No 0 0 0 0 0 0
## 109 No 0 0 0 0 0 0
## 110 No 0 0 0 0 0 0
## 111 No 0 0 0 0 0 0
## 112 No 0 0 0 0 0 0
## 113 No 0 0 0 0 0 0
## 114 No 0 0 0 0 0 0
## 115 No 0 0 0 0 0 0
## 116 No 0 0 0 0 0 0
## 117 No 0 0 0 0 0 0
## 118 No 0 0 0 0 0 0
## 119 No 0 0 0 0 0 0
## 120 No 0 0 0 0 0 0
## 121 No 0 0 0 0 0 0
## 122 No 0 0 0 0 0 0
## 123 No 0 0 0 0 0 0
## 124 No 0 0 0 0 0 0
## 125 No 0 0 0 0 0 0
## 126 No 0 0 0 0 0 0
## 127 No 0 0 0 0 0 0
## 128 No 0 0 0 0 0 0
## 129 No 0 0 0 0 0 0
## 130 No 0 0 0 0 0 0
## 131 No 0 0 0 0 0 0
## 132 No 0 0 0 0 0 0
## 133 No 0 0 0 0 0 0
## 134 No 0 0 0 0 0 0
## 135 No 0 0 0 0 0 0
## 136 No 0 0 0 0 0 0
## 137 No 0 0 0 0 0 0
## 138 No 0 0 0 0 0 0
## 139 No 0 0 0 0 0 0
## 140 No 0 0 0 0 0 0
## 141 No 0 0 0 0 0 0
## 142 Yes 0 0 60 96 0 0
## 143 Yes 0 0 0 0 0 0
## 144 No 0 0 0 0 0 0
## 145 Yes 0 0 0 0 0 0
## 146 No 0 0 0 0 0 0
## 147 No 0 0 0 0 0 0
## 148 No 0 0 0 0 0 0
## 149 No 0 0 0 0 0 0
## 150 No 0 0 0 0 0 0
## 151 No 0 0 0 0 0 0
## 152 No 0 0 0 0 0 0
## 153 No 0 0 0 0 0 0
## 154 No 0 0 0 0 0 0
## 155 No 0 0 0 0 0 0
## 156 No 0 0 0 0 0 0
## 157 No 0 0 0 0 0 0
## 158 No 0 0 0 0 0 0
## 159 No 0 0 0 0 0 0
## 160 No 0 0 0 0 0 0
## 161 No 0 0 0 0 0 0
## 162 No 0 0 0 0 0 0
## 163 No 0 0 0 0 0 0
## 164 No 0 0 0 0 0 0
## 165 No 0 0 0 0 0 0
## 166 No 0 0 0 0 0 0
## 167 No 0 0 0 0 0 0
## 168 No 0 0 0 0 0 0
## 169 No 0 0 0 0 0 0
## 170 No 0 0 0 0 0 0
## 171 No 0 0 0 0 0 0
## 172 No 0 0 0 0 0 0
## 173 No 0 0 0 0 0 0
## 174 No 0 0 0 0 0 0
## 175 No 0 0 0 0 0 0
## 176 Yes 0 0 24 48 0 0
## 177 No 0 0 0 0 0 0
## 178 No 0 0 0 0 0 0
## 179 No 0 0 0 0 0 0
## 180 No 0 0 0 0 0 0
## 181 No 0 0 0 0 0 0
## 182 No 0 0 0 0 0 0
## 183 No 0 0 0 0 0 0
## 184 No 0 0 0 0 0 0
## 185 No 0 0 0 0 0 0
## 186 No 0 0 0 0 0 0
## 187 No 0 0 0 0 0 0
## 188 No 0 0 0 0 0 0
## 189 No 0 0 0 0 0 0
## 190 No 0 0 0 0 0 0
## 191 No 0 0 0 0 0 0
## 192 No 0 0 0 0 0 0
## 193 Yes 0 0 0 0 0 0
## 194 No 0 0 0 0 0 0
## 195 No 0 0 0 0 0 0
## 196 No 0 0 0 0 0 0
## 197 Yes 0 0 0 0 0 0
## 198 No 0 0 0 0 0 0
## 199 No 0 0 0 0 0 0
## 200 No 0 0 0 0 0 0
## 201 No 0 0 0 0 0 0
## 202 No 0 0 0 0 0 0
## 203 No 0 0 0 0 0 0
## 204 No 0 0 0 0 0 0
## 205 No 0 0 0 0 0 0
## 206 No 0 0 0 0 0 0
## 207 No 0 0 0 0 0 0
## 208 No 0 0 0 0 0 0
## 209 No 0 0 0 0 0 0
## 210 No 0 0 0 0 0 0
## 211 No 0 0 0 0 0 0
## 212 No 0 0 0 0 0 0
## 213 No 0 0 0 0 0 0
## 214 No 0 0 0 0 0 0
## 215 No 0 0 0 0 0 0
## 216 No 0 0 0 0 0 0
## 217 No 0 0 0 0 0 0
## 218 No 0 0 0 0 0 0
## 219 No 0 0 0 0 0 0
## 220 No 0 0 0 0 0 0
## 221 No 0 0 0 0 0 0
## 222 No 0 0 0 0 0 0
## 223 No 0 0 0 0 0 0
## 224 No 0 0 0 0 0 0
## 225 No 0 0 0 0 0 0
## 226 No 0 0 0 0 0 0
## 227 No 0 0 0 0 0 0
## 228 No 0 0 0 0 0 0
## 229 No 0 0 0 0 0 0
## 230 No 0 0 0 0 0 0
## 231 No 0 0 0 0 0 0
## 232 No 0 0 0 0 0 0
## 233 No 0 0 0 0 0 0
## 234 No 0 0 0 0 0 0
## 235 No 0 0 0 0 0 0
## 236 No 0 0 0 0 0 0
## 237 No 0 0 0 0 0 0
## 238 No 0 0 0 0 0 0
## 239 No 0 0 0 0 0 0
## 240 No 0 0 0 0 0 0
## 241 No 0 0 0 0 0 0
## 242 Yes 0 0 0 0 0 0
## 243 No 0 0 0 0 0 0
## 244 No 0 0 0 0 0 0
## 245 No 0 0 0 0 0 0
## 246 No 0 0 0 0 0 0
## 247 No 0 0 0 0 0 0
## 248 No 0 0 0 0 0 0
## 249 No 0 0 0 0 0 0
## 250 No 0 0 0 0 0 0
## 251 No 0 0 0 0 0 0
## 252 No 0 0 0 0 0 0
## 253 No 0 0 0 0 0 0
## 254 No 0 0 0 0 0 0
## 255 No 0 0 0 0 0 0
## 256 No 0 0 0 0 0 0
## 257 No 0 0 0 0 0 0
## 258 No 0 0 0 0 0 0
## 259 No 0 0 0 0 0 0
## 260 No 0 0 0 0 0 0
## 261 No 0 0 0 0 0 0
## 262 No 0 0 0 0 0 0
## 263 No 0 0 0 0 0 0
## 264 No 0 0 0 0 0 0
## 265 No 0 0 0 0 0 0
## 266 No 0 0 0 0 0 0
## 267 No 0 0 0 0 0 0
## 268 No 0 0 0 0 0 0
## 269 No 0 0 0 0 0 0
## 270 No 0 0 0 0 0 0
## 271 No 0 0 0 0 0 0
## 272 No 0 0 0 0 0 0
## 273 No 0 0 0 0 0 0
## 274 No 0 0 0 0 0 0
## 275 No 0 0 0 0 0 0
## 276 No 0 0 0 0 0 0
## 277 No 0 0 0 0 0 0
## 278 No 0 0 0 0 0 0
## 279 No 0 0 0 0 0 0
## 280 No 0 0 0 0 0 0
## 281 No 0 0 0 0 0 0
## 282 No 0 0 0 0 0 0
## 283 No 0 0 0 0 0 0
## 284 No 0 0 0 0 0 0
## 285 No 0 0 0 0 0 0
## 286 No 0 0 0 0 0 0
## 287 No 0 0 0 0 0 0
## 288 No 0 0 0 0 0 0
## 289 No 0 0 0 0 0 0
## 290 No 0 0 0 0 0 0
## 291 No 0 0 0 0 0 0
## 292 No 0 0 0 0 0 0
## 293 No 0 0 0 0 0 0
## 294 No 0 0 0 0 0 0
## 295 No 0 0 0 0 0 0
## 296 No 0 0 0 0 0 0
## 297 No 0 0 0 0 0 0
## 298 No 0 0 0 0 0 0
## 299 No 0 0 0 0 0 0
## 300 No 0 0 0 0 0 0
## 301 No 0 0 0 0 0 0
## 302 No 0 0 0 0 0 0
## 303 No 0 0 0 0 0 0
## 304 No 0 0 0 0 0 0
## 305 No 0 0 0 0 0 0
## 306 No 0 0 0 0 0 0
## 307 No 0 0 0 0 0 0
## 308 No 0 0 0 0 0 0
## 309 Yes 0 0 0 0 0 0
## 310 No 0 0 0 0 0 0
## 311 No 0 0 0 0 0 0
## 312 No 0 0 0 0 0 0
## 313 No 0 0 0 0 0 0
## 314 No 0 0 0 0 0 0
## 315 No 0 0 0 0 0 0
## 316 No 0 0 0 0 0 0
## 317 Yes 0 0 0 0 0 0
## 318 No 0 0 0 0 0 0
## 319 No 0 0 0 0 0 0
## 320 No 0 0 0 0 0 0
## 321 No 0 0 0 0 0 0
## 322 No 0 0 0 0 0 0
## 323 No 0 0 0 0 0 0
## 324 No 0 0 0 0 0 0
## 325 No 0 0 0 0 0 0
## 326 No 0 0 0 0 0 0
## 327 No 0 0 0 0 0 0
## 328 No 0 0 0 0 0 0
## 329 No 0 0 0 0 0 0
## 330 No 0 0 0 0 0 0
## 331 No 0 0 0 0 0 0
## 332 No 0 0 0 0 0 0
## 333 No 0 0 0 0 0 0
## 334 No 0 0 0 0 0 0
## 335 No 0 0 0 0 0 0
## 336 No 0 0 0 0 0 0
## 337 No 0 0 0 0 0 0
## 338 No 0 0 0 0 0 0
## 339 No 0 0 0 0 0 0
## 340 No 0 0 0 0 0 0
## 341 No 0 0 0 0 0 0
## 342 No 0 0 0 0 0 0
## 343 No 0 0 0 0 0 0
## 344 No 0 0 0 0 0 0
## 345 No 0 0 0 0 0 0
## 346 No 0 0 0 0 0 0
## 347 No 0 0 0 0 0 0
## 348 No 0 0 0 0 0 0
## 349 No 0 0 0 0 0 0
## 350 Yes 0 0 0 0 0 0
## 351 No 0 0 0 0 0 0
## 352 No 0 0 0 0 0 0
## 353 No 0 0 0 0 0 0
## 354 No 0 0 0 0 0 0
## 355 No 0 0 0 0 0 0
## 356 No 0 0 0 0 0 0
## 357 No 0 0 0 0 0 0
## 358 No 0 0 0 0 0 0
## 359 No 0 0 0 0 0 0
## 360 Yes 0 0 0 0 0 0
## 361 No 0 0 0 0 0 0
## 362 Yes 0 0 0 0 0 0
## 363 No 0 0 0 0 0 0
## 364 No 0 0 0 0 0 0
## 365 No 0 0 0 0 0 0
## 366 No 0 0 0 0 0 0
## 367 No 0 0 0 0 0 0
## 368 No 0 0 0 0 0 0
## 369 No 0 0 0 0 0 0
## 370 No 0 0 0 0 0 0
## 371 No 0 0 0 0 0 0
## 372 No 0 0 0 0 0 0
## 373 No 0 0 0 0 0 0
## 374 No 0 0 0 0 0 0
## 375 No 0 0 0 0 0 0
## 376 No 0 0 0 0 0 0
## 377 No 0 0 0 0 0 0
## 378 No 0 0 0 0 0 0
## 379 No 0 0 0 0 0 0
## 380 No 0 0 0 0 0 0
## 381 No 0 0 0 0 0 0
## 382 No 0 0 0 0 0 0
## 383 No 0 0 0 0 0 0
## 384 No 0 0 0 0 0 0
## 385 Yes 0 0 0 0 0 0
## 386 Yes 0 0 0 0 0 0
## 387 No 0 0 0 0 0 0
## 388 No 0 0 0 0 0 0
## 389 No 0 0 0 0 0 0
## 390 No 0 0 0 0 0 0
## 391 No 0 0 0 0 0 0
## 392 No 0 0 0 0 0 0
## 393 No 0 0 0 0 0 0
## 394 No 0 0 0 0 0 0
## 395 No 0 0 0 0 0 0
## 396 No 0 0 0 0 0 0
## 397 No 0 0 0 0 0 0
## 398 No 0 0 0 0 0 0
## 399 No 0 0 0 0 0 0
## 400 No 0 0 0 0 0 0
## 401 No 0 0 0 0 0 0
## 402 No 0 0 0 0 0 0
## 403 No 0 0 0 0 0 0
## 404 No 0 0 0 0 0 0
## 405 No 0 0 0 0 0 0
## 406 No 0 0 0 0 0 0
## 407 No 0 0 0 0 0 0
## 408 No 0 0 0 0 0 0
## 409 No 0 0 0 0 0 0
## 410 No 0 0 0 0 0 0
## 411 No 0 0 0 0 0 0
## 412 No 0 0 0 0 0 0
## 413 No 0 0 0 0 0 0
## 414 No 0 0 0 0 0 0
## 415 No 0 0 0 0 0 0
## 416 No 0 0 0 0 0 0
## 417 No 0 0 0 0 0 0
## 418 No 0 0 0 0 0 0
## 419 No 0 0 0 0 0 0
## 420 No 0 0 0 0 0 0
## 421 No 0 0 0 0 0 0
## 422 No 0 0 0 0 0 0
## 423 No 0 0 0 0 0 0
## 424 No 0 0 0 0 0 0
## 425 No 0 0 0 0 0 0
## 426 No 0 0 0 0 0 0
## 427 No 0 0 0 0 0 0
## 428 Yes 0 0 0 0 0 0
## 429 No 0 0 0 0 0 0
## 430 No 0 0 0 0 0 0
## 431 No 0 0 0 0 0 0
## 432 No 0 0 0 0 0 0
## 433 No 0 0 0 0 0 0
## 434 No 0 0 0 0 0 0
## 435 No 0 0 0 0 0 0
## 436 No 0 0 0 0 0 0
## 437 No 0 0 0 0 0 0
## 438 No 0 0 0 0 0 0
## 439 No 0 0 0 0 0 0
## 440 No 0 0 0 0 0 0
## 441 No 0 0 0 0 0 0
## 442 No 0 0 0 0 0 0
## 443 No 0 0 0 0 0 0
## 444 No 0 0 0 0 0 0
## 445 No 0 0 0 0 0 0
## 446 No 0 0 0 0 0 0
## 447 No 0 0 0 0 0 0
## 448 No 0 0 0 0 0 0
## 449 No 0 0 0 0 0 0
## 450 No 0 0 0 0 0 0
## 451 No 0 0 0 0 0 0
## 452 Yes 0 0 0 0 0 0
## 453 No 0 0 0 0 0 0
## 454 No 0 0 0 0 0 0
## 455 No 0 0 0 0 0 0
## 456 No 0 0 0 0 0 0
## 457 No 0 0 0 0 0 0
## 458 No 0 0 0 0 0 0
## 459 Yes 0 0 0 0 0 0
## 460 No 0 0 0 0 0 0
## 461 No 0 0 0 0 0 0
## 462 No 0 0 0 0 0 0
## 463 No 0 0 0 0 0 0
## 464 No 0 0 0 0 0 0
## 465 No 0 0 0 0 0 0
## 466 No 0 0 0 0 0 0
## 467 No 0 0 0 0 0 0
## 468 No 0 0 0 0 0 0
## 469 No 0 0 0 0 0 0
## 470 Yes 0 0 0 0 0 0
## 471 No 0 0 0 0 0 0
## 472 No 0 0 0 0 0 0
## 473 No 0 0 0 0 0 0
## 474 No 0 0 0 0 0 0
## 475 No 0 0 0 0 0 0
## 476 No 0 0 0 0 0 0
## 477 No 0 0 0 0 0 0
## 478 No 0 0 0 0 0 0
## 479 No 0 0 0 0 0 0
## 480 No 0 0 0 0 0 0
## 481 No 0 0 0 0 0 0
## 482 No 0 0 0 0 0 0
## 483 No 0 0 0 0 0 0
## 484 No 0 0 0 0 0 0
## 485 No 0 0 0 0 0 0
## 486 No 0 0 0 0 0 0
## 487 No 0 0 0 0 0 0
## 488 No 0 0 0 0 0 0
## 489 No 0 0 0 0 0 0
## 490 No 0 0 0 0 0 0
## 491 No 0 0 0 0 0 0
## 492 No 0 0 0 0 0 0
## 493 No 0 0 0 0 0 0
## 494 No 0 0 0 0 0 0
## 495 Yes 81 0 78 83 0 0
## 496 No 0 0 0 0 0 0
## 497 Yes 0 0 0 0 0 0
## 498 No 0 0 0 0 0 0
## 499 No 0 0 0 0 0 0
## 500 No 0 0 0 0 0 0
## 501 No 0 0 0 0 0 0
## 502 No 0 0 0 0 0 0
## 503 No 0 0 0 0 0 0
## 504 No 0 0 0 0 0 0
## 505 No 0 0 0 0 0 0
## 506 No 0 0 0 0 0 0
## 507 No 0 0 0 0 0 0
## 508 No 0 0 0 0 0 0
## 509 No 0 0 0 0 0 0
## 510 No 0 0 0 0 0 0
## 511 Yes 0 0 0 0 0 0
## 512 No 0 0 0 0 0 0
## 513 No 0 0 0 0 0 0
## 514 Yes 0 0 0 0 0 0
## 515 No 0 0 0 0 0 0
## 516 No 0 0 0 0 0 0
## 517 No 0 0 0 0 0 0
## 518 No 0 0 0 0 0 0
## 519 No 0 0 0 0 0 0
## 520 No 0 0 0 0 0 0
## 521 No 0 0 0 0 0 0
## 522 No 0 0 0 0 0 0
## 523 No 0 0 0 0 0 0
## 524 No 0 0 0 0 0 0
## 525 No 0 0 0 0 0 0
## 526 No 0 0 0 0 0 0
## 527 No 0 0 0 0 0 0
## 528 No 0 0 0 0 0 0
## 529 No 0 0 0 0 0 0
## 530 No 0 0 0 0 0 0
## 531 Yes 0 0 0 0 0 0
## 532 No 0 0 0 0 0 0
## 533 No 0 0 0 0 0 0
## 534 No 0 0 0 0 0 0
## 535 No 0 0 0 0 0 0
## 536 No 0 0 0 0 0 0
## 537 No 0 0 0 0 0 0
## 538 No 0 0 0 0 0 0
## 539 No 0 0 0 0 0 0
## 540 No 0 0 0 0 0 0
## 541 No 0 0 0 0 0 0
## 542 No 0 0 0 0 0 0
## 543 No 0 0 0 0 0 0
## 544 No 0 0 0 0 0 0
## 545 No 0 0 0 0 0 0
## 546 No 0 0 0 0 0 0
## 547 No 0 0 0 0 0 0
## 548 No 0 0 0 0 0 0
## 549 No 0 0 0 0 0 0
## 550 No 0 0 0 0 0 0
## 551 No 0 0 0 0 0 0
## 552 No 0 0 0 0 0 0
## 553 No 0 0 0 0 0 0
## 554 No 0 0 0 0 0 0
## 555 No 0 0 0 0 0 0
## 556 No 0 0 0 0 0 0
## 557 No 0 0 0 0 0 0
## 558 No 0 0 0 0 0 0
## 559 No 0 0 0 0 0 0
## 560 No 0 0 0 0 0 0
## 561 No 0 0 0 0 0 0
## 562 No 0 0 0 0 0 0
## 563 No 0 0 0 0 0 0
## 564 No 0 0 0 0 0 0
## 565 No 0 0 0 0 0 0
## 566 No 0 0 0 0 0 0
## 567 No 0 0 0 0 0 0
## 568 No 0 0 0 0 0 0
## 569 No 0 0 0 0 0 0
## 570 No 0 0 0 0 0 0
## 571 No 0 0 0 0 0 0
## 572 No 0 0 0 0 0 0
## 573 No 0 0 0 0 0 0
## 574 No 0 0 0 0 0 0
## 575 No 0 0 0 0 0 0
## 576 No 0 0 0 0 0 0
## 577 No 0 0 0 0 0 0
## 578 No 0 0 0 0 0 0
## 579 No 0 0 0 0 0 0
## 580 No 0 0 0 0 0 0
## 581 No 0 0 0 0 0 0
## 582 No 0 0 0 0 0 0
## 583 No 0 0 0 0 0 0
## 584 No 0 0 0 0 0 0
## 585 No 0 0 0 0 0 0
## 586 No 0 0 0 0 0 0
## 587 No 0 0 0 0 0 0
## 588 No 0 0 0 0 0 0
## 589 No 0 0 0 0 0 0
## 590 No 0 0 0 0 0 0
## 591 No 0 0 0 0 0 0
## 592 No 0 0 0 0 0 0
## 593 0 0 0 0 0 0
## 594 Yes 0 0 0 0 0 0
## 595 No 0 0 0 0 0 0
## 596 No 0 0 0 0 0 0
## 597 No 0 0 0 0 0 0
## 598 No 0 0 0 0 0 0
## 599 No 0 0 0 0 0 0
## 600 No 0 0 0 0 0 0
## 601 No 0 0 0 0 0 0
## 602 No 0 0 0 0 0 0
## 603 No 0 0 0 0 0 0
## 604 No 0 0 0 0 0 0
## 605 No 0 0 0 0 0 0
## 606 No 0 0 0 0 0 0
## 607 No 0 0 0 0 0 0
## 608 No 0 0 0 0 0 0
## 609 No 0 0 0 0 0 0
## 610 No 0 0 0 0 0 0
## 611 No 0 0 0 0 0 0
## 612 No 0 0 0 0 0 0
## 613 No 0 0 0 0 0 0
## 614 No 0 0 0 0 0 0
## 615 No 0 0 0 0 0 0
## 616 No 0 0 0 0 0 0
## 617 No 0 0 0 0 0 0
## 618 No 0 0 0 0 0 0
## 619 No 0 0 0 0 0 0
## 620 No 0 0 0 0 0 0
## 621 No 0 0 0 0 0 0
## 622 No 0 0 0 0 0 0
## 623 No 0 0 0 0 0 0
## 624 No 0 0 0 0 0 0
## 625 No 0 0 0 0 0 0
## 626 No 0 0 0 0 0 0
## 627 No 0 0 0 0 0 0
## 628 No 0 0 0 0 0 0
## 629 No 0 0 0 0 0 0
## 630 No 0 0 0 0 0 0
## 631 No 0 0 0 0 0 0
## 632 No 0 0 0 0 0 0
## 633 No 0 0 0 0 0 0
## 634 No 0 0 0 0 0 0
## 635 No 0 0 0 0 0 0
## 636 No 0 0 0 0 0 0
## 637 No 0 0 0 0 0 0
## 638 No 0 0 0 0 0 0
## 639 No 0 0 0 0 0 0
## 640 No 0 0 0 0 0 0
## 641 No 0 0 0 0 0 0
## 642 No 0 0 0 0 0 0
## 643 No 0 0 0 0 0 0
## 644 Yes 0 0 0 0 0 0
## 645 No 0 0 0 0 0 0
## 646 No 0 0 0 0 0 0
## 647 No 0 0 0 0 0 0
## 648 No 0 0 0 0 0 0
## 649 No 0 0 0 0 0 0
## 650 No 0 0 0 0 0 0
## 651 No 0 0 0 0 0 0
## 652 No 0 0 0 0 0 0
## 653 No 0 0 0 0 0 0
## 654 No 0 0 0 0 0 0
## 655 No 0 0 0 0 0 0
## 656 No 0 0 0 0 0 0
## 657 No 0 0 0 0 0 0
## 658 No 0 0 0 0 0 0
## 659 No 0 0 0 0 0 0
## 660 No 0 0 0 0 0 0
## 661 No 0 0 0 0 0 0
## 662 No 0 0 0 0 0 0
## 663 No 0 0 0 0 0 0
## 664 No 0 0 0 0 0 0
## 665 No 0 0 0 0 0 0
## 666 No 0 0 0 0 0 0
## 667 No 0 0 0 0 0 0
## 668 No 0 0 0 0 0 0
## 669 No 0 0 0 0 0 0
## 670 No 0 0 0 0 0 0
## 671 No 0 0 0 0 0 0
## 672 No 0 0 0 0 0 0
## 673 No 0 0 0 0 0 0
## 674 No 0 0 0 0 0 0
## 675 No 0 0 0 0 0 0
## 676 No 0 0 0 0 0 0
## 677 No 0 0 0 0 0 0
## 678 No 0 0 0 0 0 0
## 679 No 0 0 0 0 0 0
## 680 No 0 0 0 0 0 0
## 681 No 0 0 0 0 0 0
## 682 No 0 0 0 0 0 0
## 683 No 0 0 0 0 0 0
## 684 No 0 0 0 0 0 0
## 685 No 0 0 0 0 0 0
## 686 Yes 0 0 0 0 0 0
## 687 No 0 0 0 0 0 0
## 688 No 0 0 0 0 0 0
## 689 No 0 0 0 0 0 0
## 690 No 0 0 0 0 0 0
## 691 No 0 0 0 0 0 0
## 692 No 0 0 0 0 0 0
## 693 No 0 0 0 0 0 0
## 694 No 0 0 0 0 0 0
## 695 No 0 0 0 0 0 0
## 696 No 0 0 0 0 0 0
## 697 No 0 0 0 0 0 0
## 698 No 0 0 0 0 0 0
## 699 No 0 0 0 0 0 0
## 700 No 0 0 0 0 0 0
## 701 No 0 0 0 0 0 0
## 702 No 0 0 0 0 0 0
## 703 No 0 0 0 0 0 0
## 704 No 0 0 0 0 0 0
## 705 No 0 0 0 0 0 0
## 706 No 0 0 0 0 0 0
## 707 No 0 0 0 0 0 0
## 708 No 0 0 0 0 0 0
## 709 Yes 0 0 0 0 0 0
## 710 No 0 0 0 0 0 0
## 711 No 0 0 0 0 0 0
## 712 No 0 0 0 0 0 0
## 713 No 0 0 0 0 0 0
## 714 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 10
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 0 0 0 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 49 11 73
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 24 72 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 0 0 0 0 0 0
## 242 0 0 36 0 2 80
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 0 0 0 0 0 0
## 247 0 0 0 0 0 0
## 248 0 0 0 0 0 0
## 249 0 0 0 0 0 0
## 250 0 0 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 0 0 0 0 0 0
## 263 0 0 0 0 0 0
## 264 0 0 0 0 0 0
## 265 0 0 0 0 0 0
## 266 0 0 0 0 0 0
## 267 0 0 0 0 0 0
## 268 0 0 0 0 0 0
## 269 0 0 0 0 0 0
## 270 0 0 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 0 0 0 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 0 0 0 0 0 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 0 0 0 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 0 0 0 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 0 0 0 0
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 0 0 0 0 0 0
## 324 0 0 0 0 0 0
## 325 0 0 0 0 0 0
## 326 0 0 0 0 0 0
## 327 0 0 0 0 0 0
## 328 0 0 0 0 0 0
## 329 0 0 0 0 0 0
## 330 0 0 0 0 0 0
## 331 0 0 0 0 0 0
## 332 0 0 0 0 0 0
## 333 0 0 0 0 0 0
## 334 0 0 0 0 0 0
## 335 0 0 0 0 0 0
## 336 0 0 0 0 0 0
## 337 0 0 0 0 0 0
## 338 0 0 0 0 0 0
## 339 0 0 0 0 0 0
## 340 0 0 0 0 0 0
## 341 0 0 0 0 0 0
## 342 0 0 0 0 0 0
## 343 0 0 0 0 0 0
## 344 0 0 0 0 0 0
## 345 0 0 0 0 0 0
## 346 0 0 0 0 0 0
## 347 0 0 0 0 0 0
## 348 0 0 0 0 0 0
## 349 0 0 0 0 0 0
## 350 0 0 0 0 0 0
## 351 0 0 0 0 0 0
## 352 0 0 0 0 0 0
## 353 0 0 0 0 0 0
## 354 0 0 0 0 0 0
## 355 0 0 0 0 0 0
## 356 0 0 0 0 0 0
## 357 0 0 0 0 0 0
## 358 0 0 0 0 0 0
## 359 0 0 0 0 0 0
## 360 0 0 0 0 0 0
## 361 0 0 0 0 0 0
## 362 0 0 0 0 0 0
## 363 0 0 0 0 0 0
## 364 0 0 0 0 0 0
## 365 0 0 0 0 0 0
## 366 0 0 0 0 0 0
## 367 0 0 0 0 0 0
## 368 0 0 0 0 0 0
## 369 0 0 0 0 0 0
## 370 0 0 0 0 0 0
## 371 0 0 0 0 0 0
## 372 0 0 0 0 0 0
## 373 0 0 0 0 0 0
## 374 0 0 0 0 0 0
## 375 0 0 0 0 0 0
## 376 0 0 0 0 0 0
## 377 0 0 0 0 0 0
## 378 0 0 0 0 0 0
## 379 0 0 0 0 0 0
## 380 0 0 0 0 0 0
## 381 0 0 0 0 0 0
## 382 0 0 0 0 0 0
## 383 0 0 0 0 0 0
## 384 0 0 0 0 0 0
## 385 0 0 0 0 0 0
## 386 0 0 0 0 0 0
## 387 0 0 0 0 0 0
## 388 0 0 0 0 0 0
## 389 0 0 0 0 0 0
## 390 0 0 0 0 0 0
## 391 0 0 0 0 0 0
## 392 0 0 0 0 0 0
## 393 0 0 0 0 0 0
## 394 0 0 0 0 0 0
## 395 0 0 0 0 0 0
## 396 0 0 0 0 0 0
## 397 0 0 0 0 0 0
## 398 0 0 0 0 0 0
## 399 0 0 0 0 0 0
## 400 0 0 0 0 0 0
## 401 0 0 0 0 0 0
## 402 0 0 0 0 0 0
## 403 0 0 0 0 0 0
## 404 0 0 0 0 0 0
## 405 0 0 0 0 0 0
## 406 0 0 0 0 0 0
## 407 0 0 0 0 0 0
## 408 0 0 0 0 0 0
## 409 0 0 0 0 0 0
## 410 0 0 0 0 0 0
## 411 0 0 0 0 0 0
## 412 0 0 0 0 0 0
## 413 0 0 0 0 0 0
## 414 0 0 0 0 0 0
## 415 0 0 0 0 0 0
## 416 0 0 0 0 0 0
## 417 0 0 0 0 0 0
## 418 0 0 0 0 0 0
## 419 0 0 0 0 0 0
## 420 0 0 0 0 0 0
## 421 0 0 0 0 0 0
## 422 0 0 0 0 0 0
## 423 0 0 0 0 0 0
## 424 0 0 0 0 0 0
## 425 0 0 0 0 0 0
## 426 0 0 0 0 0 0
## 427 0 0 0 0 0 0
## 428 0 0 0 0 0 0
## 429 0 0 0 0 0 0
## 430 0 0 0 0 0 0
## 431 0 0 0 0 0 0
## 432 0 0 0 0 0 0
## 433 0 0 0 0 0 0
## 434 0 0 0 0 0 0
## 435 0 0 0 0 0 0
## 436 0 0 0 0 0 0
## 437 0 0 0 0 0 0
## 438 0 0 0 0 0 0
## 439 0 0 0 0 0 0
## 440 0 0 0 0 0 0
## 441 0 0 0 0 0 0
## 442 0 0 0 0 0 0
## 443 0 0 0 0 0 0
## 444 0 0 0 0 0 0
## 445 0 0 0 0 0 0
## 446 0 0 0 0 0 0
## 447 0 0 0 0 0 0
## 448 0 0 0 0 0 0
## 449 0 0 0 0 0 0
## 450 0 0 0 0 0 0
## 451 0 0 0 0 0 0
## 452 0 0 0 0 0 0
## 453 0 0 0 0 0 0
## 454 0 0 0 0 0 0
## 455 0 0 0 0 0 0
## 456 0 0 0 0 0 0
## 457 0 0 0 0 0 0
## 458 0 0 0 0 0 0
## 459 0 0 0 0 0 0
## 460 0 0 0 0 0 0
## 461 0 0 0 0 0 0
## 462 0 0 0 0 0 0
## 463 0 0 0 0 0 0
## 464 0 0 0 0 0 0
## 465 0 0 0 0 0 0
## 466 0 0 0 0 0 0
## 467 0 0 0 0 0 0
## 468 0 0 0 0 0 0
## 469 0 0 0 0 0 0
## 470 0 0 0 0 0 0
## 471 0 0 0 0 0 0
## 472 0 0 0 0 0 0
## 473 0 0 0 0 0 0
## 474 0 0 0 0 0 0
## 475 0 0 0 0 0 0
## 476 0 0 0 0 0 0
## 477 0 0 0 0 0 0
## 478 0 0 0 0 0 0
## 479 0 0 0 0 0 0
## 480 0 0 0 0 0 0
## 481 0 0 0 0 0 0
## 482 0 0 0 0 0 0
## 483 0 0 0 0 0 0
## 484 0 0 0 0 0 0
## 485 0 0 0 0 0 0
## 486 0 0 0 0 0 0
## 487 0 0 0 0 0 0
## 488 0 0 0 0 0 0
## 489 0 0 0 0 0 0
## 490 0 0 0 0 0 0
## 491 0 0 0 0 0 0
## 492 0 0 0 0 0 0
## 493 0 0 0 0 0 0
## 494 0 0 0 0 0 0
## 495 0 0 0 0 0 0
## 496 0 0 0 0 0 0
## 497 0 0 0 0 0 0
## 498 0 0 0 0 0 0
## 499 0 0 0 0 0 0
## 500 0 0 0 0 0 0
## 501 0 0 0 0 0 0
## 502 0 0 0 0 0 0
## 503 0 0 0 0 0 0
## 504 0 0 0 0 0 0
## 505 0 0 0 0 0 0
## 506 0 0 0 0 0 0
## 507 0 0 0 0 0 0
## 508 0 0 0 0 0 0
## 509 0 0 0 0 0 0
## 510 0 0 0 0 0 0
## 511 0 0 0 0 0 0
## 512 0 0 0 0 0 0
## 513 0 0 0 0 0 0
## 514 0 0 0 0 0 0
## 515 0 0 0 0 0 0
## 516 0 0 0 0 0 0
## 517 0 0 0 0 0 0
## 518 0 0 0 0 0 0
## 519 0 0 0 0 0 0
## 520 0 0 0 0 0 0
## 521 0 0 0 0 0 0
## 522 0 0 0 0 0 0
## 523 0 0 0 0 0 0
## 524 0 0 0 0 0 0
## 525 0 0 0 0 0 0
## 526 0 0 0 0 0 0
## 527 0 0 0 0 0 0
## 528 0 0 0 0 0 0
## 529 0 0 0 0 0 0
## 530 0 0 0 0 0 0
## 531 0 0 0 0 0 0
## 532 0 0 0 0 0 0
## 533 0 0 0 0 0 0
## 534 0 0 0 0 0 0
## 535 0 0 0 0 0 0
## 536 0 0 0 0 0 0
## 537 0 0 0 0 0 0
## 538 0 0 0 0 0 0
## 539 0 0 0 0 0 0
## 540 0 0 0 0 0 0
## 541 0 0 0 0 0 0
## 542 0 0 0 0 0 0
## 543 0 0 0 0 0 0
## 544 0 0 0 0 0 0
## 545 0 0 0 0 0 0
## 546 0 0 0 0 0 0
## 547 0 0 0 0 0 0
## 548 0 0 0 0 0 0
## 549 0 0 0 0 0 0
## 550 0 0 0 0 0 0
## 551 0 0 0 0 0 0
## 552 0 0 0 0 0 0
## 553 0 0 0 0 0 0
## 554 0 0 0 0 0 0
## 555 0 0 0 0 0 0
## 556 0 0 0 0 0 0
## 557 0 0 0 0 0 0
## 558 0 0 0 0 0 0
## 559 0 0 0 0 0 0
## 560 0 0 0 0 0 0
## 561 0 0 0 0 0 0
## 562 0 0 0 0 0 0
## 563 0 0 0 0 0 0
## 564 0 0 0 0 0 0
## 565 0 0 0 0 0 0
## 566 0 0 0 0 0 0
## 567 0 0 0 0 0 0
## 568 0 0 0 0 0 0
## 569 0 0 0 0 0 0
## 570 0 0 0 0 0 0
## 571 0 0 0 0 0 0
## 572 0 0 0 0 0 0
## 573 0 0 0 0 0 0
## 574 0 0 0 0 0 0
## 575 0 0 0 0 0 0
## 576 0 0 0 0 0 0
## 577 0 0 0 0 0 0
## 578 0 0 0 0 0 0
## 579 0 0 0 0 0 0
## 580 0 0 0 0 0 0
## 581 0 0 0 0 0 0
## 582 0 0 0 0 0 0
## 583 0 0 0 0 0 0
## 584 0 0 0 0 0 0
## 585 0 0 0 0 0 0
## 586 0 0 0 0 0 0
## 587 0 0 0 0 0 0
## 588 0 0 0 0 0 0
## 589 0 0 0 0 0 0
## 590 0 0 0 0 0 0
## 591 0 0 0 0 0 0
## 592 0 0 0 0 0 0
## 593 0 0 0 0 0 0
## 594 0 0 0 0 0 0
## 595 0 0 0 0 0 0
## 596 0 0 0 0 0 0
## 597 0 0 0 0 0 0
## 598 0 0 0 0 0 0
## 599 0 0 0 0 0 0
## 600 0 0 0 0 0 0
## 601 0 0 0 0 0 0
## 602 0 0 0 0 0 0
## 603 0 0 0 0 0 0
## 604 0 0 0 0 0 0
## 605 0 0 0 0 0 0
## 606 0 0 0 0 0 0
## 607 0 0 0 0 0 0
## 608 0 0 0 0 0 0
## 609 0 0 0 0 0 0
## 610 0 0 0 0 0 0
## 611 0 0 0 0 0 0
## 612 0 0 0 0 0 0
## 613 0 0 0 0 0 0
## 614 0 0 0 0 0 0
## 615 0 0 0 0 0 0
## 616 0 0 0 0 0 0
## 617 0 0 0 0 0 0
## 618 0 0 0 0 0 0
## 619 0 0 0 0 0 0
## 620 0 0 0 0 0 0
## 621 0 0 0 0 0 0
## 622 0 0 0 0 0 0
## 623 0 0 0 0 0 0
## 624 0 0 0 0 0 0
## 625 0 0 0 0 0 0
## 626 0 0 0 0 0 0
## 627 0 0 0 0 0 0
## 628 0 0 0 0 0 0
## 629 0 0 0 0 0 0
## 630 0 0 0 0 0 0
## 631 0 0 0 0 0 0
## 632 0 0 0 0 0 0
## 633 0 0 0 0 0 0
## 634 0 0 0 0 0 0
## 635 0 0 0 0 0 0
## 636 0 0 0 0 0 0
## 637 0 0 0 0 0 0
## 638 0 0 0 0 0 0
## 639 0 0 0 0 0 0
## 640 0 0 0 0 0 0
## 641 0 0 0 0 0 0
## 642 0 0 0 0 0 0
## 643 0 0 0 0 0 0
## 644 0 0 0 0 0 0
## 645 0 0 0 0 0 0
## 646 0 0 0 0 0 0
## 647 0 0 0 0 0 0
## 648 0 0 0 0 0 0
## 649 0 0 0 0 0 0
## 650 0 0 0 0 0 0
## 651 0 0 0 0 0 0
## 652 0 0 0 0 0 0
## 653 0 0 0 0 0 0
## 654 0 0 0 0 0 0
## 655 0 0 0 0 0 0
## 656 0 0 0 0 0 0
## 657 0 0 0 0 0 0
## 658 0 0 0 0 0 0
## 659 0 0 0 0 0 0
## 660 0 0 0 0 0 0
## 661 0 0 0 0 0 0
## 662 0 0 0 0 0 0
## 663 0 0 0 0 0 0
## 664 0 0 0 0 0 0
## 665 0 0 0 0 0 0
## 666 0 0 0 0 0 0
## 667 0 0 0 0 0 0
## 668 0 0 0 0 0 0
## 669 0 0 0 0 0 0
## 670 0 0 0 0 0 0
## 671 0 0 0 0 0 0
## 672 0 0 0 0 0 0
## 673 0 0 0 0 0 0
## 674 0 0 0 0 0 0
## 675 0 0 0 0 0 0
## 676 0 0 0 0 0 0
## 677 0 0 0 0 0 0
## 678 0 0 0 0 0 0
## 679 0 0 0 0 0 0
## 680 0 0 0 0 0 0
## 681 0 0 0 0 0 0
## 682 0 0 0 0 0 0
## 683 0 0 0 0 0 0
## 684 0 0 0 0 0 0
## 685 0 0 0 0 0 0
## 686 0 0 0 0 0 0
## 687 0 0 0 0 0 0
## 688 0 0 0 0 0 0
## 689 0 0 0 0 0 0
## 690 0 0 0 0 0 0
## 691 0 0 0 0 0 0
## 692 0 0 0 0 0 0
## 693 0 0 0 0 0 0
## 694 0 0 0 0 0 0
## 695 0 0 0 0 0 0
## 696 0 0 0 0 0 0
## 697 0 0 0 0 0 0
## 698 0 0 0 0 0 0
## 699 0 0 0 0 0 0
## 700 0 0 0 0 0 0
## 701 0 0 0 0 0 0
## 702 0 0 0 0 0 0
## 703 0 0 0 0 0 0
## 704 0 0 0 0 0 0
## 705 0 0 0 0 0 0
## 706 0 0 0 0 0 0
## 707 0 0 0 0 0 0
## 708 0 0 0 0 0 0
## 709 0 0 0 0 0 0
## 710 0 0 0 0 0 0
## 711 0 0 0 0 0 0
## 712 0 0 0 0 0 0
## 713 0 0 0 0 0 0
## 714 0 0 0 0 0 0
## Comments_1
## 1 Outbreak took place during a study on gasteroenteritus in a day care center. Same paper as outbreak # 2
## 2 Secondary cases include both persons from NC and FL, some secondary cases were included in # at risk of primary infection
## 3 VWA outbreak no. 68592 in Table 1
## 4 VWA outbreak no. 69113 in Table 1
## 5 VWA outbreak no. 69479 in Table 1
## 6 VWA outbreak no. 69490 in Table 1
## 7 VWA outnreak no. 69595 in Table 1
## 8 VWA outbreak no. 69755 in Table 1
## 9 nursing home GII.4 outbreak in Spain; describes the first example of symptomatic GII.4 norovirus infection of a Lea+b2 individual homozygous for the G428A nonsense mutation in FUT2
## 10 Outbreak from oysters collected in one bay off the coast of FL, no outbreak setting specified, number at risk is unclear
## 11 Multistate outbreak caused by oysters from LA, cases are listed as "at least 180", investigation ongoing at date of publication
## 12 Outbreak 1 of 2, Cases include all employees and restaruant patrons that presented, attack rates differed in groups
## 13 Outbreak 2 of 2, "primary cases" include index cases and secondary cases, "secondary cases" include tertiary and quatery cases
## 14 Outbreak 2 of 5, attack rate applys to passagers from cruise 1, cases includes passengers and crew from all 3 voyages
## 15 Outbreak 3 of 5, attack rates from survey used to calulate cases (combined employees and passengers)
## 16 Outbreak 4 of 5, attack rates different among passengers and staff, cases are only those who went to infirmary
## 17 Outbreak 5 of 5, cases calculated using attack rate found in servey, attack rates among staff and passengers differed significantly
## 18 Outbreak at refugee camp in texas after katri hit New Orleans, at point of publication investigation was ongoing
## 19 Multistate outbreak caused by infected food/persons at a family reunion in WV.
## 20 Outbreak on a US aircraft carier, cases and at risk extrapoalted from small cross sectio l study onboard
## 21 Outbreak 1 of 22, limited information available
## 22 Outbreak 2 of 22, limited information available
## 23 Outbreak 3 of 22, limited information available
## 24 Outbreak 4 of 22, limited information available
## 25 Outbreak 5 of 22, limited information available
## 26 Outbreak 6 of 22, limited information available
## 27 Outbreak 7 of 22, limited information available
## 28 Outbreak 8 of 22, limited information available
## 29 Outbreak 9 of 22, limited information available
## 30 Outbreak 10 of 22, limited information available
## 31 Outbreak 11 of 22, limited information available
## 32 Outbreak 16 of 22, limited information available
## 33 Outbreak 17 of 22, limited information available
## 34 multi-state NV outbreak due to contami ted oysters off coast of LA; secondary cases noted 1-2 wks following for family members of cases who had not eaten oysters
## 35 Only visiters to Aborigi l community were affected, possible Aborigi l immunity
## 36 Outbreak 1 of 2, took place at two daycare centers and one elementry school who used the same lunch catering company
## 37 Outbreak in daycare lead to community outbreaks in local area, state of Rio de Janeiro, Brazil
## 38 Outbreak among nurses in a hostel at a going away party for an employee, sick from salad sandwiches
## 39 Letter, not a full article, very limited information
## 40 Group ill after canoeing on Trent river in UK at a watersports facility
## 41 secondary cases noted among family members and visitors some of which were parallel cases as those of the residents, but were not included in the study
## 42 Outbreak 15 out of 46
## 43 Outbreak 22 of 46
## 44 Outbreak 23 of 46
## 45 Outbreak 35 of 46
## 46 Large outbreak in Japan, from infected food handlers at a Restaruant
## 47 chef that prepared salads had been sick and came back to work after symptom-free for 48 h
## 48 Outbreak at a University in Ca da, restricted to residential facilities on campus
## 49 Outbreak 40 of 47, limited information
## 50 Outbreak 41 of 47, limited information
## 51 Outbreak persisted for 6 cruise trips, one passenger later became an index case for an outbreak at a longterm care facility
## 52 4 of 66
## 53 20 of 66
## 54 37 of 66
## 55 42 of 66
## 56 48 of 66
## 57 49 of 66
## 58 50 of 66
## 59 54 of 66
## 60 60 of 66
## 61 Two outbreaks combined in article, oysters were steamed prior to consumption
## 62 Outbreak from contami ted oyster beds
## 63 Outbreak due to raspberries, different strain found in raspberries than infected persons
## 64 Outbreak from catered food to a manufacturing plant, no strain informaiton available
## 65 Outbreak at a hospital in switzerland
## 66 outbreak at reception in medical facility where they served contami ted oysters affecting only people who had consumed implicated oysters
## 67 outbreak among three groups at a hotel in Virginia
## 68 Outbreak 2 of 2
## 69 #6 of 73 outbreaks listed in Table 1
## 70 #7 of 73 outbreaks listed in Table 1
## 71 #8 of 73 outbreaks listed in Table 1
## 72 #9 of 73 outbreaks listed in Table 1
## 73 #10 of 73 outbreaks listed in Table 1
## 74 #12 of 73 outbreaks listed in Table 1
## 75 #15 of 73 outbreaks listed in Table 1
## 76 #17 of 73 outbreaks listed in Table 1
## 77 #30 of 73 outbreaks listed in Table 1
## 78 #44 of 73 outbreaks listed in Table 1
## 79 #45 of 73 outbreaks listed in Table 1
## 80 #46 of 73 outbreaks listed in Table 1
## 81 #65 of 73 outbreaks listed in Table 1
## 82 #66 of 73 outbreaks listed in Table 1
## 83 #67 of 73 outbreaks listed in Table 1
## 84 #72 of 73 outbreaks listed in Table 1
## 85 #73 of 73 outbreaks listed in Table 1
## 86 Outbreak 1 of 3, restaurant with buffet style service
## 87 Outbreak 2 of 3, restaurant with buffet style service
## 88 Several patients died, several patients also relapsed after 48 hours symptom free
## 89 11 of 16
## 90 Outbreak at a primary school lunch in Japan
## 91 3 of 30
## 92 15 of 30
## 93 Outbreak at a Mother-Child health clinic
## 94 6 of 55
## 95 31 of 55
## 96 32 of 55
## 97 Waterborne outbreak in Wyoming, well placement was in violation of state laws
## 98 1 of 14
## 99 10 of 14
## 100 11 of 14, four types of transmission were documented in paper, "aerosolized" transmission not recorded in database for lack of space
## 101 12 of 14
## 102 13 of 14
## 103 14 of 14
## 104 Mean age was calculated from ages present in article
## 105 Outbreak on a ship off the coast of Japan, two possible sources of infection (seafood and persons)
## 106 Outbreak at a nursing home, the transfered to a hospital with additio l cases among patients and staff
## 107 outbreak 02172 in Table 1
## 108 outbreak 02189 in Table 1
## 109 outbreak #1 listed in Table 1 from gano at a kindergarten based on foodborne NV outbreaks
## 110 outbreak #2 listed in Table 1 from gano caterer based on foodborne NV outbreaks
## 111 outbreak desig ted BU in Table 1
## 112 outbreak desig ted CC in Table 1
## 113 outbreak desig ted DF in Table 1; secondary cases from football players who vomited in the locker room and on the field during the game and infected teammates and players on the opposing team
## 114 outbreak desig ted CB in Table 1
## 115 GII outbreak in Belgian hospital w/nursing assistant as source, which spread to patients, staff, and other hospital workers; strain related to Camberwell virus (92% nucleotide identity)
## 116 outbreak in mental care facility for the elderly in the Netherlands, which started from a group of residents who went on a pilgrimage to Lourdes, France; 9 other clusters from other countries reported AGE from Lourdes pilgrimage
## 117 outbreak B in Table; outbreak occurred in both patients and staff w/no indication of foodborne illness, but one member of the nursing staff reported a gastrointesti l illness 4 days prior to the outbreak
## 118 outbreak C in Table; occurred in nursing home where patients had dementia and were not asked to complete a question ire; 11 cases among staff were still symptomatic when they returned to work
## 119 outbreak 3 in Table 1
## 120 outbreak 4 in Table 1
## 121 outbreak 5 in ship E
## 122 outbreak 6 in ship A
## 123 outbreak 7 on ship F in Table 2
## 124 outbreak 8 on ship G in Table 2; ill person on this ship initiated outbreak in nursing home; same ship as from record 254 outbreak
## 125 outbreak 9 on ship G in Table 1; same ship as from record 253 outbreak and outbreak ensued even after 1 week of cleaning ship
## 126 outbreak 4 in Table 3
## 127 outbreak 5 in Table 3
## 128 outbreak 6 in Table 3
## 129 outbreak 7 in Table 3
## 130 outbreak 8 in Table 3
## 131 outbreak A in Table 1
## 132 outbreak occurred in 3 separate institutions & began when a cleaner who had worked in building B defecated on the floor of building A, cleaned it up w/a mop & continued to use the mop to clean other surfaces; spread to C from visiting member of B
## 133 large outbreak that occurred after Hurricane Katri when ppl affected were placed in a megashelter in Houston; cases were desig ted by if they had GE & had entered clinics; detected mostly sequivants of GI.17 w/slight nucleotide differences
## 134 outbreak took place at Swedish manufacturing company canteen where food handler sick with gastroenteritis vomited and contami ted tomatoes and hamburger buns
## 135 outbreak 1 of 3
## 136 outbreak 2 of 3
## 137 outbreak 3 of 3
## 138 outbreak 1 of 13
## 139 outbreak 2 of 13
## 140 outbreak 3 of 13
## 141 outbreak 4 of 13
## 142 0
## 143 non-tour group members were the secondary cases since exposed on plane
## 144 Outbreak 1 of 3 in a cluster.
## 145 Most cases in children less than 7 years old. This study is in line with the proportion of non-GII.4 outbreaks that is found to be higher in food-borne outbreaks whereas GII.4 outbreaks were mostly linked to person-to-person transmission. Cluster 2 of 3
## 146 Cluster of outbreaks; Outbreak 1 of 3 in cluster
## 147 This data was also a lyzed with respect to blood groups and Lewish Phenotypes. Cook was ill 4 days before and other restaurant employees became sick 3 days 50/83 members were asymptomatic may include unexposed persons.
## 148 Mortality was 16 times higher in early (primary) cases than in late (secondary) cases. There were also 25/183 HCWs in the outbreak but recorded most statistics for residents
## 149 5/520 crew affected which indicates they were using proper outbreak control measures. average 7.75 hr delay in reporting illness preventing prompt response. Greatest risk to cruise passengers were those in cabins on Main deck from contaimated environment
## 150 10 HCW affected (out of 125, and 41 residents (out of 265). 1 HCW was the index case. 83% of residents had disabilities in daily activities; 63% needed tube feedings, Foley insertions or chronic tracheotomies.
## 151 information available for guests in group A; case numbers from group A + foodhandlers (staff)
## 152 Outbreak 2 of 21
## 153 Outbreak 3 of 21
## 154 Outbreak 8 of 21
## 155 Outbreak 9 of 21
## 156 Outbreak 10 of 21
## 157 Outbreak 11 of 21
## 158 Outbreak 12 of 21
## 159 Outbreak 13 of 21
## 160 Outbreak 14 of 21
## 161 Outbreak 15 of 21
## 162 Outbreak 3 of 3
## 163
## 164 Focuses more on irritable bowel syndrome than norovirus
## 165 outbreak 2 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 166 outbreak 3 in Table 1; sick child helped prepare sandwiches at camp; no leftovers from the sandwiches were available because of late reporting; ; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 167 outbreak 4 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 168 outbreak 5 in Table 1; history of GE was reported by persons preparing the food in the week before the outbreak; sandwiches tested positive for NoV; ; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 169 outbreak 6 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 170 Cases include both troops and hospital staff, at risk include 50% of troops and all hospital staff, hospital staff may be secondary cases but it was not specified
## 171 VWA outbreak no. 65774 in Table 1
## 172 VWA outbreak no. 65802 in Table 1
## 173 VWA outbreak no. 65902 in Table 1
## 174 VWA outbreak no. 66430 in Table 1
## 175 largest outbreak in nursing homes (6 total) in Israel which took place for 3 wks, infecting both staff and residents
## 176 Third of four outbreaks meeting inclusion criteria in an article, cases are both staff and patients, secondary cases in hospital, contracted from a nursing home patient
## 177 Second outbreak from Frankston, limited information available
## 178 Fourth of four outbreaks meeting inclusion criteria in an article, very limited information available, cases include staffa and residents
## 179 Outbreak with secondary transmission among british military perso l, very unusual presentation, severe cases
## 180 Outbreak 1 of 3 + community cases, catered event to school staff
## 181 Outbreak 2 of 3 + community cases, catered lunch to a corporation
## 182 Outbreak 3 of 3 + community cases, catered lunch at a social service organization
## 183 Community Cases in an article containing 3 outbreaks, 90% of community cases from same restaruant
## 184 Outbreak 8 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 185 outbreak on a cruise ship, question ire for passengersl although crew got sick as well
## 186 Outbreak in three wards of a long term care facility in Australia, norovirus confirmed on two of three wards
## 187 Outbreak in on a hospital ward in NY, limited information available in letter to the editor, co-infection with C. Difficile
## 188 Outbreak at a university in TX, foodhandler's infant was sick, foodhandler infected ham and deli foods, students became infected from deli food
## 189 Outbreak 20 of 22, limited information available
## 190 Outbreak 21 of 22, limited information available
## 191 Outbreak 22 of 22, limited information available
## 192 Number at risk were the number interviewed, cases only include guests, cases in body and abstract do not match
## 193 Cases include staff and patients, secondary cases are from both the nursing homes and hospital in France
## 194 Outbreak 3 of three from fourth part of article, 21 cases from hospital and 48 from nursing home
## 195 Large outbreak from wedding cakes served at 42 weddings during one weekend
## 196 Outbreak aboard a british vy ship deployed in the Arabian Gulf
## 197 Outbreak at 30 locations from 1 caterer, double attack rate among adults
## 198 Outbreak in a mental hospital, infection control limited outbreak, staff and patients combined in cases
## 199 Outbreak 1 of 5 in article, limited information
## 200 Outbreak 3 of 5 in article, limited information
## 201 Outbreak 5 of 46
## 202 Outbreak 6 of 46
## 203 Outbreak 10 of 46
## 204 Outbreak 11 of 46
## 205 Outbreak 21 of 46
## 206 Outbreak 27 out of 46
## 207 Outbreak 33 of 46
## 208 Outbreak 34 of 46
## 209 Outbreak 45 of 46
## 210 Outbreak 46 of 46
## 211 Outbreak of Norovirus onboard a cruse ship, early use of RTPCR
## 212 Outbreak 18 of 47, limited information
## 213 Outbreak 19 of 47, limited information
## 214 Outbreak 20 of 47, limited information
## 215 Outbreak 21 of 47, limited information
## 216 Outbreak 35 of 47, limited information
## 217 Outbreak 36 of 47, limited information
## 218 Outbreak 37 fo 47, limited information
## 219 Outbreak 38 of 47, limited information
## 220 Outbreak 39 of 47, limited information
## 221 Outbreak 47 of 47, limited information
## 222 outbreak 17 of 17
## 223 Outbreak 1 of 19, limited information
## 224 Outbreak 2 of 19, limited information
## 225 Outbreak 3 of 19, limited information
## 226 Outbreak 4 of 19, limited information
## 227 Outbreak 5 of 19, limited information
## 228 Outbreak 6 of 19, limited information
## 229 Outbreak 7 of 19, limited information
## 230 Outbreak 8 of 19, limited information
## 231 Outbreak 9 of 19, limited information
## 232 Outbreak 10 of 19, limited information
## 233 Outbreak 11 of 19, limited information
## 234 Outbreak 12 of 19, limited information
## 235 Outbreak 13 of 19, limited information
## 236 Outbreak 14 of 19, limited information
## 237 Outbreak 15 of 19, limited information
## 238 Outbreak 16 of 19, limited information
## 239 Outbreak 17 of 19, limited information
## 240 Outbreak 18 of 19, limited information
## 241 Outbreak 19 of 19, limited information
## 242 Foodborne outbreak from restaurant at a hotel associated with a hospital
## 243 participants of three consecutive 5-night educatio l boating trips became ill, index case was most likely a participant who arrived displaying symptoms of gastroenteritis
## 244 3 of 66
## 245 6 of 66
## 246 11 of 66
## 247 16 of 66
## 248 17 of 66
## 249 26 of 66
## 250 29 of 66
## 251 36 of 66
## 252 38 of 66
## 253 39 of 66
## 254 40 of 66
## 255 41 of 66
## 256 44 of 66
## 257 45 of 66
## 258 47 of 66
## 259 59 of 66
## 260 62 of 66
## 261 64 of 66
## 262 Outbreak 1 of 2, contami ted ground water at a hotel
## 263 Outbreak 2 of 2, contami ted ground water at a hotel
## 264 outbreak at hospital origi lly thought to be caused by C. difficile w 2 clusters of cases
## 265 Outbreak information was gathered by use of a computer survey on a common network within the community
## 266 Limited information available
## 267 Outbreak at a retirement home in Australia, envornmental and person to person spread
## 268 #1 of 73 outbreaks in Table 1
## 269 #11 of 73 outbreaks listed in Table 1
## 270 #14 of 73 outbreaks listed in Table 1
## 271 #40 of 73 outbreaks listed in Table 1
## 272 #42 of 73 outbreaks listed in Table 1
## 273 #47 of 73 outbreaks listed in Table 1
## 274 #48 of 73 outbreaks listed in Table 1
## 275 #57 of 73 outbreaks listed in Table 1
## 276 #58 of 73 outbreaks listed in Table 1
## 277 #59 of 73 outbreaks listed in Table 1
## 278 #60 of 73 outbreaks listed in Table 1
## 279 #61 of 73 outbreaks listed in Table 1
## 280 Large waterborne outbreak in Italy, Rotavirus (+) in 48% of samples, more than norovirus
## 281 1 of 16
## 282 6 of 16
## 283 10 of 16
## 284 13 of 16
## 285 15 of 16
## 286 16 of 16, water from a broken pipe
## 287 Outbreak on a cruise ship in Med Sea 1996
## 288 1 of 3, outbreak at a vegatarian buffet, probable index case is ma ger of restaurant
## 289 2 of 3, cleaners became ill following cleaning
## 290 outbreak code 8 listed in Table 1 from Japan caused by oysters
## 291 outbreak code 11 listed in Table 1 from Japan caused by oysters
## 292 Outbreak following an earthquake in Japan, evacuation center composed of mostly elderly persons
## 293 Outbreak at a camp and conference center in Sweden, wells were enventually replacted by municipal water supply
## 294 6 of 30
## 295 7 of 30
## 296 10 of 30
## 297 11 of 30
## 298 20 of 31
## 299 30 of 31
## 300 31 of 31
## 301 2 of 55
## 302 9 of 55
## 303 13 of 55
## 304 23 of 55
## 305 44 of 55
## 306 45 of 55
## 307 Waterborne outbreak on the appalachian trail
## 308 Outbreak in Finland due to raspberries at a company lunch
## 309 Number of primary cases is secondary cases subtracted from total cases. Same math used for 2ndary at risk number
## 310 3 of 14
## 311 6 of 14
## 312 7 of 14
## 313 8 of 14
## 314 Outbreak in a nursing home in Maryland in 1994
## 315 PCR results are not discussed in detail; there was a second outbreak in an acute ward in a separate building (see record 31)
## 316 this outbreak occurred in ward X of Alfred Hospital w/the suspected source being a nurse who had worked in ward B in a separate building which had also had a NV outbreak (see record 8)
## 317 Outbreak at a cafeteria in a hospital
## 318 Outbreak during flooding at a hotel, affected individuals were American tourists in Austria
## 319 outbreak desig ted HSS/3/97/DEU in Table 1
## 320 outbreak desig ted BRA/3/98/DEU in Table 1
## 321 outbreak desig ted BLN/3/98/DEU in Table 1
## 322 outbreak desig ted RP/3/98/DEU in Table 1
## 323 outbreak desig ted HSS/3/98/DEU in Table 1
## 324 outbreak desig ted SAX/4/98/DEU in Table 1
## 325 outbreak 02065 in Table 1
## 326 outbreak 03040 in Table 1
## 327 outbreak 03042 in Table 1
## 328 outbreak 03047 in Table 1
## 329 outbreak 03050 in Table 1
## 330 outbreak 03053 in Table 1
## 331 outbreak 03054 in Table 1
## 332 outbreak 03055 in Table 1
## 333 outbreak consisting of 44 clusters through eating implicated oysters thought to be contami ted through either waste discharge from boaters or faulty septic systems near the bay
## 334 outbreak #6 listed in Table 1 from Kagoshima school based on foodborne NV outbreaks
## 335 outbreak #8 listed in Table 1 from Gunma bakery based on foodborne NV outbreaks
## 336 outbreak #12 listed in Table 1 from Gunma hotel based on foodborne NV outbreaks
## 337 outbreak A in Table 1
## 338 outbreak B in Table 1
## 339 outbreak C in Table 1
## 340 outbreak D in Table 1
## 341 outbreak caused by unsanitary practices and illness of food handlers of catering company who had provided food for 14 events in two days
## 342 outbreak desig ted CA in Table 1
## 343 outbreak desig ted CL in Table 1
## 344 outbreak desig ted GW in Table 1
## 345 outbreak desig ted GX in Table 1
## 346 outbreak desig ted MC in Table 1
## 347 outbreak desig ted FA in Table 1
## 348 outbreak desig ted CH in Table 1; secondary cases among siblings and parents by infected pupils
## 349 outbreak occurred in nursery affecting both newborns and staff (GI and GII NV)
## 350 occurred in restaurant from grilled oysters & interviews were conducted on those who ate on Fri & Sat nights b/n Oct 31 & Nov 19; NoV was detected in stool specimens but paper made unclear which strains correlated w/specific outbreaks
## 351 point-source outbreak occurred at a function where they served oyster cocktails; NoV was detected in stool specimens but paper made unclear which strains correlated w/specific outbreaks
## 352 outbreak 6 in Table 1
## 353 outbreak 8 in Table 1
## 354 outbreak 11 in Table 1
## 355 outbreak 2 on ship B in Table 2
## 356 outbreak 1 in Table 3
## 357 outbreak J in Table 1
## 358 outbreak K in Table 1
## 359 outbreak occurred at Worcester Polytechnic Institute, medical records & question ires were used to assess inclusion criteria including symptoms of usea, vomiting, diarrhea, and abdomi l pain
## 360 steak also implicated as vehicle; primary case data (incubation, duration, age) from patrons (n=211)
## 361 There was another outbreak in the same school district with SV present, NV was not tested for. Not sure how outbreaks may have been related
## 362 Soup/bread vehicle also. 152/550 patients/residents affected (27.6%) and 52/240 staff members affected (21.7%) HC facility served by central kitchen. Asymptomatic kitchen staff sources of food contami tion. no review of kitchen hygiene practices
## 363 Outbreak 4 of 4
## 364 Outbreak 17 of 21
## 365 Outbreak 18 of 21
## 366 Outbreak 19 of 21
## 367 Outbreak 1 of 3
## 368
## 369 Outbreak 5 of 39
## 370 Outbreak 6 of 39
## 371 Outbreak 13 of 39
## 372 Outbreak 14 of 39
## 373 Outbreak 21 of 39
## 374 Outbreak 32 of 39
## 375 Outbreak 36 of 39
## 376 Outbreak 37 of 39
## 377 Outbreak 38 of 39
## 378 Home A
## 379 Home B
## 380 Home C
## 381 Home D
## 382 Home E
## 383 Home F
## 384
## 385
## 386
## 387 Outbreak from a longitudi l study on diarrheal illnesses in infants in daycare. All infants in this outbreak had co-infection with astrovirus
## 388 Outbreak in a Military base in the US. Cases and those at-risk are from the Army and Marines units only, Japanese not included
## 389 outbreak 7 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 390 outbreak 8 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 391 outbreak 9 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 392 Outbreak at a restaurant along a bus route, cases were backcalculated in the article from the number at risk and the attack rate found in their study
## 393 Outbreak at a summer resort in Southern Italy. Fecal contami tion of water supply, 24 day outbreak period
## 394 VWA outbreak no. 66842 in Table 1
## 395 VWA outbreak no. 66878 in Table 1
## 396 VWA outbreak no. 67071 in Table 1
## 397 VWA outbreak no. 67096 in Table 1
## 398 VWA outbreak no. 67133 in Table 1
## 399 VWA outbreak no. 67218 in Table 1
## 400 VWA outbreak no. 67265 in Table 1
## 401 VWA outbreak no. 67814 in Table 1
## 402 3 unrelated groups of people who ate at a restaurant got sick with gastroenteritis as well as all staff, which spread in many modes due to unsanitary procedures of staff and ill persons working
## 403 Outbreak due to contami ted water at bakery, bakers became sick, custard made with contami ted water infected satalite stores in communities
## 404 Outbreak 1 of 2 from article, Recombi te NoV with polymerase region from cluster 2
## 405 First of four outbreaks meetin our criteria described in article, very limited information available
## 406 Outbreak 1 of 2, from camp A, cases and at risk are from week three of outbreak only
## 407 Outbreak 2 of 2, camp B in Northern Wisconsin, sequencing not finished at time of report
## 408 Oubtreak 1 of 5 in article, data is combined passengers and crew for two back-2-back cruises
## 409 CDC reported outbreak at a Summer camp in WY, waterborne from fecal contami ted well water, co-infection with Campylobacter jejuni
## 410 Outbreak 2 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 411 Outbreak 7 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 412 Outbreak 9 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 413 Outbreak in Hong Kong pediatric unit, effective control measures prevented further spread of virus
## 414 outbreak in Tung Wah hospital was controlled by use of alcohol-based hand rub
## 415 Outbreak 2 of 4, all from frozen raspberries
## 416 Outbreak 3 of 4, all from frozen raspberries
## 417 Outbreak 4 of 4, all from frozen raspberries
## 418 Outbreak 2 of 2, index case was a 2-year old, families were together at a meal
## 419 Brief letter reporting outbreak in Sidney, Australia in 1998 in a daycare centre
## 420 Third outbreak section in article, transmission following a meal with multiple families, transmission route inconclusive
## 421 outbreak caused by index case at Univ of Alberta Hospital was controlled, but difficult b/c i bility to restrict psychiatric patients to their rooms and to maintain isolation precautions
## 422 Limited information available, outbreak mentioned briefly in article
## 423 Outbreak 4 of 5 in article, limited information
## 424 Outbreak 5 of 5 in article, limited information
## 425 scout jamboree was divided into camps A-G, all of which had NoV cases; paper focused on finding reproduction number (defined as the average number of secondary cases caused by 1 typical case in the absence of and after enhanced hygiene measures)
## 426 Outbreak 1 of 3 in article, limited information
## 427 Outbreak 2 of 3 in article, limited information available
## 428 Outbreak at recreatio l water fountain, some information on secondary cases included
## 429 Outbreak 1 of 47, limited information
## 430 Oubtreak 2 of 47, limited information
## 431 12 of 66
## 432 55 of 66
## 433 63 of 66
## 434 #3 of 73 outbreaks listed in Table 1
## 435 #4 of 73 outbreaks listed in Table 1
## 436 #5 of 73 outbreaks listed in Table 1
## 437 #26 of 73 outbreaks listed in Table 1
## 438 #27 of 73 outbreaks listed in Table 1
## 439 #28 of 73 outbreaks listed in Table 1
## 440 #29 of 73 outbreaks listed in Table 1
## 441 #43 of 73 outbreaks listed in Table 1
## 442 #49 of 73 outbreaks listed in Table 1
## 443 #50 of 73 outbreaks listed in Table 1
## 444 #62 of 73 outbreaks listed in Table 1
## 445 #63 of 73 outbreaks listed in Table 1
## 446 #64 of 73 outbreaks listed in Table 1
## 447 #69 of 73 outbreaks listed in Table 1
## 448 #70 of 73 outbreaks listed in Table 1
## 449 #71 of 73 outbreaks listed in Table 1
## 450 Outbreak among three canteens in Finland on the same date, related to salad consumption
## 451 outbreak during 13 of 91 rafting trips from different companies, but the ill rafters had eaten ready-to-eat meat product infected by ill worker at processing company who had sliced the meat w/bare hands
## 452 Secondary cases: at risk are those from 75 infected students returning survey, each primary case = 1.01 secondary cases
## 453 Outreak due to contami ted pool water at a community pool in Finland
## 454 2 of 16
## 455 3 of 16
## 456 7 of 16
## 457 8 of 16
## 458 14 of 16
## 459 3 of 3, number of cases is likely to be underestimated
## 460 Outbreak due to fecal contami tion in drinking water
## 461 1 of 2, limited information available
## 462 2 of 2, limited information available
## 463 1 of 30
## 464 2 of 30
## 465 Outbreak in England from contami ted food (vomiting food handler) at a wedding
## 466 4 of 14
## 467 5 of 14
## 468 9 of 14
## 469 Water/Foodborne outbreak in Italy, cases back-calculated from attack rate and number at risk; recombi nt GIIb-GII.3 virus detected
## 470 Large outbreak at a lake in sweden, number of cases are those used in the case control study
## 471 outbreak #9 listed in Table 1 from Gunma restaurant based on foodborne NV outbreaks
## 472 outbreak E in Table 1
## 473 outbreak F in Table 1
## 474 outbreak G in Table 1
## 475 outbreak H in Table 1
## 476 outbreak I in Table 1, oyster growing sites were implicated in presumed viral gastroenteritis outbreaks in 1994
## 477 outbreak J in Table 1, oyster growing sites were implicated in presumed viral gastroenteritis outbreaks in 1994
## 478 frozen Japanese oysters from hospital reception in the Goulburn Valley, Victoria, Australia; desig ted Hu/NV/Goulburn Valley G5175 A/1983/AUS (GOV=83a), Hu/NV/Goulburn Valley G5175 B/1983/AUS (GOV/83b) & Hu/NV/Goulburn Valley G5175 C/1983/AUS (GOV/83c)
## 479 G1 (80% identity Desert Shield) outbreak on USS Peleliu was caused by unidentified source, however, crew members shared quarters, restrooms closely throughout 6 mo deployment
## 480 G1 (97% identity Southampton virus) outbreak on USS Peleliu was caused by unidentified source, however, crew members shared quarters, restrooms closely throughout 6 mo deployment
## 481 outbreak on cruise ship traveling throughout Europe, but was just one of a cluster of ship-related outbreaks recorded at that time; multiple sources suspected but none confirmed; index case identified
## 482 desig ted outbreak A in paper took place at BBQ as GGII.6 hypothesized to be the result of ill food handler who prepared salads; estimated 28 attended but only 26 completed survey; this catering company also spread NoV to another BBQ on the same day
## 483 outbreak B took place at BBQ as GGII.6 hypothesized to be the result of ill food handler who prepared salads; estimated 250 attended but only received 106/194 surveyed; this catering company also spread NoV to another BBQ on the same day
## 484 desig ted outbreak A in paper; early cases occurred in the hostel section with subsequent spread to the nursing home; staff may have transmitted the virus while moving within the facility but source unclear
## 485 outbreak occurred in 2 hotels from oyster eating raw and cooked oysters; No contact details were available for other attendees at the 2 hotels b/c contact details for patrons were not recorded
## 486 this was a large outbreak that affected the whole capital city of Podgorica in Montenegro due to munipal water source contami tion, total size of outbreak estimated to be 10 000-15 000 from population 136,000 w/an attack rate of 10%.
## 487 outbreak 7 in Table 1
## 488 outbreak 3 on ship C in Table 2
## 489 outbreak 4 on ship D in Table 2
## 490 outbreak 2 in Table 3
## 491 outbreak 3 in Table 3
## 492 outbreak 1 of 3 (group A, from Illinois)
## 493 outbreak 2 of 3 (group B, from California)
## 494 outbreak 3 of 3 (group C, from Oklahoma)
## 495 0
## 496 0
## 497 secondary cases were likely underrepresented since those who were ill were more likely to return questio ire
## 498 data applies to confirmed norovirus cases
## 499 Outbreak 1 of 21
## 500 Outbreak 4 of 21
## 501 Outbreak 5 of 21
## 502 Outbreak 6 of 21
## 503 Outbreak 7 of 21
## 504 Outbreak 20 of 21
## 505 Outbreak 2 of 3
## 506
## 507 Outbreak 33 of 39
## 508
## 509
## 510
## 511 No information on secondary cases given
## 512 Boxed banquet sent to car dealerships with contami ted salad, 14 states involved
## 513 Waterborne outbreak at 2 snowmobile lodges in WY, contami ted sewage seeped into ground water
## 514 outbreak 1 in Table 1; NoV detected in leftovers of chicken w/rice and soup, but unopened bags of the same production date tested negative, implicating food handler as source; Table 2 not included b/c they were referenced from other papers
## 515 Limited info available, 2nd outbreak of 3 described in a review article, other 2 outbreaks recorded in origi l article
## 516 VWA outbreak no. 63808 in Table 1
## 517 VWA outbreak no. 64099 in Table 1
## 518 VWA outbreak no. 64317 in Table 1
## 519 VWA outbreak no. 64599 in Table 1
## 520 VWA outbreak no. 64605 in Table 1
## 521 VWA outbreak no. 64815 in Table 1
## 522 VWA outbreak no. 69787 in Table 1
## 523 outbreak No X. in Table
## 524 Outbreak at a Bermuda Hotel. Fecal contami tion of water by broken and outdated plumbing system
## 525 Second of 2 outbreaks from article, Recombi te NoV strain, polymerase region encodes for no known cluster
## 526 person-to-person outbreak in ward of hospital, strains not specified, dept surveys identified possible spread throughout hospital identifying 3 NV strains (1 identical to primary outbreak in ward A)
## 527 Although 3 cohorts were studied (i.e. school children, skiers, and local residents) the outbreak was correlated with a common source municipal water supply, and thus was treated as one outbreak.
## 528 main symptoms were vomiting and usea although some individuals had diarrhea
## 529 Outbreak origi lly attributed to false Shiga toxin positive assay, results are from a case-control study, attack rate should not be calculated here
## 530 CDC reported outbreak in a pool in Vermont, low chlori tion did not i ctivate virus due to maintenence problems with chlori tion
## 531 Outbreak at a restaurant in MI, transmission from sick employees to patrons and other employees
## 532 Outbreak at Elementary school, attack rates differed amon staff and students, all had some squence region b
## 533 Outbreak 1 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 534 Outbreak 3 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 535 Outbreak 4 of 9 in article, limited information available. Outbreak continues from Dec. 1998 to July of 1999, huge number of infected persons
## 536 Outbreak 5 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 537 Outbreak 6 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 538 Prolonged outbreak at a hotel, staff not included in case count, cases only comprise guests who became sick through April 1st
## 539 Many strains here, three month ourtbreak from raw oysters in British Columbia, could not trace back oysters to a specific harvest site
## 540 Large outbreak from catered event, cases do not include restaruant workers, attack rate and number at risk are median estimates
## 541 Outbreak 12 of 22, limited information available
## 542 Outbreak 13 of 22, limited information available
## 543 Outbreak 14 of 22, limited information available
## 544 Outbreak 15 of 22, limited information available
## 545 Outbreak 18 of 22, limited information available
## 546 Outbreak 19 of 22, limited information available
## 547 Outbreak 1 of 3 in article, oysters from contami te oyster beds from storm sewer overflow
## 548 Outbreak 2 of 3 in article, oysters from contami ted oyster beds from storm sewer overflow
## 549 Point source environmental contami tion, dose response according to how close to index case, persisted in environment for days
## 550 Outbreak 1 of 3 from this section of article
## 551 Outbreak 2 of 3 from this section of article
## 552 Outbreak 3 of 3 from this section of article
## 553 Second outbreak description in article, untreated water from purification plant responsible
## 554 Outbreak 1 of three from fourth part of article, this outbreak not actually confirmed by RTPCR but epi-evidence would suggest NoV is responsible
## 555 Outbreak 2 of three from fourth part of article, 29 cases from hospital and 6 from nursing home
## 556 outbreak occurred in 3 clusters between Dec 2006 and Feb 2007 w/dept closures after each
## 557 Outbreak following meal of raw oysters in the UK, all persons who consumed oysters became ill
## 558 infection from index case (diabetic man) and spread due to staffing shortage necessitating cohort female and male wards; secondary spread mentioned caused by aerosolism of vomitus
## 559 this outbreak is related to outbreak ID4 in Lymington Hospital which occurred 9 days prior to this outbreak and was caused by the same Lymington virus strain
## 560 Foodborne outbreak from a point source on an Israeli military base
## 561 Outbreak 2 of 5 in article, limited information
## 562 Outbreak 1 of 2 in article, may be same outbreak as in Halperin 2005 but different number of cases
## 563 Outbreak 2 of 2 in article, very limited information available
## 564 Outbreak 3 of 46
## 565 Outbreak 4 of 46
## 566 Outbreak 7 of 46
## 567 Outbreak 8 of 46
## 568 Outbreak 9 of 46
## 569 Outbreak 12 of 46
## 570 Outbreak 13 of 46
## 571 Outbreak 14 of 46
## 572 Outbreak 16 out of 46
## 573 Outbreak 17 out of 46
## 574 Outbreak 18 of 46
## 575 Outbreak 20 of 46
## 576 Outbreak 24 of 46
## 577 Outbreak 25 of 46
## 578 Outbreak 26 of 46
## 579 Outbreak 28 fo 46
## 580 Outbreak 29 of 36
## 581 Outbreak 30 of 46
## 582 Outbreak 31 of 46
## 583 Outbreak 32 of 46
## 584 Outbreak 36 of 46
## 585 Outbreak 37 of 46
## 586 Outbreak 38 of 46
## 587 Outbreak 39 of 46
## 588 Outbreak 40 of 46
## 589 Outbreak 41 of 46
## 590 Outbreak 42 of 46
## 591 Outbreak 43 of 46
## 592 Outbreak 44 of 46
## 593 Outbreak at a New Zealand Ski Resort, due to sewage flow in to drinking water supply
## 594 Outbreak of NoV and E.Coli at same time, some secondary cases reported
## 595 Outbreak 3 of 47, limited information
## 596 Outbreak 4 of 47, limited information
## 597 Outbreak 5 of 47, limited information
## 598 Outbreak 6 of 47, limited information
## 599 Outbreak 7 of 47, limited information
## 600 Outbreak 8 of 47, limited information
## 601 Outbreak 9 of 47, limited information
## 602 Outbreak 10 of 47, limited information
## 603 Outbreak 11 of 47, limited information
## 604 Outbreak 12 of 47, limited information
## 605 Outbreak 13 of 47, limited information
## 606 Outbreak 14 of 47, limited information
## 607 Outbreak 15 of 47, limited information
## 608 Outbreak 16 of 47, limited information
## 609 Outbreak 17 of 47, limited information
## 610 Outbreak 22 of 47, limited information
## 611 Outbreak 23 of 47, limited information
## 612 Outbreak 24 of 47, limited information
## 613 Outbreak 25 of 47, limited information
## 614 Outbreak 26 of 47, limited information
## 615 Outbreak 27 of 47, limited information
## 616 Outbreak 28 fo 47, limited information
## 617 Outbreak 29 of 47, limited information
## 618 Outbreak 30 of 47, limited information
## 619 Outbreak 31 of 47, limited information
## 620 Outbreak 32 of 47, limited information
## 621 Outbreak 33 fo 47, limited information
## 622 Outbreak 34 of 47, limited information
## 623 Outbreak 42 of 47, limited information
## 624 Outbreak 43 of 47, limited information
## 625 Outbreak 44 of 47, limited information
## 626 Outbreak 45 of 47, limited information
## 627 Outbreak 46 of 47, limited information
## 628 Outbreak 1 of 17, limited information
## 629 Outbreak 2 of 17, limited information
## 630 Outbreak 3 of 17, limited information
## 631 Outbreak 4 of 17, limited information
## 632 Outbreak 5 of 17, limited information
## 633 Outbreak 6 of 17, limited information
## 634 Outrbeak 7 of 17, limited information
## 635 Outbreak 8 fo 17, limited information
## 636 Outbreak 9 fo 17, limited information
## 637 Outbreak 10 of 47, limited information
## 638 Outbreak 11 of 17, limited information
## 639 Outbreak 12 of 17, limited information
## 640 Outbreak 13 of 17, limited information
## 641 Outbreak 14 of 17, limited information
## 642 Outbreak 15 of 17, limited information
## 643 Outbreak 16 of 17, limited information
## 644 Outbreak during playgroup at private home, all mothers and two infants sick from infant index case
## 645 17 week outbreak at John's Hopkins Hospital, extensive description of efforts to stop transmission
## 646 1 of 66
## 647 2 of 66
## 648 5 of 66
## 649 7 of 66
## 650 8 of 66
## 651 9 of 66
## 652 10 of 66
## 653 13 of 66
## 654 14 of 66
## 655 15 of 66
## 656 18 of 66
## 657 19 of 66
## 658 21 of 66
## 659 22 of 66
## 660 23 of 66
## 661 24 of 66
## 662 25 of 66
## 663 27 of 66
## 664 28 of 66
## 665 30 of 66
## 666 31 of 66
## 667 32 of 66
## 668 33 fo 66
## 669 34 of 66
## 670 35 of 66
## 671 46 of 66
## 672 52 of 66
## 673 53 of 66
## 674 56 of 66
## 675 57 of 66
## 676 58 of 66
## 677 61 of 66
## 678 65 of 66
## 679 Source of outbreak not determined, number of cases most likely much greater, sequencing was pending
## 680 outbreak at Helsinki University Central Hospital that spread throughout wards and had 3 peaks of outbreaks between Dec 2006 and May 2007 that may have been caused by NV spread in community
## 681 Outbreak at a catered event, may be a discrepancy between number ill (93) and number with gastroenteritis (80)
## 682 Outbreak aboard two consecutive cruises
## 683 Outbreak in Swiss hospital, infection control measures were limited because of staff shortage
## 684 cases were mostly freshmen at a university in Cambridge, MA and a sick chef who worked one day after onset of symptoms was suspected as the source of outbreak, mentioned secondary cases but did not give any information
## 685 Outbreak from boxed lunch served to 11 japanese companies
## 686 Secondary cases calculated by subtracting the number of primary cases from number at risk and total cases
## 687 outbreak caused by index case, a child who vomited on the bus ride to a youth hostel in Salzburg for a holiday skiing weekend and immediately on arrival in the lobby; cases were among students and teachers from 4 different schools
## 688 Outbreak at a rehabilitation center, prolonged over three months
## 689 Multi-country outbreak due to contami ted oysters, flooding contributed to the contami tion of oyster beds
## 690 Stool samples were positive for multiple NoV's and multiple viruses
## 691 Outbreak 1 of 2, post-operative ward
## 692 #2 of 72 outbreaks listed in Table 1
## 693 #31 of 73 outbreaks listed in Table 1
## 694 #32 of 73 outbreaks listed in Table 1
## 695 #33 of 73 outbreaks listed in Table 1
## 696 #34 of 73 outbreaks listed in Table 1
## 697 #35 of 73 outbreaks listed in Table 1
## 698 #36 of 73 outbreaks listed in Table 1
## 699 #37 of 73 outbreaks listed in Table 1
## 700 #38 of 73 outbreaks listed in Table 1
## 701 #39 of 73 outbreaks listed in Table 1
## 702 #53 of 73 outbreaks listed in Table 1
## 703 #54 of 73 outbreaks listed in Table 1
## 704 #55 of 73 outbreaks listed in Table 1
## 705 #56 of 73 outbreaks listed in Table 1
## 706 #68 of 73 outbreaks listed in Table 1
## 707 Airborne outbreak from aerosolized vomit during a private dinner at a hotel
## 708 Outbreak 3 of 3, restaurant with buffet style service
## 709 Outbreak at a long-term geriatric care facility, several patients died as a result
## 710 4 of 16
## 711 5 of 16
## 712 9 fo 16
## 713 12 of 16
## 714 Outbreak in an elderly care ward in Ireland
## Path1
## 1 No
## 2 No
## 3 Unspecified
## 4 Unspecified
## 5 Unspecified
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 No
## 10 Unspecified
## 11 Unspecified
## 12 No
## 13 No
## 14 Unspecified
## 15 Unspecified
## 16 Unspecified
## 17 Unspecified
## 18 No
## 19 No
## 20 Yes
## 21 Unspecified
## 22 Unspecified
## 23 Unspecified
## 24 Unspecified
## 25 Unspecified
## 26 Unspecified
## 27 Unspecified
## 28 Unspecified
## 29 Unspecified
## 30 Unspecified
## 31 Unspecified
## 32 Unspecified
## 33 Unspecified
## 34 No
## 35 Yes
## 36 No
## 37 Yes
## 38 No
## 39 Unspecified
## 40 Unspecified
## 41 No
## 42 Unspecified
## 43 Unspecified
## 44 Unspecified
## 45 Unspecified
## 46 Yes
## 47 No
## 48 Unspecified
## 49 Unspecified
## 50 Unspecified
## 51 Unspecified
## 52 Unspecified
## 53 Unspecified
## 54 Unspecified
## 55 Unspecified
## 56 Unspecified
## 57 Unspecified
## 58 Unspecified
## 59 Unspecified
## 60 Unspecified
## 61 No
## 62 No
## 63 Unspecified
## 64 No
## 65 Unspecified
## 66 Unspecified
## 67 No
## 68 No
## 69 Unspecified
## 70 Unspecified
## 71 Unspecified
## 72 Unspecified
## 73 Unspecified
## 74 Unspecified
## 75 Unspecified
## 76 Unspecified
## 77 Unspecified
## 78 Unspecified
## 79 Unspecified
## 80 Unspecified
## 81 Unspecified
## 82 Unspecified
## 83 Unspecified
## 84 Unspecified
## 85 Unspecified
## 86 Yes
## 87 No
## 88 Yes
## 89 Yes
## 90 Unspecified
## 91 Unspecified
## 92 Unspecified
## 93 Yes
## 94 Unspecified
## 95 Unspecified
## 96 Unspecified
## 97 Unspecified
## 98 Yes
## 99 No
## 100 No
## 101 No
## 102 No
## 103 No
## 104 Yes
## 105 Yes
## 106 No
## 107 Unspecified
## 108 Unspecified
## 109 Unspecified
## 110 Unspecified
## 111 Unspecified
## 112 Unspecified
## 113 Unspecified
## 114 Unspecified
## 115 No
## 116 Unspecified
## 117 Yes
## 118 No
## 119 Unspecified
## 120 Unspecified
## 121 Unspecified
## 122 Unspecified
## 123 Unspecified
## 124 Unspecified
## 125 Unspecified
## 126 Unspecified
## 127 Unspecified
## 128 Unspecified
## 129 Unspecified
## 130 Unspecified
## 131 Yes
## 132 No
## 133 No
## 134 No
## 135 Unspecified
## 136 Unspecified
## 137 Unspecified
## 138 Unspecified
## 139 Unspecified
## 140 Unspecified
## 141 Unspecified
## 142 No
## 143 Unspecified
## 144 Unspecified
## 145 Unspecified
## 146 Unspecified
## 147 Unspecified
## 148 Yes
## 149 Yes
## 150 No
## 151 No
## 152 Unspecified
## 153 Unspecified
## 154 Unspecified
## 155 Unspecified
## 156 Unspecified
## 157 Unspecified
## 158 Unspecified
## 159 Unspecified
## 160 Unspecified
## 161 Unspecified
## 162 No
## 163 No
## 164 Unspecified
## 165 No
## 166 Unspecified
## 167 Unspecified
## 168 Unspecified
## 169 Unspecified
## 170 No
## 171 Unspecified
## 172 Unspecified
## 173 Unspecified
## 174 Unspecified
## 175 Yes
## 176 Unspecified
## 177 Unspecified
## 178 Unspecified
## 179 No
## 180 Unspecified
## 181 Unspecified
## 182 Unspecified
## 183 Yes
## 184 No
## 185 Unknown
## 186 No
## 187 Yes
## 188 No
## 189 Unspecified
## 190 Unspecified
## 191 Unspecified
## 192 Unspecified
## 193 No
## 194 Unspecified
## 195 No
## 196 Yes
## 197 No
## 198 No
## 199 No
## 200 No
## 201 Unspecified
## 202 Unspecified
## 203 Unspecified
## 204 Unspecified
## 205 Unspecified
## 206 Unspecified
## 207 Unspecified
## 208 Unspecified
## 209 Unspecified
## 210 Unspecified
## 211 No
## 212 Unspecified
## 213 Unspecified
## 214 Yes
## 215 Unspecified
## 216 Unspecified
## 217 Unspecified
## 218 Unspecified
## 219 Unspecified
## 220 Unspecified
## 221 Unspecified
## 222 Unspecified
## 223 Unspecified
## 224 Unspecified
## 225 Unspecified
## 226 Unspecified
## 227 Unspecified
## 228 Unspecified
## 229 Unspecified
## 230 Unspecified
## 231 Unspecified
## 232 Unspecified
## 233 Unspecified
## 234 Unspecified
## 235 Unspecified
## 236 Unspecified
## 237 Unspecified
## 238 Unspecified
## 239 Unspecified
## 240 Unspecified
## 241 Unspecified
## 242 No
## 243 Unspecified
## 244 Unspecified
## 245 Unspecified
## 246 Unspecified
## 247 Unspecified
## 248 Unspecified
## 249 Unspecified
## 250 Unspecified
## 251 Unspecified
## 252 Unspecified
## 253 Unspecified
## 254 Unspecified
## 255 Unspecified
## 256 Unspecified
## 257 Unspecified
## 258 Unspecified
## 259 Unspecified
## 260 Unspecified
## 261 Unspecified
## 262 No
## 263 No
## 264 Yes
## 265 No
## 266 No
## 267 No
## 268 Unspecified
## 269 Unspecified
## 270 Unspecified
## 271 Unspecified
## 272 Unspecified
## 273 Unspecified
## 274 Unspecified
## 275 Unspecified
## 276 Unspecified
## 277 Unspecified
## 278 Unspecified
## 279 Unspecified
## 280 Yes
## 281 Unspecified
## 282 Yes
## 283 Yes
## 284 Yes
## 285 Unspecified
## 286 Unspecified
## 287 No
## 288 No
## 289 Unspecified
## 290 Yes
## 291 No
## 292 Unspecified
## 293 No
## 294 Unspecified
## 295 Unspecified
## 296 Unspecified
## 297 Unspecified
## 298 Unspecified
## 299 Unspecified
## 300 Unspecified
## 301 Unspecified
## 302 Unspecified
## 303 Unspecified
## 304 Unspecified
## 305 Unspecified
## 306 Unspecified
## 307 Yes
## 308 Yes
## 309 No
## 310 Yes
## 311 No
## 312 No
## 313 No
## 314 No
## 315 No
## 316 No
## 317 Unspecified
## 318 No
## 319 No
## 320 No
## 321 No
## 322 No
## 323 No
## 324 No
## 325 Unspecified
## 326 Unspecified
## 327 Unspecified
## 328 Unspecified
## 329 Unspecified
## 330 Unspecified
## 331 Unspecified
## 332 Unspecified
## 333 Yes
## 334 Unspecified
## 335 Unspecified
## 336 Unspecified
## 337 Unspecified
## 338 Unspecified
## 339 Unspecified
## 340 Unspecified
## 341 No
## 342 No
## 343 Unspecified
## 344 Unspecified
## 345 Unspecified
## 346 Unspecified
## 347 Unspecified
## 348 Unspecified
## 349 Unknown
## 350 Unspecified
## 351 Unspecified
## 352 Unspecified
## 353 Unspecified
## 354 Unspecified
## 355 Unspecified
## 356 Unspecified
## 357 No
## 358 Yes
## 359 No
## 360 Yes
## 361 Yes
## 362 No
## 363 Unspecified
## 364 Unspecified
## 365 Unspecified
## 366 Unspecified
## 367 No
## 368 Unspecified
## 369 Unspecified
## 370 Unspecified
## 371 Unspecified
## 372 Unspecified
## 373 Unspecified
## 374 Unspecified
## 375 Unspecified
## 376 Unspecified
## 377 Unspecified
## 378 Unspecified
## 379 Unspecified
## 380 Unspecified
## 381 Unspecified
## 382 Unspecified
## 383 Unspecified
## 384 Yes
## 385 No
## 386 No
## 387 Yes
## 388 No
## 389 Unspecified
## 390 Unspecified
## 391 No
## 392 No
## 393 Yes
## 394 Unspecified
## 395 Unspecified
## 396 Unspecified
## 397 Unspecified
## 398 Unspecified
## 399 Unspecified
## 400 Unspecified
## 401 Unspecified
## 402 Unspecified
## 403 Yes
## 404 Unspecified
## 405 Unspecified
## 406 No
## 407 No
## 408 Unspecified
## 409 Yes
## 410 No
## 411 No
## 412 No
## 413 Unspecified
## 414 Unspecified
## 415 No
## 416 No
## 417 No
## 418 Unknown
## 419 No
## 420 Unspecified
## 421 No
## 422 No
## 423 No
## 424 No
## 425 Unspecified
## 426 Unspecified
## 427 Unspecified
## 428 Yes
## 429 Unspecified
## 430 Unspecified
## 431 Unspecified
## 432 Unspecified
## 433 Unspecified
## 434 Unspecified
## 435 Unspecified
## 436 Unspecified
## 437 Unspecified
## 438 Unspecified
## 439 Unspecified
## 440 Unspecified
## 441 Unspecified
## 442 Unspecified
## 443 Unspecified
## 444 Unspecified
## 445 Unspecified
## 446 Unspecified
## 447 Unspecified
## 448 Unspecified
## 449 Unspecified
## 450 No
## 451 Unspecified
## 452 Unspecified
## 453 Yes
## 454 Unspecified
## 455 Unspecified
## 456 Yes
## 457 Yes
## 458 Yes
## 459 Unspecified
## 460 Yes
## 461 Unspecified
## 462 Unspecified
## 463 Unspecified
## 464 Unspecified
## 465 Unspecified
## 466 No
## 467 No
## 468 No
## 469 Unspecified
## 470 Yes
## 471 Unspecified
## 472 Unspecified
## 473 Unspecified
## 474 Unspecified
## 475 Unspecified
## 476 Unspecified
## 477 Unspecified
## 478 Unspecified
## 479 No
## 480 No
## 481 Unspecified
## 482 No
## 483 No
## 484 No
## 485 Unspecified
## 486 Yes
## 487 Unspecified
## 488 Unspecified
## 489 Unspecified
## 490 Unspecified
## 491 Unspecified
## 492 Unspecified
## 493 Unspecified
## 494 Unspecified
## 495 No
## 496 Unspecified
## 497 No
## 498 Yes
## 499 Unspecified
## 500 Unspecified
## 501 Unspecified
## 502 Unspecified
## 503 Unspecified
## 504 Unspecified
## 505 No
## 506 Unspecified
## 507 Unspecified
## 508 Unspecified
## 509 Yes
## 510 Unspecified
## 511 Yes
## 512 No
## 513 No
## 514 Unspecified
## 515 Unspecified
## 516 Unspecified
## 517 Unspecified
## 518 Unspecified
## 519 Unspecified
## 520 Unspecified
## 521 Unspecified
## 522 Unspecified
## 523 Unspecified
## 524 No
## 525 Unspecified
## 526 No
## 527 No
## 528 Unspecified
## 529 No
## 530 Unspecified
## 531 No
## 532 No
## 533 No
## 534 No
## 535 No
## 536 No
## 537 No
## 538 Unspecified
## 539 No
## 540 No
## 541 Unspecified
## 542 Unspecified
## 543 Unspecified
## 544 Unspecified
## 545 Unspecified
## 546 Unspecified
## 547 No
## 548 No
## 549 No
## 550 Unspecified
## 551 Unspecified
## 552 Unspecified
## 553 Unspecified
## 554 Unspecified
## 555 Unspecified
## 556 No
## 557 No
## 558 No
## 559 No
## 560 No
## 561 No
## 562 No
## 563 No
## 564 Unspecified
## 565 Unspecified
## 566 Unspecified
## 567 Unspecified
## 568 Unspecified
## 569 Unspecified
## 570 Unspecified
## 571 Unspecified
## 572 Unspecified
## 573 Unspecified
## 574 Unspecified
## 575 Unspecified
## 576 Unspecified
## 577 Unspecified
## 578 Unspecified
## 579 Unspecified
## 580 Unspecified
## 581 Unspecified
## 582 Unspecified
## 583 Unspecified
## 584 Unspecified
## 585 Unspecified
## 586 Unspecified
## 587 Unspecified
## 588 Unspecified
## 589 Unspecified
## 590 Unspecified
## 591 Unspecified
## 592 Unspecified
## 593 Yes
## 594 Yes
## 595 Unspecified
## 596 Unspecified
## 597 Unspecified
## 598 Unspecified
## 599 Unspecified
## 600 Unspecified
## 601 Unspecified
## 602 Unspecified
## 603 Unspecified
## 604 Unspecified
## 605 Unspecified
## 606 Unspecified
## 607 Unspecified
## 608 Unspecified
## 609 Unspecified
## 610 Unspecified
## 611 Unspecified
## 612 Unspecified
## 613 Unspecified
## 614 Unspecified
## 615 Unspecified
## 616 Unspecified
## 617 Unspecified
## 618 Unspecified
## 619 Unspecified
## 620 Unspecified
## 621 Unspecified
## 622 Unspecified
## 623 Unspecified
## 624 Unspecified
## 625 Unspecified
## 626 Unspecified
## 627 Unspecified
## 628 Unspecified
## 629 Unspecified
## 630 Unspecified
## 631 Unspecified
## 632 Unspecified
## 633 Unspecified
## 634 Unspecified
## 635 Unspecified
## 636 Unspecified
## 637 Unspecified
## 638 Unspecified
## 639 Unspecified
## 640 Unspecified
## 641 Unspecified
## 642 Unspecified
## 643 Unspecified
## 644 Unspecified
## 645 Unspecified
## 646 Unspecified
## 647 Unspecified
## 648 Unspecified
## 649 Unspecified
## 650 Unspecified
## 651 Unspecified
## 652 Unspecified
## 653 Unspecified
## 654 Unspecified
## 655 Unspecified
## 656 Unspecified
## 657 Unspecified
## 658 Unspecified
## 659 Unspecified
## 660 Unspecified
## 661 Unspecified
## 662 Unspecified
## 663 Unspecified
## 664 Unspecified
## 665 Unspecified
## 666 Unspecified
## 667 Unspecified
## 668 Unspecified
## 669 Unspecified
## 670 Unspecified
## 671 Unspecified
## 672 Unspecified
## 673 Unspecified
## 674 Unspecified
## 675 Unspecified
## 676 Unspecified
## 677 Unspecified
## 678 Unspecified
## 679 Yes
## 680 Unspecified
## 681 No
## 682 Unspecified
## 683 No
## 684 Yes
## 685 No
## 686 No
## 687 Unspecified
## 688 No
## 689 No
## 690 Yes
## 691 Yes
## 692 Unspecified
## 693 Unspecified
## 694 Unspecified
## 695 Unspecified
## 696 Unspecified
## 697 Unspecified
## 698 Unspecified
## 699 Unspecified
## 700 Unspecified
## 701 Unspecified
## 702 Unspecified
## 703 Unspecified
## 704 Unspecified
## 705 Unspecified
## 706 Unspecified
## 707 No
## 708 No
## 709 No
## 710 Unspecified
## 711 Yes
## 712 Yes
## 713 Unspecified
## 714 Unspecified
## Path2_1
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 Salmonella groups C and D
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 Campylobacter jejuni
## 36 0
## 37 Astrovirus, Adenovirus
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 s. aureus, Aeromo s hydrophila
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 E. Coli O157:H39, E. Coli O7:H15
## 87 0
## 88 Clostridium difficile, adenovirus
## 89 coliforms
## 90 0
## 91 0
## 92 0
## 93 Astrovirus
## 94 0
## 95 0
## 96 0
## 97 0
## 98 Campylobacter species
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 Vibrio parahaemolyticus
## 105 Astrovirus
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 Staphylococcus aureus was isolated from one faecal specimen
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 rotavirus, adenovirus, astrovirus
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 C. difficile in one person
## 149 positive for Campylobacter and NoV but author didn't think was related to outbreak since all else was same
## 150 0
## 151 0
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 E. Coli
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 C. Jejuni
## 184 0
## 185 0
## 186 0
## 187 C. difficile
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 Rotavirus, Sapovirus
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 Rotavirus
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 C. difficile
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Rotavirus G9
## 281 0
## 282 Coliforms
## 283 coliforms
## 284 coliforms
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 kobuvirus, astrovirus
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Campylobacter jejuni
## 308 Clostridium perfringens, S. aureus
## 309 0
## 310 enteroviruses
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 Enterovirus
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 adenovirus
## 359 0
## 360 Campylobacter; Salmonella enterica subspecies enterica
## 361 SV G1/2
## 362 0
## 363 0
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384 Shigella, Campylobacter
## 385
## 386
## 387 Astrovirus
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 C. Perfringens
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Escherichia coli, faecal streptococci, Salmonella mbandaka, Campylobacter, Staphylococcus aureus,
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 Campylobacter jejuni
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 Giardia lamblia
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 Astrovirus
## 454 0
## 455 0
## 456 coliforms
## 457 coliforms
## 458 coliforms
## 459 0
## 460 Campylobacter, Rotavirus
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 Campylobacter
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 adenovirus, rotavirus
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 rotavirus, enterovirus, astrovirus, Salmonella sp., Clostridium perfringens, Campylobacter sp.
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509 rotavirus A, astrovirus, adenovirus, sapovirus
## 510
## 511 Campylobacter, rotavirus, adenovirus
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 rotavirus, cryptosporidium, campylobacter
## 594 E. Coli 026:H11 (VT1+)
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 Rotavirus
## 680 0
## 681 0
## 682 0
## 683 0
## 684 Yersinia fredricksinii (commensual floar of humans)
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 Aichi Virus, Astrovirus, Enterovirus, and Rotavirus
## 691 Clostridium difficile
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 coliforms
## 712 coliforms
## 713 0
## 714 0
## Country Category
## 1 Japan Daycare
## 2 USA Foodservice
## 3 Other Foodservice
## 4 Other Foodservice
## 5 Other Foodservice
## 6 Other Foodservice
## 7 Other Foodservice
## 8 Other Foodservice
## 9 Other Nursing Home
## 10 USA Unspecified
## 11 USA Other
## 12 USA Foodservice
## 13 USA School
## 14 USA Leisure
## 15 Multiple Leisure
## 16 Multiple Leisure
## 17 Multiple Leisure
## 18 USA Other
## 19 USA Leisure
## 20 Japan Military
## 21 Other Hospital
## 22 Other Hospital
## 23 Other Hospital
## 24 Other Hospital
## 25 Other Hospital
## 26 Other Hospital
## 27 Other Hospital
## 28 Other Hospital
## 29 Other Hospital
## 30 Other Hospital
## 31 Other Hospital
## 32 Other Hospital
## 33 Other Hospital
## 34 USA Foodservice
## 35 Other Foodservice
## 36 Other Foodservice
## 37 Other Daycare
## 38 Other Foodservice
## 39 Other Nursing Home
## 40 Other Leisure
## 41 Other Nursing Home
## 42 Japan Foodservice
## 43 Japan Nursing Home
## 44 Japan School
## 45 Japan Foodservice
## 46 Japan Foodservice
## 47 Other Foodservice
## 48 Other School
## 49 Japan Foodservice
## 50 Japan Unknown
## 51 Multiple Leisure
## 52 Japan Foodservice
## 53 Japan Other
## 54 Japan Other
## 55 Japan School
## 56 Japan Daycare
## 57 Japan Daycare
## 58 Japan Daycare
## 59 Japan Foodservice
## 60 Japan Foodservice
## 61 USA Leisure
## 62 USA Other
## 63 Other Unspecified
## 64 Other Foodservice
## 65 Other Hospital
## 66 USA Foodservice
## 67 USA Leisure
## 68 Other Hospital
## 69 Other Foodservice
## 70 Other Other
## 71 Other Foodservice
## 72 Other Foodservice
## 73 Other Foodservice
## 74 Other Unspecified
## 75 Other Foodservice
## 76 Other Unspecified
## 77 Other Foodservice
## 78 Other Foodservice
## 79 Other Foodservice
## 80 Other Foodservice
## 81 Other Nursing Home
## 82 Other Foodservice
## 83 Other Foodservice
## 84 Other Foodservice
## 85 Other Foodservice
## 86 Other Foodservice
## 87 Other Foodservice
## 88 Other Hospital
## 89 Other Other
## 90 Japan School
## 91 Other School
## 92 Other Nursing Home
## 93 Other Other Medical Setting
## 94 Japan Nursing Home
## 95 Japan Hospital
## 96 Japan Hospital
## 97 USA Foodservice
## 98 Other Daycare
## 99 Other Nursing Home
## 100 Other School
## 101 Other Nursing Home
## 102 Other Hospital
## 103 Other School
## 104 Other Foodservice
## 105 Japan Other
## 106 Other Nursing Home
## 107 Japan Unspecified
## 108 Japan Unspecified
## 109 Japan School
## 110 Japan Foodservice
## 111 USA Leisure
## 112 USA Foodservice
## 113 USA Foodservice
## 114 USA Foodservice
## 115 Other Hospital
## 116 Multiple Other Medical Setting
## 117 Other Nursing Home
## 118 Other Nursing Home
## 119 Other Hospital
## 120 Other Hospital
## 121 Other Leisure
## 122 Other Leisure
## 123 Other Leisure
## 124 Other Leisure
## 125 Other Leisure
## 126 USA Daycare
## 127 USA Leisure
## 128 USA Foodservice
## 129 USA Other
## 130 USA Nursing Home
## 131 Other Nursing Home
## 132 Japan Other Medical Setting
## 133 USA Other
## 134 Other Foodservice
## 135 USA School
## 136 USA School
## 137 USA School
## 138 Other Hospital
## 139 Other Hospital
## 140 Other Hospital
## 141 Other Hospital
## 142 Other Leisure
## 143 USA Leisure
## 144 Other Foodservice
## 145 Other Daycare
## 146 Other Foodservice
## 147 Other Foodservice
## 148 Multiple Other
## 149 Multiple Leisure
## 150 Other Nursing Home
## 151 Other Foodservice
## 152 Australia Daycare
## 153 Australia Nursing Home
## 154 Australia Nursing Home
## 155 Australia Leisure
## 156 Australia Nursing Home
## 157 Australia Foodservice
## 158 Australia Nursing Home
## 159 Australia Foodservice
## 160 Australia Nursing Home
## 161 Australia Daycare
## 162 USA Nursing Home
## 163 Spain Nursing Home and Hospital
## 164 Ca da Other
## 165 Other Nursing Home
## 166 Other Leisure
## 167 Other Foodservice
## 168 Other Foodservice
## 169 Other Foodservice
## 170 Other Military
## 171 Other Foodservice
## 172 Other Foodservice
## 173 Other Leisure
## 174 Other Leisure
## 175 Other Nursing Home
## 176 Other Nursing Home
## 177 Other Hospital
## 178 Other Nursing Home
## 179 Other Military
## 180 USA Foodservice
## 181 USA Foodservice
## 182 USA Foodservice
## 183 USA Foodservice
## 184 USA Foodservice
## 185 Multiple Leisure
## 186 Other Nursing Home
## 187 USA Hospital
## 188 USA Foodservice
## 189 Other Hospital
## 190 Other Hospital
## 191 Other Hospital
## 192 USA Foodservice
## 193 Multiple Nursing Home
## 194 Other Nursing Home
## 195 USA Leisure
## 196 Other Military
## 197 Other Foodservice
## 198 Other Hospital
## 199 Other Nursing Home
## 200 Other Military
## 201 Japan Other
## 202 Japan School
## 203 Japan Nursing Home
## 204 Japan Foodservice
## 205 Japan Foodservice
## 206 Japan School
## 207 Japan Foodservice
## 208 Japan School
## 209 Japan Foodservice
## 210 Japan School
## 211 USA Leisure
## 212 Japan Foodservice
## 213 Japan Foodservice
## 214 Japan Leisure
## 215 Japan Unknown
## 216 Japan Foodservice
## 217 Japan Foodservice
## 218 Japan Unknown
## 219 Japan Foodservice
## 220 Japan Unknown
## 221 Japan School
## 222 Japan Unknown
## 223 Japan Foodservice
## 224 Japan Foodservice
## 225 Japan Foodservice
## 226 Japan Foodservice
## 227 Japan Other
## 228 Japan Foodservice
## 229 Japan Foodservice
## 230 Japan School
## 231 Japan Leisure
## 232 Japan Foodservice
## 233 Japan School
## 234 Japan Leisure
## 235 Japan School
## 236 Japan Foodservice
## 237 Japan School
## 238 Japan School
## 239 Japan Foodservice
## 240 Japan School
## 241 Japan School
## 242 Other Leisure
## 243 USA Leisure
## 244 Japan Foodservice
## 245 Japan Foodservice
## 246 Japan Foodservice
## 247 Japan Foodservice
## 248 Japan Foodservice
## 249 Japan Foodservice
## 250 Japan Foodservice
## 251 Japan Foodservice
## 252 Japan Other
## 253 Japan School
## 254 Japan School
## 255 Japan School
## 256 Japan School
## 257 Japan School
## 258 Japan School
## 259 Japan Foodservice
## 260 Japan Leisure
## 261 Japan Leisure
## 262 Other Leisure
## 263 Other Leisure
## 264 USA Hospital
## 265 Other Other
## 266 Other Unknown
## 267 Other Nursing Home
## 268 Other Leisure
## 269 Other Unspecified
## 270 Other Foodservice
## 271 Other Foodservice
## 272 Other Foodservice
## 273 Other Foodservice
## 274 Other Other
## 275 Other Foodservice
## 276 Other Foodservice
## 277 Other Foodservice
## 278 Other Foodservice
## 279 Other Foodservice
## 280 Other Other
## 281 Other Other
## 282 Other Other
## 283 Other Leisure
## 284 Other Other
## 285 Other Leisure
## 286 Other Other
## 287 Other Leisure
## 288 Other Foodservice
## 289 Other Foodservice
## 290 Japan Foodservice
## 291 Japan Foodservice
## 292 Japan Other
## 293 Other Leisure
## 294 Other Foodservice
## 295 Other Hospital
## 296 Other Hospital
## 297 Other Hospital
## 298 Other Nursing Home
## 299 Other Leisure
## 300 Other Leisure
## 301 Japan Foodservice
## 302 Japan Hospital
## 303 Japan Nursing Home
## 304 Japan Foodservice
## 305 Japan Nursing Home
## 306 Japan Nursing Home
## 307 USA Leisure
## 308 Other Foodservice
## 309 Other Other
## 310 Other Nursing Home
## 311 Other Hospital
## 312 Other Hospital
## 313 Other Hospital
## 314 USA Nursing Home
## 315 Other Hospital
## 316 Other Hospital
## 317 Other Foodservice
## 318 Other Leisure
## 319 Other Nursing Home
## 320 Other Hospital
## 321 Other Hospital
## 322 Other Hospital
## 323 Other Other Medical Setting
## 324 Other Hospital
## 325 Japan Unspecified
## 326 Japan Unspecified
## 327 Japan Unspecified
## 328 Japan Unspecified
## 329 Japan Unspecified
## 330 Japan Unspecified
## 331 Japan Unspecified
## 332 Japan Unspecified
## 333 USA Unknown
## 334 Japan School
## 335 Japan Foodservice
## 336 Japan Leisure
## 337 Other Foodservice
## 338 Other Foodservice
## 339 Other Foodservice
## 340 Other Foodservice
## 341 Other Foodservice
## 342 USA Foodservice
## 343 USA Foodservice
## 344 USA Foodservice
## 345 USA Foodservice
## 346 USA Foodservice
## 347 USA Other
## 348 USA School
## 349 Japan Daycare
## 350 Other Foodservice
## 351 Other Leisure
## 352 Other Daycare
## 353 Other Leisure
## 354 Other Other
## 355 USA Leisure
## 356 USA Nursing Home
## 357 Other School
## 358 Other School
## 359 USA School
## 360 USA Foodservice
## 361 Japan School
## 362 Other Other Medical Setting
## 363 Other Hospital
## 364 Australia Leisure
## 365 Australia Leisure
## 366 Australia Leisure
## 367 USA Nursing Home
## 368 UK Hospital
## 369 Japan Leisure
## 370 Japan Other
## 371 Japan Other
## 372 Japan Foodservice
## 373 Japan Nursing Home
## 374 Japan School
## 375 Japan Hospital
## 376 Japan Nursing Home
## 377 Japan Hospital
## 378 Israel Nursing Home
## 379 Israel Nursing Home
## 380 Israel Nursing Home
## 381 Israel Nursing Home
## 382 Israel Nursing Home
## 383 Israel Nursing Home
## 384 Iraq Military
## 385 France Other
## 386 France Other
## 387 Japan Daycare
## 388 USA Military
## 389 Other Foodservice
## 390 Other Leisure
## 391 Other Foodservice
## 392 USA Foodservice
## 393 Other Leisure
## 394 Other Leisure
## 395 Other Foodservice
## 396 Other Leisure
## 397 Other Foodservice
## 398 Other Leisure
## 399 Other Foodservice
## 400 Other Foodservice
## 401 Other Foodservice
## 402 Other Foodservice
## 403 Other Foodservice
## 404 Other Hospital
## 405 Other Nursing Home
## 406 USA Leisure
## 407 USA Leisure
## 408 Multiple Leisure
## 409 USA Leisure
## 410 USA Leisure
## 411 USA Leisure
## 412 USA Leisure
## 413 Other Hospital
## 414 Other Hospital
## 415 Other Foodservice
## 416 Other Foodservice
## 417 Other Nursing Home
## 418 Other Other
## 419 Other Daycare
## 420 Other Foodservice
## 421 Other Hospital
## 422 Other Nursing Home
## 423 Other Military
## 424 Other Military
## 425 Other Leisure
## 426 Other Other
## 427 Other School
## 428 Other Leisure
## 429 Japan School
## 430 Japan Unknown
## 431 Japan Foodservice
## 432 Japan Foodservice
## 433 Japan Leisure
## 434 Other Unspecified
## 435 Other Foodservice
## 436 Other Unspecified
## 437 Other Foodservice
## 438 Other Foodservice
## 439 Other Foodservice
## 440 Other Foodservice
## 441 Other Foodservice
## 442 Other Foodservice
## 443 Other Leisure
## 444 Other Leisure
## 445 Other School
## 446 Other Foodservice
## 447 Other Leisure
## 448 Other Leisure
## 449 Other Unspecified
## 450 Other Foodservice
## 451 USA Leisure
## 452 Other School
## 453 Other Leisure
## 454 Other Leisure
## 455 Other Leisure
## 456 Other Leisure
## 457 Other Other
## 458 Other Leisure
## 459 Other Foodservice
## 460 Other Leisure
## 461 Japan Nursing Home
## 462 Japan School
## 463 Other Leisure
## 464 Other Leisure
## 465 Other Foodservice
## 466 Other Nursing Home
## 467 Other Other
## 468 Other Leisure
## 469 Other Leisure
## 470 Other Leisure
## 471 Japan Foodservice
## 472 Other Foodservice
## 473 Other Foodservice
## 474 Other Foodservice
## 475 Other Foodservice
## 476 Other Foodservice
## 477 Other Foodservice
## 478 Other Foodservice
## 479 Multiple Military
## 480 Multiple Military
## 481 Other Leisure
## 482 Other Foodservice
## 483 Other Foodservice
## 484 Other Nursing Home
## 485 Other Foodservice
## 486 Other Other
## 487 Other Nursing Home
## 488 USA Leisure
## 489 USA Leisure
## 490 USA Foodservice
## 491 USA Foodservice
## 492 USA Leisure
## 493 USA Leisure
## 494 USA Leisure
## 495 Other Leisure
## 496 Other Unspecified
## 497 Multiple Leisure
## 498 Italy Leisure
## 499 Australia Nursing Home
## 500 Australia Hospital
## 501 Australia Leisure
## 502 Australia Hospital
## 503 Australia Daycare
## 504 Australia Daycare
## 505 USA Nursing Home
## 506 Chi Hospital
## 507 Japan School
## 508 USA Leisure
## 509 Japan Hospital
## 510 UK Hospital
## 511 Norway Leisure
## 512 USA Foodservice
## 513 USA Leisure
## 514 Other Leisure
## 515 USA Unknown
## 516 Other Foodservice
## 517 Other Foodservice
## 518 Other Foodservice
## 519 Other Foodservice
## 520 Other Foodservice
## 521 Other Foodservice
## 522 Other Leisure
## 523 Other Foodservice
## 524 Other Leisure
## 525 Other Nursing Home
## 526 USA Hospital
## 527 Other Leisure
## 528 Other Leisure
## 529 USA Foodservice
## 530 USA Leisure
## 531 USA Foodservice
## 532 USA School
## 533 USA Leisure
## 534 USA Nursing Home
## 535 USA Foodservice
## 536 USA Nursing Home
## 537 USA Nursing Home
## 538 Other Leisure
## 539 Other Unknown
## 540 Other Foodservice
## 541 Other Hospital
## 542 Other Hospital
## 543 Other Hospital
## 544 Other Hospital
## 545 Other Hospital
## 546 Other Hospital
## 547 Other Unknown
## 548 Other Foodservice
## 549 Other Other
## 550 Other Leisure
## 551 Other Leisure
## 552 Other Leisure
## 553 Other Other
## 554 Other Hospital
## 555 Other Hospital
## 556 Other Hospital
## 557 Other Foodservice
## 558 Other Hospital
## 559 Other Hospital
## 560 Other Military
## 561 Other Military
## 562 Other Military
## 563 Other Military
## 564 Japan Other
## 565 Japan Foodservice
## 566 Japan Other
## 567 Japan Foodservice
## 568 Japan Other
## 569 Japan Other
## 570 Japan Other
## 571 Japan Foodservice
## 572 Japan Nursing Home
## 573 Japan Foodservice
## 574 Japan Foodservice
## 575 Japan School
## 576 Japan Foodservice
## 577 Japan Foodservice
## 578 Japan Foodservice
## 579 Japan Nursing Home
## 580 Japan Foodservice
## 581 Japan School
## 582 Japan Foodservice
## 583 Japan Foodservice
## 584 Japan Foodservice
## 585 Japan Foodservice
## 586 Japan Other
## 587 Japan Daycare
## 588 Japan Daycare
## 589 Japan Nursing Home
## 590 Japan Foodservice
## 591 Japan Foodservice
## 592 Japan School
## 593 Other Leisure
## 594 Japan School
## 595 Japan Foodservice
## 596 Japan Foodservice
## 597 Japan Other
## 598 Japan Other
## 599 Japan Foodservice
## 600 Japan School
## 601 Japan Foodservice
## 602 Japan Foodservice
## 603 Japan Nursing Home
## 604 Japan Leisure
## 605 Japan Foodservice
## 606 Japan Foodservice
## 607 Japan Foodservice
## 608 Japan Foodservice
## 609 Japan Other Medical Setting
## 610 Japan Foodservice
## 611 Japan School
## 612 Japan Unknown
## 613 Japan Unknown
## 614 Japan Unknown
## 615 Japan Unknown
## 616 Japan Foodservice
## 617 Japan Other
## 618 Japan Foodservice
## 619 Japan Unknown
## 620 Japan Unknown
## 621 Japan Unknown
## 622 Japan Unknown
## 623 Japan Unknown
## 624 Japan Unknown
## 625 Japan Foodservice
## 626 Japan Foodservice
## 627 Japan Unknown
## 628 Japan Foodservice
## 629 Japan Unknown
## 630 Japan Foodservice
## 631 Japan Leisure
## 632 Japan Foodservice
## 633 Japan Unknown
## 634 Japan Leisure
## 635 Japan Leisure
## 636 Japan Leisure
## 637 Japan Unknown
## 638 Japan Foodservice
## 639 Japan Foodservice
## 640 Japan Foodservice
## 641 Japan Foodservice
## 642 Japan Foodservice
## 643 Japan Unknown
## 644 USA Other
## 645 USA Hospital
## 646 Japan Foodservice
## 647 Japan Foodservice
## 648 Japan Foodservice
## 649 Japan Foodservice
## 650 Japan Foodservice
## 651 Japan Foodservice
## 652 Japan Foodservice
## 653 Japan Foodservice
## 654 Japan Foodservice
## 655 Japan Foodservice
## 656 Japan Other
## 657 Japan Other
## 658 Japan Other
## 659 Japan Foodservice
## 660 Japan Foodservice
## 661 Japan Foodservice
## 662 Japan Foodservice
## 663 Japan Foodservice
## 664 Japan Foodservice
## 665 Japan Foodservice
## 666 Japan Foodservice
## 667 Japan Foodservice
## 668 Japan Foodservice
## 669 Japan Foodservice
## 670 Japan Foodservice
## 671 Japan School
## 672 Japan School
## 673 Japan Foodservice
## 674 Japan Foodservice
## 675 Japan Foodservice
## 676 Japan Foodservice
## 677 Japan Leisure
## 678 Japan Leisure
## 679 Other Other
## 680 Other Hospital
## 681 USA Foodservice
## 682 USA Leisure
## 683 Other Hospital
## 684 USA School
## 685 Japan Foodservice
## 686 Other Other
## 687 Other Leisure
## 688 Other Other Medical Setting
## 689 Multiple Other
## 690 Other Other
## 691 Other Hospital
## 692 Other Unspecified
## 693 Other Foodservice
## 694 Other Foodservice
## 695 Other Foodservice
## 696 Other Foodservice
## 697 Other Foodservice
## 698 Other Foodservice
## 699 Other Foodservice
## 700 Other Foodservice
## 701 Other Other
## 702 Other Other
## 703 Other Foodservice
## 704 Other Foodservice
## 705 Other Other
## 706 Other Foodservice
## 707 Other Foodservice
## 708 Other Foodservice
## 709 USA Nursing Home
## 710 Other Other
## 711 Other Other
## 712 Other Other
## 713 Other Leisure
## 714 Other Hospital
## State
## 1 0
## 2 NC, FL
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 FL
## 11 LA, MD, MS, NC
## 12 AK
## 13 WI
## 14 WA, FL
## 15 FL
## 16 FL
## 17 FL
## 18 TX
## 19 WV, MD, FL, NY, PA, VA
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 MD, TX, NC, PA, MS
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 FL
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 NC
## 62 LA, MS, MD, NC
## 63 0
## 64 0
## 65 0
## 66 OR
## 67 VA
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 WY
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 NC
## 112 NC
## 113 NC
## 114 NC
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 AK
## 127 GA
## 128 UT
## 129 AK
## 130 PA
## 131 0
## 132 0
## 133 TX
## 134 0
## 135 CA
## 136 MI
## 137 WI
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 1
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 OR
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 MI
## 181 MI
## 182 MI
## 183 MI
## 184 NY
## 185 AK
## 186 0
## 187 NY
## 188 TX
## 189 0
## 190 0
## 191 0
## 192 CO
## 193 0
## 194 0
## 195 MA
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 HI
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 AZ
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 TX
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 VA
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 MD
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 CA
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 NC
## 343 NC
## 344 NC
## 345 NC
## 346 NC
## 347 NC
## 348 NC
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 AK
## 356 KY
## 357 0
## 358 0
## 359 MA
## 360 WI
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 OR
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 TX
## 389 0
## 390 0
## 391 0
## 392 AK
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 0
## 404 0
## 405 0
## 406 WI
## 407 WI
## 408 AK
## 409 WY
## 410 NY
## 411 NY
## 412 NY
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 AZ
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 0
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 0
## 487 0
## 488 AK
## 489 AK
## 490 NC
## 491 WY
## 492 VA
## 493 VA
## 494 VA
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 OR
## 506 0
## 507 0
## 508 OH
## 509 0
## 510 0
## 511 0
## 512 14 states: CA, UT, KS, WI, IL, IN, OH, GA, FL, NC, VA, WV, NY, PA,
## 513 WY
## 514 0
## 515 LA
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 SC
## 527 0
## 528 0
## 529 VA
## 530 VT
## 531 MI
## 532 DC
## 533 NY
## 534 NY
## 535 NY
## 536 NY
## 537 NY
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 MD
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 OH
## 682 HI
## 683 0
## 684 MA
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 WA
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## Setting_1
## 1 Daycare Center
## 2 Boxed lunch, football game
## 3 buffet
## 4 restaurant
## 5 buffet
## 6 take-out restaurant
## 7 buffet
## 8 restaurant
## 9 in El Grao de Castello_n
## 10 0
## 11 Many, family dinner to large festival
## 12 Luncheon and Restaruant
## 13 College Dorm
## 14 Cruise Ship
## 15 Cruise Ship
## 16 Cruise Ship
## 17 Cruise Ship
## 18 Refugee camp
## 19 Family Reunion
## 20 Aircraft Carier
## 21 Hospital A, ward 7 E
## 22 Hospital A, ward 7B
## 23 Hospital A, ward 7A
## 24 Hospital A, ward 7A
## 25 Hospital A, ward 7D
## 26 Hospital A, ward 7C
## 27 Hosptial A, ward 7F
## 28 Hospital A, ward 7C
## 29 Hospital A, ward 7E
## 30 Hospital A, ward 7D
## 31 Hospital A, ward 7A
## 32 Hospital B, ward L
## 33 Hospital B, ward E
## 34 annual festival, oyster roast, banquet, restaurant, church supper
## 35 Catered Meal
## 36 Child Care and Elementry School
## 37 Daycare
## 38 Going away party
## 39 Aged Care Facility
## 40 Watersports facility along a river
## 41 3 wings that connect through central foyer
## 42 Wedding Banquet
## 43 Nursing home for the handicapped
## 44 High School Dorm
## 45 Restaurant
## 46 Restaurant
## 47 restaurant
## 48 University
## 49 Restaurant
## 50 0
## 51 Cruise Ship
## 52 Restaurant
## 53 Private Home
## 54 Private Home
## 55 School
## 56 Nursery School
## 57 Nursery School
## 58 Nursery School
## 59 Catered Lunch
## 60 Catered Lunch
## 61 Church Dinner
## 62 0
## 63 0
## 64 Catered Food at Manufacturer
## 65 Hospital
## 66 reception at a medical facility
## 67 Hotel
## 68 Hospital
## 69 restaurant
## 70 private home
## 71 restaurant
## 72 restaurant
## 73 restaurant
## 74 0
## 75 restaurant
## 76 0
## 77 restaurant
## 78 restaurant
## 79 restaurant
## 80 restaurant
## 81 nursing home
## 82 restaurant
## 83 catering
## 84 restaurant
## 85 restaurant
## 86 Restaurant
## 87 Restaurant
## 88 University Hospital
## 89 Community
## 90 Primary School
## 91 Nursery School
## 92 Nursing Home
## 93 Mother Child Clinic
## 94 Nursing Care Center
## 95 Hospital
## 96 Hospital
## 97 Saloon
## 98 Daycare and School
## 99 Elderly Home
## 100 Primary School
## 101 Elderly Home
## 102 Hospital
## 103 Primary School
## 104 Restaurant
## 105 Research Ship
## 106 Nursing Home and Hospital
## 107 0
## 108 0
## 109 kindergarten
## 110 caterer
## 111 summer camp
## 112 gathering catered event in Cabarrus county
## 113 school catered event in Durham county
## 114 company catered event in Cabarrus county
## 115 care unit of inter l medicine (pneumology-oncology)
## 116 mental health institution for the elderly
## 117 Brisbane
## 118 West Moreton
## 119 hospital 1 geriatric ward
## 120 hospital 1 pediatric ward
## 121 cruise ship
## 122 cruise ship
## 123 cruise ship
## 124 cruise ship
## 125 cruise ship
## 126 0
## 127 wedding
## 128 restaurant
## 129 community
## 130 0
## 131 mental nursing center
## 132 special nursing home for the aged, facility for handicapped, vocatio l aid institute for the handicapped
## 133 Reliant Park Complex megashelter
## 134 canteen at manufacturing company
## 135 university campus
## 136 university campus
## 137 university housing
## 138 rehabilitation clinical unit
## 139 pediatric clinical unit
## 140 rehabilitation clinical unit
## 141 neurosurgery clinical unit
## 142 wedding reception
## 143 tour bus/airplane
## 144 Catering service in Restaurant
## 145 0
## 146 Cafeteria (catering service)
## 147 Conference at hotel (catered)
## 148 Psychiatric Institution, pilgrimage to Lourdes
## 149 Cruise ship
## 150 300-bed nursing home
## 151 restaurant
## 152 Children's activity center
## 153 Aged care center
## 154 Aged care center
## 155 Social gathering
## 156 Aged care center
## 157 Suspect food
## 158 Aged care center
## 159 Suspect food
## 160 Aged care center
## 161 Child care
## 162 long-term care facility
## 163 Both hospitals and nursing homes
## 164 Conference at hotel for nurses association
## 165 old people's home
## 166 camp
## 167 Institutio l catering at work
## 168 restaurant
## 169 Chinese takeaway meal at home
## 170 British Military Base in Iraq
## 171 buffet
## 172 lunchroom
## 173 cruise ship S
## 174 cruise ship RH
## 175 6 nursing homes in Tel Aviv
## 176 Hostel for the Aged, Hospital
## 177 Hospital
## 178 Aged-care hostel
## 179 British Military
## 180 Catered Lunch
## 181 Catered Lunch
## 182 Catered Lunch
## 183 Sub Restaruant
## 184 Restaurant
## 185 cruise ship going from Vancouver to Alaska
## 186 Long-Term care facility
## 187 Ward in a Hospital
## 188 College Deli Bar
## 189 Hospital D
## 190 Hospital F
## 191 Hospital G
## 192 Hotel Buffet
## 193 Nursing Home, Hospital
## 194 Nursing Home and Hospital
## 195 Weddings
## 196 British vy Ship
## 197 Catered lunch served to daycare centers
## 198 Mental Hospital
## 199 Civillian Setting
## 200 Military Unit
## 201 Office
## 202 School excursion
## 203 Nursing Home
## 204 Restaurant
## 205 Restaurant
## 206 Primary School
## 207 Restaurant
## 208 Athletic Meeting
## 209 Restaurant
## 210 Primary School
## 211 Cruise Ship
## 212 Restaurant
## 213 Restaurant
## 214 Hotel
## 215 0
## 216 Restaurant
## 217 Restaurant
## 218 0
## 219 Restaurant
## 220 0
## 221 Elementary School
## 222 0
## 223 Restaurant
## 224 Restaurant
## 225 Restaurant
## 226 Restaurant
## 227 Home
## 228 Restaurant
## 229 Restaurant
## 230 Kindergarten
## 231 Hotel
## 232 Restaurant
## 233 Kindergarten
## 234 Hotel
## 235 School
## 236 Restaurant
## 237 School
## 238 Kindergarten
## 239 Restaurant
## 240 School
## 241 School
## 242 Hotel
## 243 educatio l boating trip
## 244 Restaurant
## 245 Restaurant
## 246 Restaurant
## 247 Restaurant
## 248 Restaurant
## 249 Restaurant
## 250 Restaurant
## 251 Restaurant
## 252 Private Home
## 253 School
## 254 School
## 255 School
## 256 School
## 257 School
## 258 School
## 259 Catered Lunch
## 260 Hotel
## 261 Hotel
## 262 Hotel
## 263 Hotel
## 264 Michael E. DeBakey Veterans Affairs Medical Center
## 265 Community
## 266 0
## 267 Aged Care Hostel
## 268 health resort
## 269 0
## 270 restaurant
## 271 cafe
## 272 catering
## 273 catering
## 274 private home
## 275 catering
## 276 catering
## 277 restaurant
## 278 restaurant
## 279 restaurant
## 280 Community
## 281 Community
## 282 Community
## 283 Farm Stay
## 284 Community
## 285 Holiday Camp
## 286 Community
## 287 Cruise
## 288 Restaurant
## 289 Restaurant
## 290 restaurant
## 291 restaurant
## 292 Evacuation Center
## 293 Activity Camp and Conference Center
## 294 Restaurant
## 295 Hospital
## 296 Hospital
## 297 Medical Ward of Hospital
## 298 Nursing Home
## 299 Regimental Reunion
## 300 Leisure Center
## 301 Fast Food
## 302 Hospital
## 303 Nursing Care Center
## 304 Fast Food
## 305 Nursing Care Center
## 306 Nursing Care Center
## 307 Appalachian Trail
## 308 Company Canteens
## 309 Community
## 310 Elderly Home
## 311 Hospital
## 312 Hospital
## 313 Hospital
## 314 Nursing Home
## 315 within 3 wards w/an interconnecting corridor of Alfred Hospital
## 316 3 wards of Alfred Hospital
## 317 Cafeteria at a Hospital
## 318 Hotel
## 319 Hesse
## 320 Brandenburg
## 321 Berlin
## 322 Rhineland-Palati te
## 323 rehab center in Hesse
## 324 Saxony
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 school
## 335 bakery
## 336 hotel
## 337 0
## 338 0
## 339 0
## 340 0
## 341 catering at several events within a rural city
## 342 restaurant in Cabarrus county
## 343 restaurant in Clay county
## 344 company catered event in Durham county
## 345 company catered event in Durham county
## 346 school cafeteria
## 347 jail in Cumberland county
## 348 elementary school
## 349 private nursery in Sakai City
## 350 restaurant in Northern Territory
## 351 function w/oyster cocktails in Western Australia
## 352 day care center 81
## 353 wedding
## 354 community setting
## 355 cruise ship
## 356 retirement home
## 357 senior high school
## 358 education center
## 359 Worcester Polytechnic Institute
## 360 restaurant
## 361 Elementary School
## 362 healthcare facility consisting of hopsital, rehab center and convalescent home
## 363 Psychiatric Care Center attached
## 364 Social gathering
## 365 Social gathering
## 366 Social gathering
## 367 long-term care facility
## 368 600-bed tertiary care university teaching hospital
## 369 hotel
## 370 Private residence
## 371 Private residence
## 372 restaurant
## 373 Nursing home
## 374 School
## 375 Hospital
## 376 Nursing home
## 377 Hospital
## 378 Nursing home
## 379 Nursing home
## 380 Nursing home
## 381 Nursing home
## 382 Nursing home
## 383 Nursing home
## 384 Military outpost during Operation Iraqi Freedom
## 385 Pilgrimage to Lourdes
## 386 Pilgrimage to Lourdes
## 387 Daycare Center
## 388 Domestic Military Base
## 389 institutio l catering at home for disabled persons
## 390 camp
## 391 breakfast from caterer at work
## 392 Restaurant
## 393 Resort
## 394 inter tio l ferry
## 395 take-out restaurant
## 396 cruise ship R
## 397 restaurant
## 398 summer camp
## 399 take-out restaurant
## 400 bakery
## 401 take-out restaurant
## 402 restaurant
## 403 Employees at Bakery, Customers around England
## 404 Children's Hospital
## 405 Hostel for the aged
## 406 Summer Camp
## 407 Summer Camp
## 408 Cruise Ship
## 409 Summer Camp
## 410 School Camp
## 411 Summer Camp
## 412 Summer camp
## 413 Pediatric Inpatient Unit
## 414 infirmary ward of Tung Wah Hospital
## 415 Meals on Wheels Service
## 416 Restaurant
## 417 Nursing Home
## 418 Households
## 419 Child care centre
## 420 Family Meal
## 421 University of Alberta in Edmonton
## 422 Aged Care Facility
## 423 Military Unit
## 424 Military Unit
## 425 camp jamboree
## 426 Private Party
## 427 School Class
## 428 School groups at recreatio l fountain
## 429 Elementary School
## 430 0
## 431 Restaurant
## 432 Catered Lunch
## 433 Hotel
## 434 0
## 435 restaurant
## 436 0
## 437 restaurant
## 438 catering
## 439 restaurant
## 440 catering
## 441 restaurant
## 442 restaurant
## 443 recreatio l water
## 444 recreatio l water
## 445 School
## 446 catering
## 447 recreatio l water
## 448 recreatio l water
## 449 0
## 450 Canteens
## 451 rafting on Colorado River
## 452 Primary school and nursery
## 453 Community Pool
## 454 Rental Cottage
## 455 Camp
## 456 Spa
## 457 House
## 458 Cottage
## 459 Restaurant
## 460 Resort Camp
## 461 Nursing home for the elderly
## 462 Nursery School
## 463 Ferry Ship
## 464 Country Hotel
## 465 Catered Wedding Reception
## 466 Elderly Home
## 467 Family
## 468 Children's Camp
## 469 Resort
## 470 Recreatio l Lake
## 471 restaurant
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 reception at a hospital
## 479 USS Constellation aircraft carrier
## 480 USS Peleliu assault ship
## 481 cruise ship
## 482 barbeque
## 483 barbeque
## 484 hostel section where the more ambulant residents lived and a nursing home section for those requiring more care
## 485 2 hotels in Queensland
## 486 city of Podgorica, capital of Montenegro
## 487 0
## 488 cruise ship
## 489 cruise ship
## 490 catered birthday
## 491 catered meal
## 492 youth encampment
## 493 youth encampment
## 494 youth encampment
## 495 residential summer camp
## 496 0
## 497 Scouting camp in Belgium; secondary cases in Dutch households
## 498 hotel
## 499 Aged care center
## 500 Geriatric hospital
## 501 Social gathering
## 502 Pediatric hospital
## 503 Children's activity center
## 504 Child care
## 505 long-term care facility
## 506 Public hospitals under control of Hospital Authority in Hong Kong
## 507 School
## 508 Resort island
## 509 Pediatric hospital
## 510 Hospital
## 511 Recreation and conference center
## 512 Car Dealership Banquet
## 513 Snowmobile Lodge
## 514 daytrip to a recreation centre
## 515 0
## 516 reception
## 517 buffet
## 518 restaurant
## 519 restaurant
## 520 restaurant
## 521 restaurant
## 522 camping
## 523 catered buffet
## 524 Hotel
## 525 eldercare facility
## 526 medical-surgical ward
## 527 Ski resort
## 528 recreatio l camp
## 529 Restaurant
## 530 Swimming Pool
## 531 Restaurant
## 532 Elementary School
## 533 Ski Resort
## 534 Nursing Home
## 535 Delicatessen
## 536 Nursing Home
## 537 Nursing home
## 538 Hotel
## 539 0
## 540 Catered Event
## 541 Hospital A, ward 6A
## 542 Hospital A, ward 3A
## 543 Hospital A, ward2A
## 544 Hospital A, ward 5E
## 545 Hospital E
## 546 Hospital C
## 547 0
## 548 0
## 549 Concert Hall
## 550 Ski Camp
## 551 Ski Camp
## 552 Ski Camp
## 553 Two Communities
## 554 Hospital
## 555 Hospital and nursing home
## 556 secondary-level hospital
## 557 Shared meal at a restaurant
## 558 Lymington Hospital in Hampshire, UK
## 559 Southampton General Hospital
## 560 Israeli Defence Force training center
## 561 Military Unit
## 562 Military training compound
## 563 Military trainging compound
## 564 Home
## 565 Restaurant
## 566 Home party
## 567 Restaurant
## 568 Office
## 569 Home
## 570 Home
## 571 Restaurant
## 572 Nursing Home for the Handicapped
## 573 Restaurant
## 574 Restaurant
## 575 Primary School
## 576 Restaurant
## 577 Restaurant
## 578 Restaurant
## 579 Nursing Home
## 580 Restaurant
## 581 Primary School
## 582 Restaurant
## 583 Restaurant
## 584 Restaurant
## 585 Restaurant
## 586 Office
## 587 Pre-school day nursery
## 588 Pre-school Day Nursery
## 589 Nursing Home for the elderly
## 590 Restaurant
## 591 Restaurant
## 592 Primary School
## 593 Ski Resort
## 594 Kindergarten
## 595 Restaurant
## 596 Restaurant
## 597 Home
## 598 Home
## 599 Restaurant
## 600 Elementary School
## 601 Restaurant
## 602 Restaurant
## 603 Nursing Home
## 604 Hotel
## 605 Restaurant
## 606 Restaurant
## 607 Restaurant
## 608 Restaurant
## 609 Institute for Mentally Challenged
## 610 Restaurant
## 611 Cramming School
## 612 0
## 613 0
## 614 0
## 615 0
## 616 Restaurant
## 617 Home
## 618 Restaurant
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 Restaurant
## 626 Restaurant
## 627 0
## 628 Restaurant
## 629 0
## 630 Restaurant
## 631 Hotel
## 632 Resaurant
## 633 0
## 634 Hotel
## 635 Hotel
## 636 Hotel
## 637 0
## 638 Restaurant
## 639 Restaurant
## 640 Restaurant
## 641 Restaurant
## 642 Restaurant
## 643 0
## 644 Home
## 645 Hospital
## 646 Restaurant
## 647 Restaurant
## 648 Restaurant
## 649 Restaurant
## 650 Restaurant
## 651 Restaurant
## 652 Restaurant
## 653 Restaurant
## 654 Restaurant
## 655 Restaurant
## 656 Private Home
## 657 Private Home
## 658 Private Home
## 659 Restaurant
## 660 Restaurant
## 661 Restaurant
## 662 Restaurant
## 663 Restaurant
## 664 Restaurant
## 665 Restaurant
## 666 Restaurant
## 667 Restaurant
## 668 Restaurant
## 669 Restaurant
## 670 Restaurant
## 671 School
## 672 Dormitory
## 673 Catered Lunch
## 674 Catered Lunch
## 675 Catered Lunch
## 676 Catered Lunch
## 677 Hotel
## 678 Hotel
## 679 Community
## 680 Helsinki University Central Hospital
## 681 Catered Party
## 682 Cruise
## 683 Hospital
## 684 university located in Cambridge, MA
## 685 Boxed Lunch at Work
## 686 Community
## 687 hostel in Salzburg for holiday skiing
## 688 Rehabilitation Center
## 689 Various Settings
## 690 Various Settings
## 691 Hospital
## 692 0
## 693 restaurant
## 694 restaurant
## 695 restaurant
## 696 restaurant
## 697 restaurant
## 698 catering
## 699 restaurant
## 700 restaurant
## 701 private home
## 702 private home
## 703 restaurant
## 704 restaurant
## 705 private home
## 706 restaurant
## 707 Hotel Private Dinner
## 708 Restaurant
## 709 Geriatric long-term care facility
## 710 Community
## 711 Factory
## 712 Community
## 713 Guest House
## 714 Elderly Care Ward
## StartMonth EndMonth GGA CA
## 1 11 12 2 4
## 2 9 9 1 0
## 3 9 0 2 4
## 4 10 0 0 0
## 5 11 0 2 4
## 6 11 0 0 0
## 7 11 0 0 0
## 8 11 0 0 0
## 9 11 11 2 4
## 10 11 11 0 0
## 11 11 11 0 0
## 12 11 11 0 0
## 13 11 12 0 0
## 14 10 0 0 0
## 15 9 10 0 0
## 16 10 11 0 0
## 17 11 11 0 0
## 18 9 9 0 0
## 19 10 10 2 4
## 20 9 9 0 0
## 21 9 10 2 4
## 22 10 10 2 4
## 23 10 10 2 4
## 24 10 10 2 4
## 25 10 11 2 4
## 26 10 11 2 4
## 27 11 11 2 4
## 28 11 12 2 4
## 29 11 12 2 4
## 30 11 11 2 4
## 31 11 12 2 4
## 32 9 10 2 4
## 33 10 10 2 4
## 34 11 11 1 0
## 35 4 4 0 0
## 36 11 11 2 0
## 37 3 6 2 4
## 38 9 9 2 0
## 39 4 5 0 0
## 40 10 10 2 4
## 41 11 12 0 0
## 42 10 0 1 0
## 43 11 0 2 0
## 44 11 0 2 0
## 45 11 0 2 0
## 46 11 11 2 3
## 47 11 11 1 0
## 48 9 10 0 0
## 49 11 0 0 0
## 50 11 0 2 0
## 51 11 1 2 4
## 52 11 0 1 8
## 53 11 0 1 4
## 54 10 0 1 8
## 55 11 0 2 2
## 56 10 0 2 4
## 57 10 0 2 6
## 58 11 0 2 3
## 59 11 0 2 4
## 60 10 0 2 3
## 61 11 11 0 0
## 62 11 1 1 0
## 63 11 11 2 0
## 64 9 9 0 0
## 65 11 12 2 4
## 66 11 11 1 0
## 67 11 11 2 0
## 68 3 3 0 0
## 69 9 0 2 4
## 70 9 0 1 3
## 71 9 0 2 1
## 72 10 0 2 4
## 73 10 0 2 2
## 74 11 0 1 4
## 75 9 0 1 3
## 76 10 0 1 3
## 77 10 0 1 3
## 78 9 0 1 6
## 79 9 0 2 4
## 80 11 0 2 4
## 81 10 0 2 4
## 82 10 0 2 4
## 83 11 0 2 4
## 84 10 0 2 3
## 85 11 0 2 6
## 86 5 5 1 0
## 87 5 5 2 0
## 88 11 1 2 4
## 89 10 0 2 0
## 90 11 11 2 0
## 91 11 0 0 0
## 92 11 0 0 0
## 93 10 11 0 0
## 94 11 11 2 4
## 95 11 11 2 4
## 96 11 11 2 4
## 97 9 10 1 3
## 98 11 0 2 4
## 99 9 0 2 0
## 100 10 0 1 0
## 101 10 0 2 0
## 102 11 0 0 0
## 103 11 0 0 0
## 104 9 9 0 0
## 105 10 10 2 5
## 106 11 11 2 4
## 107 9 0 2 5
## 108 11 0 2 12
## 109 11 0 2 2
## 110 11 0 2 15
## 111 9 0 2 2
## 112 11 0 1 3
## 113 9 0 1 4
## 114 9 0 2 7
## 115 11 11 2 0
## 116 9 10 2 4
## 117 4 4 2 0
## 118 5 5 2 0
## 119 3 0 2 4
## 120 3 0 2 4
## 121 10 0 2 8
## 122 10 0 1 3
## 123 10 0 2 4
## 124 11 0 2 4
## 125 11 0 2 4
## 126 10 0 2 4
## 127 10 0 2 4
## 128 11 0 2 4
## 129 11 0 2 4
## 130 11 0 2 4
## 131 11 12 2 4
## 132 9 9 2 4
## 133 9 9 2 17
## 134 11 11 1 3
## 135 9 10 2 6
## 136 11 11 1 4
## 137 11 0 2 0
## 138 10 11 0 0
## 139 11 11 0 0
## 140 11 12 0 0
## 141 11 12 0 0
## 142 9 0 1 0
## 143 10 10 2 4
## 144 9 10 1 4
## 145 10 10 1 4
## 146 10 10 1 0
## 147 10 0 1 3
## 148 9 11 2 4
## 149 10 10 2 4
## 150 11 11 2 0
## 151 11 12 2 0
## 152 3 0 2 3
## 153 4 0 2 3
## 154 3 0 2 1
## 155 3 0 2 1
## 156 3 0 2 1
## 157 4 0 2 1
## 158 4 0 2 1
## 159 4 0 2 1
## 160 4 0 2 1
## 161 5 0 2 3
## 162 10 12 2 4
## 163 10 9 2 4
## 164 9 0 0 0
## 165 3 0 2 0
## 166 3 0 2 4
## 167 4 0 2 0
## 168 5 0 2 0
## 169 5 0 2 2
## 170 3 4 2 0
## 171 4 0 0 0
## 172 4 0 2 4
## 173 4 0 2 4
## 174 5 0 2 4
## 175 4 5 2 0
## 176 9 0 0 0
## 177 9 0 0 0
## 178 11 0 0 0
## 179 5 5 2 0
## 180 5 5 0 0
## 181 5 5 0 0
## 182 5 5 0 0
## 183 5 5 0 0
## 184 5 0 2 4
## 185 5 6 2 0
## 186 10 11 2 0
## 187 4 4 0 0
## 188 3 3 2 4
## 189 3 4 2 4
## 190 4 4 2 4
## 191 5 5 2 4
## 192 5 5 1 0
## 193 4 5 2 0
## 194 3 4 0 0
## 195 4 5 0 0
## 196 4 4 2 6
## 197 3 3 2 0
## 198 5 6 2 4
## 199 4 0 2 4
## 200 4 0 2 4
## 201 4 0 2 0
## 202 5 0 1 0
## 203 3 0 2 4
## 204 3 0 1 0
## 205 3 0 1 0
## 206 4 0 1 0
## 207 3 0 2 0
## 208 3 0 2 0
## 209 3 0 1 0
## 210 3 0 2 0
## 211 3 3 0 0
## 212 3 0 2 0
## 213 3 0 2 0
## 214 3 0 2 0
## 215 4 0 1 0
## 216 3 0 1 0
## 217 3 0 1 0
## 218 3 0 2 0
## 219 3 0 1 0
## 220 3 0 1 0
## 221 3 0 1 0
## 222 3 0 1 0
## 223 3 3 1 1
## 224 3 3 2 8
## 225 3 3 2 12
## 226 3 3 2 2
## 227 3 3 2 2
## 228 5 5 2 5
## 229 3 3 2 2
## 230 3 3 2 2
## 231 4 4 2 4
## 232 4 4 2 8
## 233 4 4 2 2
## 234 4 4 2 4
## 235 4 4 2 2
## 236 5 5 2 6
## 237 5 5 2 2
## 238 5 5 2 2
## 239 5 5 2 2
## 240 5 5 2 2
## 241 5 5 2 2
## 242 5 5 1 0
## 243 5 5 0 0
## 244 4 0 1 11
## 245 3 0 2 10
## 246 4 0 1 4
## 247 3 0 1 4
## 248 3 0 1 7
## 249 4 0 1 4
## 250 3 0 2 10
## 251 3 0 2 8
## 252 5 0 2 3
## 253 5 0 2 3
## 254 5 0 2 5
## 255 5 0 1 4
## 256 4 0 1 3
## 257 4 0 1 3
## 258 5 0 2 2
## 259 4 0 2 3
## 260 3 0 1 1
## 261 3 0 2 3
## 262 5 5 1 3
## 263 5 5 1 3
## 264 3 3 2 4
## 265 3 3 0 0
## 266 3 3 1 3
## 267 9 0 0 0
## 268 3 0 2 6
## 269 5 0 2 2
## 270 4 0 2 0
## 271 3 0 2 7
## 272 3 0 2 0
## 273 5 0 2 2
## 274 4 0 2 4
## 275 3 0 2 7
## 276 3 0 2 7
## 277 3 0 2 0
## 278 4 0 2 7
## 279 5 0 2 2
## 280 5 9 2 4
## 281 4 0 1 6
## 282 4 0 1 6
## 283 4 0 2 0
## 284 5 0 2 4
## 285 5 0 0 0
## 286 4 0 0 0
## 287 5 6 0 0
## 288 4 4 0 0
## 289 5 6 0 0
## 290 3 0 1 4
## 291 3 0 1 8
## 292 3 4 0 0
## 293 5 6 2 0
## 294 3 0 0 0
## 295 3 0 0 0
## 296 3 0 0 0
## 297 4 0 0 0
## 298 4 0 0 0
## 299 4 0 0 0
## 300 5 0 0 0
## 301 3 3 2 3
## 302 3 3 2 5
## 303 3 3 2 5
## 304 3 3 2 9
## 305 3 3 2 0
## 306 3 3 2 4
## 307 5 6 1 0
## 308 4 4 2 0
## 309 3 4 2 0
## 310 5 0 2 0
## 311 5 0 2 0
## 312 5 0 2 0
## 313 5 0 2 4
## 314 5 6 0 0
## 315 10 10 0 0
## 316 10 10 0 0
## 317 5 5 1 0
## 318 5 6 0 0
## 319 3 0 0 0
## 320 3 0 0 0
## 321 3 0 0 0
## 322 3 0 0 0
## 323 3 0 0 0
## 324 4 0 0 0
## 325 4 0 1 7
## 326 3 0 2 8
## 327 3 0 2 8
## 328 3 0 1 1
## 329 3 0 2 15
## 330 3 0 2 3
## 331 3 0 2 5
## 332 3 0 2 6
## 333 5 0 2 0
## 334 3 0 1 2
## 335 3 0 2 4
## 336 3 0 2 4
## 337 9 0 1 0
## 338 9 0 1 0
## 339 11 0 2 3
## 340 11 0 2 3
## 341 10 10 0 0
## 342 5 0 2 4
## 343 5 0 2 4
## 344 3 0 2 0
## 345 4 0 1 3
## 346 5 0 2 4
## 347 3 0 2 13
## 348 5 0 1 3
## 349 5 5 1 4
## 350 11 11 0 0
## 351 11 11 0 0
## 352 10 0 2 0
## 353 11 0 2 4
## 354 9 0 2 4
## 355 5 0 2 4
## 356 5 0 2 4
## 357 3 3 2 6
## 358 3 3 1 11
## 359 4 5 2 0
## 360 5 6 1 2
## 361 3 3 1 4
## 362 3 3 2 4
## 363 4 4 2 4
## 364 9 0 2 1
## 365 10 0 2 13
## 366 11 0 2 3
## 367 3 4 2 6
## 368 4 4 0 0
## 369 3 0 2 5
## 370 3 0 2 5
## 371 3 0 2 4
## 372 3 0 2 3
## 373 4 0 2 4
## 374 3 0 2 2
## 375 3 0 2 4
## 376 4 0 2 NA
## 377 4 0 2 4
## 378 4 4 0 0
## 379 4 4 2 0
## 380 4 5 2 0
## 381 4 4 2 0
## 382 0 0 2 0
## 383 5 5 2 0
## 384 4 6 2 0
## 385 4 0 2 0
## 386 4 0 2 0
## 387 6 6 2 3
## 388 8 9 2 0
## 389 6 0 2 0
## 390 7 0 1 0
## 391 7 0 2 0
## 392 6 7 2 0
## 393 7 7 2 4
## 394 6 0 2 4
## 395 6 0 2 4
## 396 7 0 2 4
## 397 7 0 0 0
## 398 7 0 1 4
## 399 7 0 0 0
## 400 7 0 2 4
## 401 8 0 2 4
## 402 6 6 1 6
## 403 8 8 1 0
## 404 2 0 2 3
## 405 1 1 0 0
## 406 6 6 0 0
## 407 6 6 0 0
## 408 7 7 0 0
## 409 6 7 2 0
## 410 6 0 0 0
## 411 7 0 2 4
## 412 7 0 1 3
## 413 8 8 0 0
## 414 7 7 0 0
## 415 6 0 2 4
## 416 8 0 2 0
## 417 8 0 2 7
## 418 8 9 2 0
## 419 12 12 2 0
## 420 6 6 0 0
## 421 8 8 2 0
## 422 2 3 2 0
## 423 6 0 2 4
## 424 7 0 2 4
## 425 7 8 1 4
## 426 6 0 0 0
## 427 8 0 0 0
## 428 6 7 1 0
## 429 6 0 2 0
## 430 7 0 2 0
## 431 6 0 1 2
## 432 6 0 2 6
## 433 6 0 2 8
## 434 7 0 1 8
## 435 8 0 1 3
## 436 8 0 1 3
## 437 6 0 2 4
## 438 8 0 2 4
## 439 8 0 2 7
## 440 8 0 2 4
## 441 6 0 2 0
## 442 6 0 2 8
## 443 7 0 1 5
## 444 7 0 1 4
## 445 8 0 2 2
## 446 8 0 2 8
## 447 8 0 1 1
## 448 8 0 1 1
## 449 8 0 1 14
## 450 7 7 2 1
## 451 8 9 2 14
## 452 6 7 0 0
## 453 7 7 2 4
## 454 7 0 2 0
## 455 8 0 2 5
## 456 7 0 1 3
## 457 8 0 1 3
## 458 8 0 1 6
## 459 6 6 0 0
## 460 7 9 0 0
## 461 7 7 2 1
## 462 8 8 2 6
## 463 8 0 0 0
## 464 8 0 0 0
## 465 8 8 2 0
## 466 6 0 2 0
## 467 8 0 2 0
## 468 7 0 2 0
## 469 7 7 2 3
## 470 8 8 1 0
## 471 6 0 2 2
## 472 12 0 2 3
## 473 12 0 2 3
## 474 12 0 2 3
## 475 12 0 2 3
## 476 12 0 2 3
## 477 12 0 2 3
## 478 12 0 2 3
## 479 8 8 1 0
## 480 8 9 1 0
## 481 6 7 2 4
## 482 8 8 2 6
## 483 8 8 2 6
## 484 2 3 2 0
## 485 1 1 0 0
## 486 8 9 2 2
## 487 2 0 2 4
## 488 6 0 2 4
## 489 7 0 2 4
## 490 7 0 2 4
## 491 7 0 2 4
## 492 7 7 0 0
## 493 7 7 0 0
## 494 7 7 0 0
## 495 7 7 2 2
## 496 1 3 2 0
## 497 7 7 1 2
## 498 6 7 0 0
## 499 2 0 2 3
## 500 12 0 2 1
## 501 12 0 2 1
## 502 12 0 2 3
## 503 2 0 2 3
## 504 12 0 2 3
## 505 7 8 2 4
## 506 5 7 0 0
## 507 5 0 1 4
## 508 5 9 0 0
## 509 7 6 0 0
## 510 6 7 2 3
## 511 7 0 0 0
## 512 2 2 2 0
## 513 1 3 2 0
## 514 1 0 2 0
## 515 2 0 0 0
## 516 1 0 2 4
## 517 1 0 2 7
## 518 1 0 2 4
## 519 2 0 0 0
## 520 2 0 2 7
## 521 2 0 2 0
## 522 12 0 2 4
## 523 12 0 0 0
## 524 2 2 2 0
## 525 7 0 2 1
## 526 1 1 0 0
## 527 2 3 0 0
## 528 7 0 0 0
## 529 2 2 0 0
## 530 1 2 0 0
## 531 1 2 1 4
## 532 2 2 2 0
## 533 1 0 0 0
## 534 12 0 0 0
## 535 12 0 1 3
## 536 12 0 2 3
## 537 1 0 0 0
## 538 1 5 0 0
## 539 1 3 1 2
## 540 1 1 2 0
## 541 12 12 2 4
## 542 1 1 2 4
## 543 1 1 2 4
## 544 2 2 2 4
## 545 12 1 2 4
## 546 2 2 2 4
## 547 12 12 2 4
## 548 12 12 2 4
## 549 1 1 2 0
## 550 1 1 2 0
## 551 1 1 2 0
## 552 1 1 2 0
## 553 1 1 0 0
## 554 1 2 0 0
## 555 2 3 0 0
## 556 12 2 2 4
## 557 1 0 2 4
## 558 1 2 2 0
## 559 1 2 2 0
## 560 12 12 2 0
## 561 2 0 2 4
## 562 2 0 2 4
## 563 1 0 2 4
## 564 2 0 1 0
## 565 12 0 2 0
## 566 12 0 2 0
## 567 12 0 2 0
## 568 2 0 2 0
## 569 1 0 2 0
## 570 1 0 2 0
## 571 2 0 2 0
## 572 12 0 2 0
## 573 12 0 2 0
## 574 12 0 1 0
## 575 2 0 2 0
## 576 12 0 2 0
## 577 12 0 2 0
## 578 1 0 2 0
## 579 12 0 2 0
## 580 12 0 2 4
## 581 2 0 2 0
## 582 2 0 2 0
## 583 2 0 2 0
## 584 12 0 2 0
## 585 12 0 2 0
## 586 12 0 2 0
## 587 12 0 2 0
## 588 12 0 2 0
## 589 1 0 2 0
## 590 1 0 1 0
## 591 1 0 2 0
## 592 2 0 2 0
## 593 7 7 1 5
## 594 1 1 2 4
## 595 1 0 2 0
## 596 1 0 2 0
## 597 1 0 2 0
## 598 1 0 2 0
## 599 1 0 2 0
## 600 2 0 2 0
## 601 2 0 2 0
## 602 2 0 2 0
## 603 2 0 1 0
## 604 2 0 2 0
## 605 2 0 2 0
## 606 2 0 2 0
## 607 2 0 2 0
## 608 2 0 2 0
## 609 2 0 2 0
## 610 12 0 2 0
## 611 12 0 2 0
## 612 1 0 2 0
## 613 1 0 2 0
## 614 1 0 2 0
## 615 1 0 2 0
## 616 1 0 2 0
## 617 1 0 2 0
## 618 1 0 2 0
## 619 1 0 2 0
## 620 1 0 2 0
## 621 1 0 2 0
## 622 2 0 2 0
## 623 12 0 2 0
## 624 1 0 2 0
## 625 1 0 1 0
## 626 1 0 2 0
## 627 2 0 2 0
## 628 12 0 2 0
## 629 12 0 2 0
## 630 12 0 2 0
## 631 12 0 2 0
## 632 12 0 2 0
## 633 1 0 2 0
## 634 1 0 2 0
## 635 1 0 2 0
## 636 1 0 2 0
## 637 1 0 2 0
## 638 1 0 1 0
## 639 1 0 2 0
## 640 1 0 2 0
## 641 1 0 1 0
## 642 2 0 1 0
## 643 2 0 2 0
## 644 2 2 2 4
## 645 1 5 2 4
## 646 12 0 2 8
## 647 2 0 1 9
## 648 1 0 2 3
## 649 12 0 1 8
## 650 1 0 2 12
## 651 1 0 1 2
## 652 2 0 2 1
## 653 1 0 1 13
## 654 1 0 2 14
## 655 2 0 1 7
## 656 1 0 1 8
## 657 1 0 1 14
## 658 2 0 1 9
## 659 1 0 2 12
## 660 12 0 2 4
## 661 12 0 2 4
## 662 12 0 2 1
## 663 12 0 2 2
## 664 12 0 1 4
## 665 12 0 2 4
## 666 2 0 1 2
## 667 12 0 2 3
## 668 2 0 2 5
## 669 2 0 1 4
## 670 2 0 1 4
## 671 12 0 2 5
## 672 2 0 2 6
## 673 2 0 2 6
## 674 12 0 2 2
## 675 1 0 2 10
## 676 1 0 2 12
## 677 1 0 2 3
## 678 1 0 2 5
## 679 2 2 0 0
## 680 12 5 2 4
## 681 12 12 2 0
## 682 2 2 0 0
## 683 2 3 2 0
## 684 12 12 2 0
## 685 2 2 1 0
## 686 2 4 2 4
## 687 12 12 0 0
## 688 12 2 2 0
## 689 12 1 2 4
## 690 2 2 1 1
## 691 7 8 0 0
## 692 2 0 1 3
## 693 1 0 1 3
## 694 1 0 2 4
## 695 1 0 1 6
## 696 1 0 2 7
## 697 2 0 2 0
## 698 2 0 2 7
## 699 2 0 2 7
## 700 2 0 2 7
## 701 2 0 2 7
## 702 12 0 2 4
## 703 1 0 1 8
## 704 1 0 2 7
## 705 2 0 2 7
## 706 12 0 1 14
## 707 12 12 2 0
## 708 6 6 2 0
## 709 2 3 2 0
## 710 1 0 2 4
## 711 2 0 1 3
## 712 12 0 2 4
## 713 2 0 2 4
## 714 1 2 0 0
## SA
## 1 Lordsdale
## 2 Thistle Hall 1/91
## 3 GII.4 2006a
## 4 0
## 5 GII.4 2006b
## 6 0
## 7 0
## 8 0
## 9 Valencia/2004/Es
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 Hu/GII-4/Chester/2006/UK
## 20 Norwalk
## 21 Lordsdale
## 22 Lordsdale
## 23 Lordsdale
## 24 Lordsdale
## 25 Lordsdale
## 26 Lordsdale
## 27 Lordsdale
## 28 Lordsdale
## 29 Lordsdale
## 30 Lordsdale
## 31 Lordsdale
## 32 Lordsdale
## 33 Lordsdale
## 34 same sequence found in concurrent Grand Pass oyster-related outbreaks in LA
## 35 Camberwell
## 36 96% identity w/Lordsdale
## 37 0
## 38 HuCV/New Delhi virus/NDV/India/1999
## 39 0
## 40 Lordsdale
## 41 0
## 42 Chiba
## 43 0
## 44 0
## 45 0
## 46 Oberhausen455/01/DE
## 47 meanwood/91/UK
## 48 0
## 49 0
## 50 0
## 51 Farmington Hills 2002
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 Norwalk
## 63 0
## 64 0
## 65 Bristol
## 66 0
## 67 100% identity w/AB05308, 96% identity w/MOH
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 Desert Shield
## 87 MV24
## 88 Grimsby
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 Lordsdale
## 99 Hawaii
## 100 Southampton
## 101 Hawaii
## 102 0
## 103 0
## 104 0
## 105 Yuri52
## 106 Jamboree-like
## 107 0
## 108 0
## 109 0
## 110 0
## 111 Melksham
## 112 Desert Shield
## 113 Chiba
## 114 Gwynedd
## 115 Camberwell virus (92% nucleotide identity)
## 116 GII.4 2006b
## 117 0
## 118 0
## 119 US 95/96 subset related to Lordsdale virus
## 120 US 95/96 subset related to Lordsdale virus
## 121 0
## 122 0
## 123 Farmington Hills
## 124 Farmington Hills
## 125 Farmington Hills
## 126 Farmington Hills
## 127 Farmington Hills
## 128 Farmington Hills
## 129 Farmington Hills
## 130 Farmington Hills
## 131 Taipei-1A
## 132 0
## 133 0
## 134 Desert Shield
## 135 Seacroft
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 Minerva
## 144 0
## 145 0
## 146 0
## 147 PD196-DEU
## 148 GII.4 2006b
## 149 v6
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 Uncharacterized
## 163 Lordsdale
## 164 0
## 165 0
## 166 NoV/GII.4/Terneuzen70/2006
## 167 0
## 168 0
## 169 similarity of 97% with No/GII.2/Kuenzelsau/3870/05
## 170 NV/Shaibah/2003/IQ
## 171 0
## 172 GII.4 2004
## 173 GII.4 2006a
## 174 GII.4 2006a
## 175 Hu/NLV/ukB7s2
## 176 Frankston-138534/94/AUS
## 177 Frankston-138534/94/AUS
## 178 Gisborne-l69506/94/AUS
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 Camberwell
## 185 6 Seacroft sequovar
## 186 0
## 187 0
## 188 Lordsdale
## 189 Lordsdale
## 190 Lordsdale
## 191 Lordsdale
## 192 0
## 193 NLV/Miami Beach/326/1995/US
## 194 Miami Beach
## 195 0
## 196 Seacroft/1990/UK
## 197 Hiroshima
## 198 Bristol virus
## 199 Lordsdale
## 200 Lordsdale
## 201 Toronto
## 202 Chiba
## 203 Lordsdale
## 204 Chiba
## 205 0
## 206 Chiba
## 207 0
## 208 MOH/99
## 209 0
## 210 MOH/99
## 211 UK2
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 Desert Shield
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 Desert Shield
## 263 Desert Shield
## 264 NoV Hu/GII-4/C5_159/South Korea
## 265 0
## 266 Desert Shield
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 GII.4 2006a
## 281 Sindlesham, Hesse
## 282 Sindlesham, Hesse
## 283 0
## 284 new variant
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 Gothenburg
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 NLV/Tarrag/238/2001/Sp
## 310 Hawaii
## 311 Hawaii
## 312 Hawaii
## 313 Lordsdale
## 314 Snow Mountain Virus
## 315 Camberwell
## 316 Camberwell
## 317 Desert Shield
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 Mexico-like virus
## 340 Mexico-like virus
## 341 0
## 342 Bristol
## 343 Bristol
## 344 0
## 345 Desert Shield
## 346 Bristol
## 347 Fayetteville
## 348 Desert Shield
## 349 95.9% homology w/Chiba
## 350 0
## 351 0
## 352 Sydney cluster
## 353 US 95/96 subset related to Lordsdale virus
## 354 US 95/96 subset related to Lordsdale virus
## 355 Farmington Hills
## 356 Farmington Hills
## 357 Taipei-78J
## 358 Taipei-82K
## 359 0
## 360 Southampton
## 361 0
## 362 GII.4 2006b
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 Toronto
## 388 0
## 389 0
## 390 0
## 391 0
## 392 P2B
## 393 Lordsdale
## 394 GII.4 2006a
## 395 GII.4 2006a
## 396 GII.4 2006b
## 397 0
## 398 0
## 399 0
## 400 GII.4 2006b
## 401 GII.4 2006a
## 402 0
## 403 0
## 404 NoV/Sydney/C14/02/AU
## 405 Camberwell-101922/94/AUS
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 Camberwell
## 412 Desert Shield
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 86% identity w/Snow Mountain virus
## 419 Camberwell
## 420 Chiba
## 421 0
## 422 0
## 423 Lordsdale
## 424 Lordsdale
## 425 0
## 426 0
## 427 0
## 428 Mikkeli
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 Japanese Gifu/96
## 451 0
## 452 Melksham
## 453 Bristol
## 454 0
## 455 0
## 456 Birmingham
## 457 Birmingham
## 458 Sindlesham, Hesse
## 459 0
## 460 Lordsdale
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 Hawaii
## 467 Hillingdon-like
## 468 Hawaii
## 469 0
## 470 0
## 471 0
## 472 Mexico-like virus
## 473 Mexico-like virus
## 474 Mexico-like virus
## 475 Mexico-like virus
## 476 Mexico-like virus
## 477 Mexico-like virus
## 478 99% deduced amino acid identity (91% nt identity) with TOR/91
## 479 Desert Shield
## 480 Southampton
## 481 GII.4 2006b
## 482 Seacroft/1990/UK
## 483 Seacroft/1990/UK
## 484 0
## 485 0
## 486 0
## 487 US 95/96 subset related to Lordsdale virus
## 488 0
## 489 Farmington Hills
## 490 Farmington Hills
## 491 Farmington Hills
## 492 0
## 493 0
## 494 0
## 495 Melksham-like
## 496 0
## 497 Southampton
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 Minerva
## 506 0
## 507 0
## 508 0
## 509 0
## 510 a
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 GII.4 2004
## 517 0
## 518 GII.4 2004
## 519 0
## 520 0
## 521 GII.b
## 522 GII.4 2006b
## 523 0
## 524 12C/92/UNK
## 525 NoV/Picton/03/AU
## 526 0
## 527 0
## 528 Upper Yarra-138513/94/AUS
## 529 0
## 530 0
## 531 Chiba
## 532 0
## 533 0
## 534 0
## 535 Desert Shield
## 536 Nor89JD
## 537 0
## 538 Grimsby
## 539 BCCDC03-028 (Southampton)
## 540 HU/NLV/DenHaag008/01/NL
## 541 Lordsdale
## 542 Lordsdale
## 543 Lordsdale
## 544 Lordsdale
## 545 Lordsdale
## 546 Lordsdale
## 547 Lordsdale
## 548 Lordsdale
## 549 Hu/Pfaffenhofen028/2000/DE
## 550 OS120458/01
## 551 OS120458/01
## 552 OS120458/01
## 553 Norwalk
## 554 0
## 555 Miami Beach
## 556 GII.4 2006b
## 557 Grimsby/1995/UK
## 558 Lymington virus
## 559 Lymington virus
## 560 0
## 561 Lordsdale
## 562 Lordsdale
## 563 Lordsdale
## 564 Chiba
## 565 Toronto
## 566 Toronto
## 567 Toronto
## 568 Toronto
## 569 Toronto
## 570 Toronto
## 571 Toronto
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 Lordsdale
## 581 Saitama U25
## 582 0
## 583 Saitama U25
## 584 0
## 585 0
## 586 0
## 587 0
## 588 Melksham
## 589 0
## 590 Norwalk
## 591 0
## 592 0
## 593 Apalachicola Bay
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 Farmington Hills
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 GII.4 2006b
## 681 0
## 682 0
## 683 Basel
## 684 P2-B phylogenic group
## 685 Chiba
## 686 Lordsdale
## 687 0
## 688 Hawaii
## 689 Bristol
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 Japanese Hokkaido strain
## 708 Camberwell
## 709 Toronto
## 710 Bristol, Lordsdale
## 711 Birmingham
## 712 Bristol, Lordsdale
## 713 new variant
## 714 0
## new_GGA new_CA new_SA
## 1 0 0 0
## 2 0 0 0
## 3 0 0 0
## 4 0 0 0
## 5 0 0 0
## 6 0 0 0
## 7 0 0 0
## 8 0 0 0
## 9 0 0 0
## 10 0 0 0
## 11 0 0 0
## 12 0 0 0
## 13 0 0 0
## 14 0 0 0
## 15 0 0 0
## 16 0 0 0
## 17 0 0 0
## 18 0 0 0
## 19 0 0 0
## 20 1 1 NV-USA93
## 21 0 0 0
## 22 0 0 0
## 23 0 0 0
## 24 0 0 0
## 25 0 0 0
## 26 0 0 0
## 27 0 0 0
## 28 0 0 0
## 29 0 0 0
## 30 0 0 0
## 31 0 0 0
## 32 0 0 0
## 33 0 0 0
## 34 0 0 0
## 35 2 4 CBW94-AUS
## 36 2 4 Lsdale-GBR
## 37 0 0 0
## 38 2 3 HuCV/New Delhi virus/NDV/India/1999
## 39 0 0 0
## 40 0 0 0
## 41 0 0 0
## 42 1 4 Chiba-JPN00
## 43 0 0 0
## 44 0 0 0
## 45 0 0 0
## 46 0 0 0
## 47 0 0 0
## 48 0 0 0
## 49 0 0 0
## 50 0 0 0
## 51 0 0 0
## 52 0 0 0
## 53 0 0 0
## 54 0 0 0
## 55 0 0 0
## 56 0 0 0
## 57 0 0 0
## 58 0 0 0
## 59 0 0 0
## 60 0 0 0
## 61 0 0 0
## 62 1 1 NV-USA93
## 63 0 0 0
## 64 0 0 0
## 65 0 0 0
## 66 0 0 0
## 67 0 0 0
## 68 0 0 0
## 69 0 0 0
## 70 0 0 0
## 71 0 0 0
## 72 0 0 0
## 73 0 0 0
## 74 0 0 0
## 75 0 0 0
## 76 0 0 0
## 77 0 0 0
## 78 0 0 0
## 79 0 0 0
## 80 0 0 0
## 81 0 0 0
## 82 0 0 0
## 83 0 0 0
## 84 0 0 0
## 85 0 0 0
## 86 1 3 DSV-USA93
## 87 2 3 Toronto-CAN93
## 88 0 0 0
## 89 0 0 0
## 90 0 0 0
## 91 0 0 0
## 92 0 0 0
## 93 0 0 0
## 94 0 0 0
## 95 0 0 0
## 96 0 0 0
## 97 0 0 0
## 98 0 0 0
## 99 2 1 Hawaii-USA94
## 100 1 2 Southampton
## 101 2 1 Hawaii-USA94
## 102 0 0 0
## 103 0 0 0
## 104 0 0 0
## 105 0 0 0
## 106 0 0 0
## 107 0 0 0
## 108 0 0 0
## 109 0 0 0
## 110 0 0 0
## 111 0 0 0
## 112 0 0 0
## 113 0 0 0
## 114 0 0 0
## 115 2 4 CBW94-AUS
## 116 0 0 0
## 117 0 0 0
## 118 0 0 0
## 119 0 0 0
## 120 0 0 0
## 121 0 0 0
## 122 0 0 0
## 123 0 0 0
## 124 0 0 0
## 125 0 0 0
## 126 0 0 0
## 127 0 0 0
## 128 0 0 0
## 129 0 0 0
## 130 0 0 0
## 131 0 0 0
## 132 0 0 0
## 133 0 0 0
## 134 0 0 0
## 135 0 0 0
## 136 0 0 0
## 137 0 0 0
## 138 0 0 0
## 139 0 0 0
## 140 0 0 0
## 141 0 0 0
## 142 0 0 0
## 143 0 0 0
## 144 0 0 0
## 145 0 0 0
## 146 0 0 0
## 147 0 0 0
## 148 0 0 0
## 149 0 0 0
## 150 0 0 0
## 151 0 0 0
## 152 0 0 0
## 153 0 0 0
## 154 0 0 0
## 155 0 0 0
## 156 0 0 0
## 157 0 0 0
## 158 0 0 0
## 159 0 0 0
## 160 0 0 0
## 161 0 0 0
## 162 0 0 0
## 163 0 0 0
## 164 0 0 0
## 165 0 0 0
## 166 0 0 0
## 167 0 0 0
## 168 0 0 0
## 169 0 0 0
## 170 2 9 Idafall-USA
## 171 0 0 0
## 172 0 0 0
## 173 0 0 0
## 174 0 0 0
## 175 2 4 Hu/NLV/ukB7s2
## 176 0 0 0
## 177 0 0 0
## 178 0 0 0
## 179 0 0 0
## 180 0 0 0
## 181 0 0 0
## 182 0 0 0
## 183 0 0 0
## 184 0 0 0
## 185 2 6 Seacrof-GBR00
## 186 0 0 0
## 187 0 0 0
## 188 0 0 0
## 189 0 0 0
## 190 0 0 0
## 191 0 0 0
## 192 0 0 0
## 193 2 4 MB326-USA
## 194 2 4 MB326-USA
## 195 0 0 0
## 196 0 0 0
## 197 0 0 0
## 198 0 0 0
## 199 0 0 0
## 200 0 0 0
## 201 2 3 Toronto-CAN93
## 202 1 4 Chiba-JPN00
## 203 0 0 0
## 204 1 4 Chiba-JPN00
## 205 0 0 0
## 206 1 4 Chiba-JPN00
## 207 0 0 0
## 208 2 5 MOH99-HUN
## 209 0 0 0
## 210 2 5 MOH99-HUN
## 211 0 0 0
## 212 0 0 0
## 213 0 0 0
## 214 0 0 0
## 215 0 0 0
## 216 0 0 0
## 217 0 0 0
## 218 0 0 0
## 219 0 0 0
## 220 0 0 0
## 221 0 0 0
## 222 0 0 0
## 223 0 0 0
## 224 0 0 0
## 225 0 0 0
## 226 0 0 0
## 227 0 0 0
## 228 0 0 0
## 229 0 0 0
## 230 0 0 0
## 231 0 0 0
## 232 0 0 0
## 233 0 0 0
## 234 0 0 0
## 235 0 0 0
## 236 0 0 0
## 237 0 0 0
## 238 0 0 0
## 239 0 0 0
## 240 0 0 0
## 241 0 0 0
## 242 1 3 DSV-USA93
## 243 0 0 0
## 244 0 0 0
## 245 0 0 0
## 246 0 0 0
## 247 0 0 0
## 248 0 0 0
## 249 0 0 0
## 250 0 0 0
## 251 0 0 0
## 252 0 0 0
## 253 0 0 0
## 254 0 0 0
## 255 0 0 0
## 256 0 0 0
## 257 0 0 0
## 258 0 0 0
## 259 0 0 0
## 260 0 0 0
## 261 0 0 0
## 262 0 0 0
## 263 0 0 0
## 264 0 0 0
## 265 0 0 0
## 266 0 0 0
## 267 0 0 0
## 268 0 0 0
## 269 0 0 0
## 270 0 0 0
## 271 0 0 0
## 272 0 0 0
## 273 0 0 0
## 274 0 0 0
## 275 0 0 0
## 276 0 0 0
## 277 0 0 0
## 278 0 0 0
## 279 0 0 0
## 280 0 0 0
## 281 0 0 0
## 282 0 0 0
## 283 0 0 0
## 284 0 0 0
## 285 0 0 0
## 286 0 0 0
## 287 0 0 0
## 288 0 0 0
## 289 0 0 0
## 290 0 0 0
## 291 0 0 0
## 292 0 0 0
## 293 0 0 0
## 294 0 0 0
## 295 0 0 0
## 296 0 0 0
## 297 0 0 0
## 298 0 0 0
## 299 0 0 0
## 300 0 0 0
## 301 0 0 0
## 302 0 0 0
## 303 0 0 0
## 304 0 0 0
## 305 0 0 0
## 306 0 0 0
## 307 0 0 0
## 308 0 0 0
## 309 0 0 0
## 310 2 1 Hawaii-USA94
## 311 2 1 Hawaii-USA94
## 312 2 1 Hawaii-USA94
## 313 0 0 0
## 314 2 2 SMV1-USA
## 315 2 4 CBW94-AUS
## 316 2 4 CBW94-AUS
## 317 1 3 DSV-USA93
## 318 0 0 0
## 319 0 0 0
## 320 0 0 0
## 321 0 0 0
## 322 0 0 0
## 323 0 0 0
## 324 0 0 0
## 325 0 0 0
## 326 0 0 0
## 327 0 0 0
## 328 0 0 0
## 329 0 0 0
## 330 0 0 0
## 331 0 0 0
## 332 0 0 0
## 333 0 0 0
## 334 0 0 0
## 335 0 0 0
## 336 0 0 0
## 337 0 0 0
## 338 0 0 0
## 339 0 0 0
## 340 0 0 0
## 341 0 0 0
## 342 0 0 0
## 343 0 0 0
## 344 0 0 0
## 345 0 0 0
## 346 0 0 0
## 347 0 0 0
## 348 0 0 0
## 349 0 0 0
## 350 0 0 0
## 351 0 0 0
## 352 2 3 Sydney cluster
## 353 0 0 0
## 354 0 0 0
## 355 0 0 0
## 356 0 0 0
## 357 0 0 0
## 358 0 0 0
## 359 0 0 0
## 360 0 0 0
## 361 0 0 0
## 362 0 0 0
## 363 0 0 0
## 364 0 0 0
## 365 0 0 0
## 366 0 0 0
## 367 0 0 0
## 368 0 0 0
## 369 0 0 0
## 370 0 0 0
## 371 0 0 0
## 372 0 0 0
## 373 0 0 0
## 374 0 0 0
## 375 0 0 0
## 376 0 0 0
## 377 0 0 0
## 378 0 0 0
## 379 0 0 0
## 380 0 0 0
## 381 0 0 0
## 382 0 0 0
## 383 0 0 0
## 384 0 0 0
## 385 0 0 0
## 386 0 0 0
## 387 0 0 0
## 388 0 0 0
## 389 0 0 0
## 390 0 0 0
## 391 0 0 0
## 392 0 0 0
## 393 0 0 0
## 394 0 0 0
## 395 0 0 0
## 396 0 0 0
## 397 0 0 0
## 398 0 0 0
## 399 0 0 0
## 400 0 0 0
## 401 0 0 0
## 402 0 0 0
## 403 0 0 0
## 404 0 0 0
## 405 2 4 CBW94-AUS
## 406 0 0 0
## 407 0 0 0
## 408 0 0 0
## 409 0 0 0
## 410 0 0 0
## 411 0 0 0
## 412 0 0 0
## 413 0 0 0
## 414 0 0 0
## 415 0 0 0
## 416 0 0 0
## 417 0 0 0
## 418 2 2 SMV1-USA
## 419 2 4 CBW94-AUS
## 420 1 4 Chiba-JPN00
## 421 0 0 0
## 422 0 0 0
## 423 0 0 0
## 424 0 0 0
## 425 0 0 0
## 426 0 0 0
## 427 0 0 0
## 428 1 6 Mikkeli
## 429 0 0 0
## 430 0 0 0
## 431 0 0 0
## 432 0 0 0
## 433 0 0 0
## 434 0 0 0
## 435 0 0 0
## 436 0 0 0
## 437 0 0 0
## 438 0 0 0
## 439 0 0 0
## 440 0 0 0
## 441 0 0 0
## 442 0 0 0
## 443 0 0 0
## 444 0 0 0
## 445 0 0 0
## 446 0 0 0
## 447 0 0 0
## 448 0 0 0
## 449 0 0 0
## 450 0 0 0
## 451 0 0 0
## 452 2 2 Msham-GBR95
## 453 0 0 0
## 454 0 0 0
## 455 0 0 0
## 456 0 0 0
## 457 0 0 0
## 458 0 0 0
## 459 0 0 0
## 460 2 4 Lsdale-GBR
## 461 0 0 0
## 462 0 0 0
## 463 0 0 0
## 464 0 0 0
## 465 0 0 0
## 466 2 1 Hawaii-USA94
## 467 2 5 Hilingd-GBR00
## 468 2 1 Hawaii-USA94
## 469 0 0 0
## 470 0 0 0
## 471 0 0 0
## 472 0 0 0
## 473 0 0 0
## 474 0 0 0
## 475 0 0 0
## 476 0 0 0
## 477 0 0 0
## 478 0 0 0
## 479 1 3 DSV-USA93
## 480 1 2 Southampton
## 481 0 0 0
## 482 0 0 0
## 483 0 0 0
## 484 0 0 0
## 485 0 0 0
## 486 0 0 0
## 487 0 0 0
## 488 0 0 0
## 489 0 0 0
## 490 0 0 0
## 491 0 0 0
## 492 0 0 0
## 493 0 0 0
## 494 0 0 0
## 495 0 0 0
## 496 0 0 0
## 497 0 0 0
## 498 0 0 0
## 499 0 0 0
## 500 0 0 0
## 501 0 0 0
## 502 0 0 0
## 503 0 0 0
## 504 0 0 0
## 505 0 0 0
## 506 0 0 0
## 507 0 0 0
## 508 0 0 0
## 509 0 0 0
## 510 0 0 0
## 511 0 0 0
## 512 0 0 0
## 513 0 0 0
## 514 0 0 0
## 515 0 0 0
## 516 0 0 0
## 517 0 0 0
## 518 0 0 0
## 519 0 0 0
## 520 0 0 0
## 521 0 0 0
## 522 0 0 0
## 523 0 0 0
## 524 0 0 0
## 525 0 0 0
## 526 0 0 0
## 527 0 0 0
## 528 0 0 0
## 529 0 0 0
## 530 0 0 0
## 531 0 0 0
## 532 0 0 0
## 533 0 0 0
## 534 0 0 0
## 535 0 0 0
## 536 0 0 0
## 537 0 0 0
## 538 2 4 Grimsby
## 539 0 0 0
## 540 2 1 HU/NLV/DenHaag008/01/NL
## 541 0 0 0
## 542 0 0 0
## 543 0 0 0
## 544 0 0 0
## 545 0 0 0
## 546 0 0 0
## 547 0 0 0
## 548 0 0 0
## 549 2 1 Hu/Pfaffenhofen028/2000/DE
## 550 2 2 OS120458/01
## 551 2 2 OS120458/01
## 552 2 2 OS120458/01
## 553 1 1 NV-USA93
## 554 0 0 0
## 555 2 4 MB326-USA
## 556 0 0 0
## 557 0 0 0
## 558 0 0 0
## 559 0 0 0
## 560 0 0 0
## 561 0 0 0
## 562 0 0 0
## 563 0 0 0
## 564 1 4 Chiba-JPN00
## 565 2 3 Toronto-CAN93
## 566 2 3 Toronto-CAN93
## 567 2 3 Toronto-CAN93
## 568 2 3 Toronto-CAN93
## 569 2 3 Toronto-CAN93
## 570 2 3 Toronto-CAN93
## 571 2 3 Toronto-CAN93
## 572 0 0 0
## 573 0 0 0
## 574 0 0 0
## 575 0 0 0
## 576 0 0 0
## 577 0 0 0
## 578 0 0 0
## 579 0 0 0
## 580 0 0 0
## 581 2 8 SU25-JPN
## 582 0 0 0
## 583 2 8 SU25-JPN
## 584 0 0 0
## 585 0 0 0
## 586 0 0 0
## 587 0 0 0
## 588 2 2 Msham-GBR95
## 589 0 0 0
## 590 1 1 NV-USA93
## 591 0 0 0
## 592 0 0 0
## 593 0 0 0
## 594 0 0 0
## 595 0 0 0
## 596 0 0 0
## 597 0 0 0
## 598 0 0 0
## 599 0 0 0
## 600 0 0 0
## 601 0 0 0
## 602 0 0 0
## 603 0 0 0
## 604 0 0 0
## 605 0 0 0
## 606 0 0 0
## 607 0 0 0
## 608 0 0 0
## 609 0 0 0
## 610 0 0 0
## 611 0 0 0
## 612 0 0 0
## 613 0 0 0
## 614 0 0 0
## 615 0 0 0
## 616 0 0 0
## 617 0 0 0
## 618 0 0 0
## 619 0 0 0
## 620 0 0 0
## 621 0 0 0
## 622 0 0 0
## 623 0 0 0
## 624 0 0 0
## 625 0 0 0
## 626 0 0 0
## 627 0 0 0
## 628 0 0 0
## 629 0 0 0
## 630 0 0 0
## 631 0 0 0
## 632 0 0 0
## 633 0 0 0
## 634 0 0 0
## 635 0 0 0
## 636 0 0 0
## 637 0 0 0
## 638 0 0 0
## 639 0 0 0
## 640 0 0 0
## 641 0 0 0
## 642 0 0 0
## 643 0 0 0
## 644 0 0 0
## 645 0 0 0
## 646 0 0 0
## 647 0 0 0
## 648 0 0 0
## 649 0 0 0
## 650 0 0 0
## 651 0 0 0
## 652 0 0 0
## 653 0 0 0
## 654 0 0 0
## 655 0 0 0
## 656 0 0 0
## 657 0 0 0
## 658 0 0 0
## 659 0 0 0
## 660 0 0 0
## 661 0 0 0
## 662 0 0 0
## 663 0 0 0
## 664 0 0 0
## 665 0 0 0
## 666 0 0 0
## 667 0 0 0
## 668 0 0 0
## 669 0 0 0
## 670 0 0 0
## 671 0 0 0
## 672 0 0 0
## 673 0 0 0
## 674 0 0 0
## 675 0 0 0
## 676 0 0 0
## 677 0 0 0
## 678 0 0 0
## 679 0 0 0
## 680 0 0 0
## 681 0 0 0
## 682 0 0 0
## 683 2 4 Lsdale-GBR
## 684 0 0 0
## 685 1 4 Chiba-JPN00
## 686 0 0 0
## 687 0 0 0
## 688 2 1 Hawaii-USA94
## 689 0 0 0
## 690 0 0 0
## 691 0 0 0
## 692 0 0 0
## 693 0 0 0
## 694 0 0 0
## 695 0 0 0
## 696 0 0 0
## 697 0 0 0
## 698 0 0 0
## 699 0 0 0
## 700 0 0 0
## 701 0 0 0
## 702 0 0 0
## 703 0 0 0
## 704 0 0 0
## 705 0 0 0
## 706 0 0 0
## 707 0 0 0
## 708 2 4 CBW94-AUS
## 709 2 3 Toronto-CAN93
## 710 0 0 0
## 711 0 0 0
## 712 0 0 0
## 713 0 0 0
## 714 0 0 0
## SA_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20 Zheng
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35 Zheng
## 36 Zheng
## 37
## 38 origi l article
## 39
## 40
## 41
## 42 Zheng
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62 Zheng
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86 Zheng
## 87 origi l article/Zheng
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99 Zheng
## 100 abstraction
## 101 Zheng
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115 Zheng
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170 origi l article
## 171
## 172
## 173
## 174
## 175 http://www.springerimages.com/Images/Biomedicine/1-10.1007_s10096-005-0002-1-0
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185 Zheng
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193 Zheng
## 194 Zheng
## 195
## 196
## 197
## 198
## 199
## 200
## 201 Zheng
## 202 Zheng
## 203
## 204 Zheng
## 205
## 206 Zheng
## 207
## 208 Zheng
## 209
## 210 Zheng
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242 Zheng
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310 Zheng
## 311 Zheng
## 312 Zheng
## 313
## 314 Zheng
## 315 Zheng
## 316 Zheng
## 317 Zheng
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352 abstraction
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405 Zheng
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418 Zheng
## 419 Zheng
## 420 Zheng
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428 abstraction
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452 Zheng
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460 Zheng
## 461
## 462
## 463
## 464
## 465
## 466 Zheng
## 467 Zheng
## 468 Zheng
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479 Zheng
## 480 abstraction
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538 abstraction
## 539
## 540 Diagnosis of Norovirus outbreaks by commercial ELISA or RT-PCR, de Bruin et al.
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 550 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 551 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 552 http://onlinelibrary.wiley.com/doi/10.1002/jmv.20403/pdf
## 553 Zheng
## 554
## 555 Zheng
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564 Zheng
## 565 Zheng
## 566 Zheng
## 567 Zheng
## 568 Zheng
## 569 Zheng
## 570 Zheng
## 571 Zheng
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581 Zheng
## 582
## 583 Zheng
## 584
## 585
## 586
## 587
## 588 Zheng
## 589
## 590 Zheng
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683 origi l article
## 684
## 685 Zheng
## 686
## 687
## 688 Zheng
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708 Zheng
## 709 Zheng
## 710
## 711
## 712
## 713
## 714
## GGB CB
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 2 0
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 1 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 2 3
## 52 2 4
## 53 2 6
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 2 5
## 61 0 0
## 62 2 0
## 63 2 0
## 64 0 0
## 65 2 4
## 66 2 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 1 8
## 76 2 2
## 77 1 14
## 78 1 8
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 2 4
## 95 0 0
## 96 0 0
## 97 2 6
## 98 0 0
## 99 0 0
## 100 2 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 2 1
## 106 0 0
## 107 2 3
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 2 4
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 2 2
## 134 0 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 1 3
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 2 GII.b
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 2 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 1 6
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 2 0
## 203 0 0
## 204 2 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 2 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 2 0
## 217 0 0
## 218 0 0
## 219 2 0
## 220 0 0
## 221 0 0
## 222 2 0
## 223 2 5
## 224 1 1
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 2 3
## 245 1 4
## 246 2 12
## 247 2 3
## 248 2 8
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 1 3
## 260 1 7
## 261 0 0
## 262 1 6
## 263 1 4
## 264 0 0
## 265 0 0
## 266 1 1
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 2 3
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 2 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 1 8
## 291 1 3
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 2 0
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 0 0
## 316 0 0
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 2 8
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 0 0
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 2 6
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 2 18
## 359 0 0
## 360 0 0
## 361 0 0
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 1 14
## 370 0 0
## 371 1 14
## 372 1 4
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 1 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 0 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 2 0
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 1 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 0 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 2 0
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 1 5
## 426 0 0
## 427 0 0
## 428 0 0
## 429 0 0
## 430 0 0
## 431 1 13
## 432 0 0
## 433 0 0
## 434 2 4
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 2 6
## 440 0 0
## 441 2 3
## 442 0 0
## 443 2 6
## 444 0 0
## 445 2 8
## 446 0 0
## 447 1 2
## 448 1 4
## 449 0 0
## 450 0 0
## 451 0 0
## 452 0 0
## 453 0 0
## 454 1 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 0 0
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 0 0
## 467 0 0
## 468 0 0
## 469 0 0
## 470 2 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 0 0
## 478 2 9
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 0 0
## 484 0 0
## 485 0 0
## 486 2 4
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 0
## 496 0 0
## 497 2 7
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 2 3
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 2 2
## 519 0 0
## 520 0 0
## 521 2 7
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 0 0
## 530 0 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 2 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 1 0
## 548 1 0
## 549 0 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 0 0
## 554 0 0
## 555 0 0
## 556 0 0
## 557 2 0
## 558 0 0
## 559 0 0
## 560 0 0
## 561 2 3
## 562 2 4
## 563 2 4
## 564 0 0
## 565 1 0
## 566 0 0
## 567 0 0
## 568 2 0
## 569 0 0
## 570 0 0
## 571 2 0
## 572 0 0
## 573 0 0
## 574 2 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 2 4
## 591 0 0
## 592 0 0
## 593 2 0
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 1 0
## 623 0 0
## 624 0 0
## 625 2 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 2 0
## 639 0 0
## 640 0 0
## 641 2 0
## 642 2 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 2 3
## 647 2 15
## 648 1 1
## 649 2 7
## 650 1 2
## 651 2 12
## 652 2 4
## 653 2 16
## 654 2 3
## 655 2 4
## 656 2 4
## 657 2 3
## 658 2 1
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 2 4
## 665 0 0
## 666 0 0
## 667 2 10
## 668 0 0
## 669 0 0
## 670 0 0
## 671 2 4
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 2 4
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 1 0
## 687 0 0
## 688 0 0
## 689 2 0
## 690 1 2
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 1 8
## 696 2 6
## 697 2 3
## 698 2 6
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 2 1
## 713 0 0
## 714 0 0
## SB new_GGB
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 Hu/NLV/Oxford/B6S6/2003/UK 2
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 Desert Shield 1
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 Snow Mountain 2
## 63 GII.b 0
## 64 0 0
## 65 new strain 0
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 Melksham 2
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 Neustrelitz 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 0 0
## 134 0 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 Kashiwa645 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 closest to group 6, 7, 9 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 Sindlesham/1995/UK 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 Toronto 2
## 203 0 0
## 204 Toronto 2
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 Sindlesham 0
## 263 Chiba 0
## 264 0 0
## 265 0 0
## 266 Norwalk 0
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 Saitama U25 2
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 Lordsdale 2
## 316 Lordsdale 2
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 0 0
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 93.7% homology w/Saitama 0
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 Taipei-81K 0
## 359 0 0
## 360 0 0
## 361 0 0
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 0 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 0 0
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 0 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 0 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 Bristol 2
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 0 0
## 426 0 0
## 427 0 0
## 428 Birmingham 1
## 429 0 0
## 430 0 0
## 431 0 0
## 432 0 0
## 433 0 0
## 434 0 0
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 0 0
## 440 0 0
## 441 0 0
## 442 0 0
## 443 0 0
## 444 0 0
## 445 0 0
## 446 0 0
## 447 0 0
## 448 0 0
## 449 0 0
## 450 0 0
## 451 0 0
## 452 0 0
## 453 0 0
## 454 0 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 Birmingham 1
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 0 0
## 467 0 0
## 468 0 0
## 469 0 0
## 470 0 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 0 0
## 478 98% deduced amino acid identity (94% nt identity) with VIR/97 0
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 0 0
## 484 0 0
## 485 0 0
## 486 GII.4 2006b 0
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 0
## 496 0 0
## 497 Leeds 0
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 b 0
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 0 0
## 519 0 0
## 520 0 0
## 521 0 0
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 0 0
## 530 0 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 BCCDC03-020 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 Malta 1
## 548 Malta 1
## 549 0 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 Camberwell 2
## 554 0 0
## 555 0 0
## 556 0 0
## 557 Fayetteville/1998/US 2
## 558 0 0
## 559 0 0
## 560 0 0
## 561 Toronto 0
## 562 0 0
## 563 0 0
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 Lordsdale 0
## 591 0 0
## 592 0 0
## 593 0 0
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 0 0
## 649 0 0
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 0
## 654 0 0
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 0
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 GII.4 2006b 0
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 Southampton (84% identity) 1
## 687 0 0
## 688 0 0
## 689 GII.b 0
## 690 0 0
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 0
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 Hawaii 0
## 713 0 0
## 714 0 0
## new_CB new_SB
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 4 Hu/NLV/Oxford/B6S6/2003/UK
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 3 DSV-USA93
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 2 SMV1-USA
## 63 0 0
## 64 0 0
## 65 0 0
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 2 Msham-GBR95
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 0 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 0 0
## 134 0 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 0 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 3 Toronto-CAN93
## 203 0 0
## 204 3 Toronto-CAN93
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 8 SU25-JPN
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 4 Lsdale-GBR
## 316 4 Lsdale-GBR
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 0 0
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 0 0
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 0 0
## 359 0 0
## 360 0 0
## 361 0 0
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 0 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 0 0
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 0 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 0 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 4 Bristol-GBR93
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 0 0
## 426 0 0
## 427 0 0
## 428 3 Birmingham
## 429 0 0
## 430 0 0
## 431 0 0
## 432 0 0
## 433 0 0
## 434 0 0
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 0 0
## 440 0 0
## 441 0 0
## 442 0 0
## 443 0 0
## 444 0 0
## 445 0 0
## 446 0 0
## 447 0 0
## 448 0 0
## 449 0 0
## 450 0 0
## 451 0 0
## 452 0 0
## 453 0 0
## 454 0 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 3 Birmingham
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 0 0
## 467 0 0
## 468 0 0
## 469 0 0
## 470 0 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 0 0
## 478 0 0
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 0 0
## 484 0 0
## 485 0 0
## 486 0 0
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 0
## 496 0 0
## 497 0 0
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 0 0
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 0 0
## 519 0 0
## 520 0 0
## 521 0 0
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 0 0
## 530 0 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 0 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 4 Chiba-JPN00
## 548 4 Chiba-JPN00
## 549 0 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 4 CBW94-AUS
## 554 0 0
## 555 0 0
## 556 0 0
## 557 14 Fayetteville/1998/US
## 558 0 0
## 559 0 0
## 560 0 0
## 561 0 0
## 562 0 0
## 563 0 0
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 0 0
## 591 0 0
## 592 0 0
## 593 0 0
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 0 0
## 649 0 0
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 0
## 654 0 0
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 0
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 0 0
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 2 Southampton (84% identity)
## 687 0 0
## 688 0 0
## 689 0 0
## 690 0 0
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 0
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 0 0
## 713 0 0
## 714 0 0
## SB_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19 http://kcdc.labkm.net/vsd/database/gene_list.jsp?orgId=6&cuTag=CL0005&page=910&orderCol=&orderTag=&searchIn=&textIn=
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40 Zheng
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62 Zheng
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100 Zheng
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202 Zheng
## 203
## 204 Zheng
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309 Zheng
## 310
## 311
## 312
## 313
## 314
## 315 Zheng
## 316 Zheng
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419 Zheng
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547 origi l article/Zheng
## 548 origi l article/Zheng
## 549
## 550
## 551
## 552
## 553 Zheng
## 554
## 555
## 556
## 557 abstraction
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686 abstraction
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## GGC CC
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 0 0
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 2 6
## 53 2 11
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 2 12
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 0
## 65 2 4
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 2 7
## 98 0 0
## 99 0 0
## 100 0 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 2 6
## 106 0 0
## 107 2 12
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 2 6
## 134 0 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 1 3
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 2 4
## 203 0 0
## 204 2 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 2 14
## 247 2 12
## 248 1 4
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 1 4
## 261 0 0
## 262 2 4
## 263 2 5
## 264 0 0
## 265 0 0
## 266 1 2
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 2 3
## 291 2 3
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 2 0
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 0 0
## 316 0 0
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 0 0
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 0 0
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 2 6
## 359 0 0
## 360 0 0
## 361 0 0
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 0 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 1 0
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 0 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 0 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 0 0
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 2 4
## 426 0 0
## 427 0 0
## 428 0 0
## 429 0 0
## 430 0 0
## 431 2 11
## 432 0 0
## 433 0 0
## 434 0 0
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 0 0
## 440 0 0
## 441 0 0
## 442 0 0
## 443 0 0
## 444 0 0
## 445 0 0
## 446 0 0
## 447 0 0
## 448 0 0
## 449 0 0
## 450 0 0
## 451 0 0
## 452 0 0
## 453 0 0
## 454 0 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 0 0
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 0 0
## 467 0 0
## 468 0 0
## 469 0 0
## 470 0 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 0 0
## 478 2 0
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 0 0
## 484 0 0
## 485 0 0
## 486 2 17
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 0
## 496 0 0
## 497 0 0
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 2 4
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 0 0
## 519 0 0
## 520 0 0
## 521 0 0
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 0 0
## 530 0 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 2 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 2 0
## 548 2 0
## 549 0 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 0 0
## 554 0 0
## 555 0 0
## 556 0 0
## 557 1 2
## 558 0 0
## 559 0 0
## 560 0 0
## 561 2 6
## 562 0 0
## 563 0 0
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 0 0
## 591 0 0
## 592 0 0
## 593 0 0
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 1 2
## 649 2 6
## 650 2 4
## 651 0 0
## 652 2 9
## 653 0 0
## 654 2 5
## 655 2 5
## 656 2 3
## 657 1 8
## 658 2 5
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 2 6
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 2 4
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 0 0
## 687 0 0
## 688 0 0
## 689 1 4
## 690 2 4
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 0
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 0 0
## 713 0 0
## 714 0 0
## SC
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 new strain
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 SaitamaU4
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 Desert Shield/1990/SA
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 Lordsdale
## 203 0
## 204 MOH/99
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 Grimsby
## 263 Hillingdon
## 264 0
## 265 0
## 266 Southampton
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 Khs1-1997-JP
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 Taipei-84K
## 359 0
## 360 0
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 0
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 GII.4 2004
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 Leeds
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 0
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 99 and 98% deduced amino acid identity with FAY=98 and KAS/00 , respectively (both 92% nt identity)
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 0
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 BCCDC04-007
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 H104-94-J
## 548 H104-94-J
## 549 0
## 550 0
## 551 0
## 552 0
## 553 Whiterose
## 554 0
## 555 0
## 556 0
## 557 Southampton/1991/UK
## 558 0
## 559 0
## 560 0
## 561 Florida
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 GII.4 2006b
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 Chiba
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## new_ggc new_cc new_sc
## 1 0 0 0
## 2 0 0 0
## 3 0 0 0
## 4 0 0 0
## 5 0 0 0
## 6 0 0 0
## 7 0 0 0
## 8 0 0 0
## 9 0 0 0
## 10 0 0 0
## 11 0 0 0
## 12 0 0 0
## 13 0 0 0
## 14 0 0 0
## 15 0 0 0
## 16 0 0 0
## 17 0 0 0
## 18 0 0 0
## 19 0 0 0
## 20 0 0 0
## 21 0 0 0
## 22 0 0 0
## 23 0 0 0
## 24 0 0 0
## 25 0 0 0
## 26 0 0 0
## 27 0 0 0
## 28 0 0 0
## 29 0 0 0
## 30 0 0 0
## 31 0 0 0
## 32 0 0 0
## 33 0 0 0
## 34 0 0 0
## 35 0 0 0
## 36 0 0 0
## 37 0 0 0
## 38 0 0 0
## 39 0 0 0
## 40 0 0 0
## 41 0 0 0
## 42 0 0 0
## 43 0 0 0
## 44 0 0 0
## 45 0 0 0
## 46 0 0 0
## 47 0 0 0
## 48 0 0 0
## 49 0 0 0
## 50 0 0 0
## 51 0 0 0
## 52 0 0 0
## 53 0 0 0
## 54 0 0 0
## 55 0 0 0
## 56 0 0 0
## 57 0 0 0
## 58 0 0 0
## 59 0 0 0
## 60 0 0 0
## 61 0 0 0
## 62 0 0 0
## 63 0 0 0
## 64 0 0 0
## 65 0 0 0
## 66 0 0 0
## 67 0 0 0
## 68 0 0 0
## 69 0 0 0
## 70 0 0 0
## 71 0 0 0
## 72 0 0 0
## 73 0 0 0
## 74 0 0 0
## 75 0 0 0
## 76 0 0 0
## 77 0 0 0
## 78 0 0 0
## 79 0 0 0
## 80 0 0 0
## 81 0 0 0
## 82 0 0 0
## 83 0 0 0
## 84 0 0 0
## 85 0 0 0
## 86 0 0 0
## 87 0 0 0
## 88 0 0 0
## 89 0 0 0
## 90 0 0 0
## 91 0 0 0
## 92 0 0 0
## 93 0 0 0
## 94 0 0 0
## 95 0 0 0
## 96 0 0 0
## 97 0 0 0
## 98 0 0 0
## 99 0 0 0
## 100 0 0 0
## 101 0 0 0
## 102 0 0 0
## 103 0 0 0
## 104 0 0 0
## 105 0 0 0
## 106 0 0 0
## 107 0 0 0
## 108 0 0 0
## 109 0 0 0
## 110 0 0 0
## 111 0 0 0
## 112 0 0 0
## 113 0 0 0
## 114 0 0 0
## 115 0 0 0
## 116 0 0 0
## 117 0 0 0
## 118 0 0 0
## 119 0 0 0
## 120 0 0 0
## 121 0 0 0
## 122 0 0 0
## 123 0 0 0
## 124 0 0 0
## 125 0 0 0
## 126 0 0 0
## 127 0 0 0
## 128 0 0 0
## 129 0 0 0
## 130 0 0 0
## 131 0 0 0
## 132 0 0 0
## 133 0 0 0
## 134 0 0 0
## 135 0 0 0
## 136 0 0 0
## 137 0 0 0
## 138 0 0 0
## 139 0 0 0
## 140 0 0 0
## 141 0 0 0
## 142 0 0 0
## 143 0 0 0
## 144 0 0 0
## 145 0 0 0
## 146 0 0 0
## 147 0 0 0
## 148 0 0 0
## 149 0 0 0
## 150 0 0 0
## 151 0 0 0
## 152 0 0 0
## 153 0 0 0
## 154 0 0 0
## 155 0 0 0
## 156 0 0 0
## 157 0 0 0
## 158 0 0 0
## 159 0 0 0
## 160 0 0 0
## 161 0 0 0
## 162 0 0 0
## 163 0 0 0
## 164 0 0 0
## 165 0 0 0
## 166 0 0 0
## 167 0 0 0
## 168 0 0 0
## 169 0 0 0
## 170 0 0 0
## 171 0 0 0
## 172 0 0 0
## 173 0 0 0
## 174 0 0 0
## 175 0 0 0
## 176 0 0 0
## 177 0 0 0
## 178 0 0 0
## 179 0 0 0
## 180 0 0 0
## 181 0 0 0
## 182 0 0 0
## 183 0 0 0
## 184 0 0 0
## 185 0 0 0
## 186 0 0 0
## 187 0 0 0
## 188 0 0 0
## 189 0 0 0
## 190 0 0 0
## 191 0 0 0
## 192 0 0 0
## 193 0 0 0
## 194 0 0 0
## 195 0 0 0
## 196 0 0 0
## 197 0 0 0
## 198 0 0 0
## 199 0 0 0
## 200 0 0 0
## 201 0 0 0
## 202 0 0 0
## 203 0 0 0
## 204 2 5 MOH99-HUN
## 205 0 0 0
## 206 0 0 0
## 207 0 0 0
## 208 0 0 0
## 209 0 0 0
## 210 0 0 0
## 211 0 0 0
## 212 0 0 0
## 213 0 0 0
## 214 0 0 0
## 215 0 0 0
## 216 0 0 0
## 217 0 0 0
## 218 0 0 0
## 219 0 0 0
## 220 0 0 0
## 221 0 0 0
## 222 0 0 0
## 223 0 0 0
## 224 0 0 0
## 225 0 0 0
## 226 0 0 0
## 227 0 0 0
## 228 0 0 0
## 229 0 0 0
## 230 0 0 0
## 231 0 0 0
## 232 0 0 0
## 233 0 0 0
## 234 0 0 0
## 235 0 0 0
## 236 0 0 0
## 237 0 0 0
## 238 0 0 0
## 239 0 0 0
## 240 0 0 0
## 241 0 0 0
## 242 0 0 0
## 243 0 0 0
## 244 0 0 0
## 245 0 0 0
## 246 0 0 0
## 247 0 0 0
## 248 0 0 0
## 249 0 0 0
## 250 0 0 0
## 251 0 0 0
## 252 0 0 0
## 253 0 0 0
## 254 0 0 0
## 255 0 0 0
## 256 0 0 0
## 257 0 0 0
## 258 0 0 0
## 259 0 0 0
## 260 0 0 0
## 261 0 0 0
## 262 0 0 0
## 263 0 0 0
## 264 0 0 0
## 265 0 0 0
## 266 0 0 0
## 267 0 0 0
## 268 0 0 0
## 269 0 0 0
## 270 0 0 0
## 271 0 0 0
## 272 0 0 0
## 273 0 0 0
## 274 0 0 0
## 275 0 0 0
## 276 0 0 0
## 277 0 0 0
## 278 0 0 0
## 279 0 0 0
## 280 0 0 0
## 281 0 0 0
## 282 0 0 0
## 283 0 0 0
## 284 0 0 0
## 285 0 0 0
## 286 0 0 0
## 287 0 0 0
## 288 0 0 0
## 289 0 0 0
## 290 0 0 0
## 291 0 0 0
## 292 0 0 0
## 293 0 0 0
## 294 0 0 0
## 295 0 0 0
## 296 0 0 0
## 297 0 0 0
## 298 0 0 0
## 299 0 0 0
## 300 0 0 0
## 301 0 0 0
## 302 0 0 0
## 303 0 0 0
## 304 0 0 0
## 305 0 0 0
## 306 0 0 0
## 307 0 0 0
## 308 0 0 0
## 309 0 0 0
## 310 0 0 0
## 311 0 0 0
## 312 0 0 0
## 313 0 0 0
## 314 0 0 0
## 315 0 0 0
## 316 0 0 0
## 317 0 0 0
## 318 0 0 0
## 319 0 0 0
## 320 0 0 0
## 321 0 0 0
## 322 0 0 0
## 323 0 0 0
## 324 0 0 0
## 325 0 0 0
## 326 0 0 0
## 327 0 0 0
## 328 0 0 0
## 329 0 0 0
## 330 0 0 0
## 331 0 0 0
## 332 0 0 0
## 333 0 0 0
## 334 0 0 0
## 335 0 0 0
## 336 0 0 0
## 337 0 0 0
## 338 0 0 0
## 339 0 0 0
## 340 0 0 0
## 341 0 0 0
## 342 0 0 0
## 343 0 0 0
## 344 0 0 0
## 345 0 0 0
## 346 0 0 0
## 347 0 0 0
## 348 0 0 0
## 349 0 0 0
## 350 0 0 0
## 351 0 0 0
## 352 0 0 0
## 353 0 0 0
## 354 0 0 0
## 355 0 0 0
## 356 0 0 0
## 357 0 0 0
## 358 0 0 0
## 359 0 0 0
## 360 0 0 0
## 361 0 0 0
## 362 0 0 0
## 363 0 0 0
## 364 0 0 0
## 365 0 0 0
## 366 0 0 0
## 367 0 0 0
## 368 0 0 0
## 369 0 0 0
## 370 0 0 0
## 371 0 0 0
## 372 0 0 0
## 373 0 0 0
## 374 0 0 0
## 375 0 0 0
## 376 0 0 0
## 377 0 0 0
## 378 0 0 0
## 379 0 0 0
## 380 0 0 0
## 381 0 0 0
## 382 0 0 0
## 383 0 0 0
## 384 0 0 0
## 385 0 0 0
## 386 0 0 0
## 387 0 0 0
## 388 0 0 0
## 389 0 0 0
## 390 0 0 0
## 391 0 0 0
## 392 0 0 0
## 393 0 0 0
## 394 0 0 0
## 395 0 0 0
## 396 0 0 0
## 397 0 0 0
## 398 0 0 0
## 399 0 0 0
## 400 0 0 0
## 401 0 0 0
## 402 0 0 0
## 403 0 0 0
## 404 0 0 0
## 405 0 0 0
## 406 0 0 0
## 407 0 0 0
## 408 0 0 0
## 409 0 0 0
## 410 0 0 0
## 411 0 0 0
## 412 0 0 0
## 413 0 0 0
## 414 0 0 0
## 415 0 0 0
## 416 0 0 0
## 417 0 0 0
## 418 0 0 0
## 419 0 0 0
## 420 0 0 0
## 421 0 0 0
## 422 0 0 0
## 423 0 0 0
## 424 0 0 0
## 425 0 0 0
## 426 0 0 0
## 427 0 0 0
## 428 0 0 0
## 429 0 0 0
## 430 0 0 0
## 431 0 0 0
## 432 0 0 0
## 433 0 0 0
## 434 0 0 0
## 435 0 0 0
## 436 0 0 0
## 437 0 0 0
## 438 0 0 0
## 439 0 0 0
## 440 0 0 0
## 441 0 0 0
## 442 0 0 0
## 443 0 0 0
## 444 0 0 0
## 445 0 0 0
## 446 0 0 0
## 447 0 0 0
## 448 0 0 0
## 449 0 0 0
## 450 0 0 0
## 451 0 0 0
## 452 0 0 0
## 453 0 0 0
## 454 0 0 0
## 455 0 0 0
## 456 0 0 0
## 457 0 0 0
## 458 0 0 0
## 459 0 0 0
## 460 2 7 Leeds-GBR00
## 461 0 0 0
## 462 0 0 0
## 463 0 0 0
## 464 0 0 0
## 465 0 0 0
## 466 0 0 0
## 467 0 0 0
## 468 0 0 0
## 469 0 0 0
## 470 0 0 0
## 471 0 0 0
## 472 0 0 0
## 473 0 0 0
## 474 0 0 0
## 475 0 0 0
## 476 0 0 0
## 477 0 0 0
## 478 2 14 Fayetteville
## 479 0 0 0
## 480 0 0 0
## 481 0 0 0
## 482 0 0 0
## 483 0 0 0
## 484 0 0 0
## 485 0 0 0
## 486 0 0 0
## 487 0 0 0
## 488 0 0 0
## 489 0 0 0
## 490 0 0 0
## 491 0 0 0
## 492 0 0 0
## 493 0 0 0
## 494 0 0 0
## 495 0 0 0
## 496 0 0 0
## 497 0 0 0
## 498 0 0 0
## 499 0 0 0
## 500 0 0 0
## 501 0 0 0
## 502 0 0 0
## 503 0 0 0
## 504 0 0 0
## 505 0 0 0
## 506 0 0 0
## 507 0 0 0
## 508 0 0 0
## 509 0 0 0
## 510 0 0 0
## 511 0 0 0
## 512 0 0 0
## 513 0 0 0
## 514 0 0 0
## 515 0 0 0
## 516 0 0 0
## 517 0 0 0
## 518 0 0 0
## 519 0 0 0
## 520 0 0 0
## 521 0 0 0
## 522 0 0 0
## 523 0 0 0
## 524 0 0 0
## 525 0 0 0
## 526 0 0 0
## 527 0 0 0
## 528 0 0 0
## 529 0 0 0
## 530 0 0 0
## 531 0 0 0
## 532 0 0 0
## 533 0 0 0
## 534 0 0 0
## 535 0 0 0
## 536 0 0 0
## 537 0 0 0
## 538 0 0 0
## 539 0 0 0
## 540 0 0 0
## 541 0 0 0
## 542 0 0 0
## 543 0 0 0
## 544 0 0 0
## 545 0 0 0
## 546 0 0 0
## 547 0 0 0
## 548 0 0 0
## 549 0 0 0
## 550 0 0 0
## 551 0 0 0
## 552 0 0 0
## 553 1 2 Whiterose
## 554 0 0 0
## 555 0 0 0
## 556 0 0 0
## 557 0 0 0
## 558 0 0 0
## 559 0 0 0
## 560 0 0 0
## 561 0 0 0
## 562 0 0 0
## 563 0 0 0
## 564 0 0 0
## 565 0 0 0
## 566 0 0 0
## 567 0 0 0
## 568 0 0 0
## 569 0 0 0
## 570 0 0 0
## 571 0 0 0
## 572 0 0 0
## 573 0 0 0
## 574 0 0 0
## 575 0 0 0
## 576 0 0 0
## 577 0 0 0
## 578 0 0 0
## 579 0 0 0
## 580 0 0 0
## 581 0 0 0
## 582 0 0 0
## 583 0 0 0
## 584 0 0 0
## 585 0 0 0
## 586 0 0 0
## 587 0 0 0
## 588 0 0 0
## 589 0 0 0
## 590 0 0 0
## 591 0 0 0
## 592 0 0 0
## 593 0 0 0
## 594 0 0 0
## 595 0 0 0
## 596 0 0 0
## 597 0 0 0
## 598 0 0 0
## 599 0 0 0
## 600 0 0 0
## 601 0 0 0
## 602 0 0 0
## 603 0 0 0
## 604 0 0 0
## 605 0 0 0
## 606 0 0 0
## 607 0 0 0
## 608 0 0 0
## 609 0 0 0
## 610 0 0 0
## 611 0 0 0
## 612 0 0 0
## 613 0 0 0
## 614 0 0 0
## 615 0 0 0
## 616 0 0 0
## 617 0 0 0
## 618 0 0 0
## 619 0 0 0
## 620 0 0 0
## 621 0 0 0
## 622 0 0 0
## 623 0 0 0
## 624 0 0 0
## 625 0 0 0
## 626 0 0 0
## 627 0 0 0
## 628 0 0 0
## 629 0 0 0
## 630 0 0 0
## 631 0 0 0
## 632 0 0 0
## 633 0 0 0
## 634 0 0 0
## 635 0 0 0
## 636 0 0 0
## 637 0 0 0
## 638 0 0 0
## 639 0 0 0
## 640 0 0 0
## 641 0 0 0
## 642 0 0 0
## 643 0 0 0
## 644 0 0 0
## 645 0 0 0
## 646 0 0 0
## 647 0 0 0
## 648 0 0 0
## 649 0 0 0
## 650 0 0 0
## 651 0 0 0
## 652 0 0 0
## 653 0 0 0
## 654 0 0 0
## 655 0 0 0
## 656 0 0 0
## 657 0 0 0
## 658 0 0 0
## 659 0 0 0
## 660 0 0 0
## 661 0 0 0
## 662 0 0 0
## 663 0 0 0
## 664 0 0 0
## 665 0 0 0
## 666 0 0 0
## 667 0 0 0
## 668 0 0 0
## 669 0 0 0
## 670 0 0 0
## 671 0 0 0
## 672 0 0 0
## 673 0 0 0
## 674 0 0 0
## 675 0 0 0
## 676 0 0 0
## 677 0 0 0
## 678 0 0 0
## 679 0 0 0
## 680 0 0 0
## 681 0 0 0
## 682 0 0 0
## 683 0 0 0
## 684 0 0 0
## 685 0 0 0
## 686 0 0 0
## 687 0 0 0
## 688 0 0 0
## 689 0 0 0
## 690 0 0 0
## 691 0 0 0
## 692 0 0 0
## 693 0 0 0
## 694 0 0 0
## 695 0 0 0
## 696 0 0 0
## 697 0 0 0
## 698 0 0 0
## 699 0 0 0
## 700 0 0 0
## 701 0 0 0
## 702 0 0 0
## 703 0 0 0
## 704 0 0 0
## 705 0 0 0
## 706 0 0 0
## 707 0 0 0
## 708 0 0 0
## 709 0 0 0
## 710 0 0 0
## 711 0 0 0
## 712 0 0 0
## 713 0 0 0
## 714 0 0 0
## SC_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204 Zheng
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## 324
## 325
## 326
## 327
## 328
## 329
## 330
## 331
## 332
## 333
## 334
## 335
## 336
## 337
## 338
## 339
## 340
## 341
## 342
## 343
## 344
## 345
## 346
## 347
## 348
## 349
## 350
## 351
## 352
## 353
## 354
## 355
## 356
## 357
## 358
## 359
## 360
## 361
## 362
## 363
## 364
## 365
## 366
## 367
## 368
## 369
## 370
## 371
## 372
## 373
## 374
## 375
## 376
## 377
## 378
## 379
## 380
## 381
## 382
## 383
## 384
## 385
## 386
## 387
## 388
## 389
## 390
## 391
## 392
## 393
## 394
## 395
## 396
## 397
## 398
## 399
## 400
## 401
## 402
## 403
## 404
## 405
## 406
## 407
## 408
## 409
## 410
## 411
## 412
## 413
## 414
## 415
## 416
## 417
## 418
## 419
## 420
## 421
## 422
## 423
## 424
## 425
## 426
## 427
## 428
## 429
## 430
## 431
## 432
## 433
## 434
## 435
## 436
## 437
## 438
## 439
## 440
## 441
## 442
## 443
## 444
## 445
## 446
## 447
## 448
## 449
## 450
## 451
## 452
## 453
## 454
## 455
## 456
## 457
## 458
## 459
## 460 Zheng
## 461
## 462
## 463
## 464
## 465
## 466
## 467
## 468
## 469
## 470
## 471
## 472
## 473
## 474
## 475
## 476
## 477
## 478 abstraction
## 479
## 480
## 481
## 482
## 483
## 484
## 485
## 486
## 487
## 488
## 489
## 490
## 491
## 492
## 493
## 494
## 495
## 496
## 497
## 498
## 499
## 500
## 501
## 502
## 503
## 504
## 505
## 506
## 507
## 508
## 509
## 510
## 511
## 512
## 513
## 514
## 515
## 516
## 517
## 518
## 519
## 520
## 521
## 522
## 523
## 524
## 525
## 526
## 527
## 528
## 529
## 530
## 531
## 532
## 533
## 534
## 535
## 536
## 537
## 538
## 539
## 540
## 541
## 542
## 543
## 544
## 545
## 546
## 547
## 548
## 549
## 550
## 551
## 552
## 553 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 554
## 555
## 556
## 557
## 558
## 559
## 560
## 561
## 562
## 563
## 564
## 565
## 566
## 567
## 568
## 569
## 570
## 571
## 572
## 573
## 574
## 575
## 576
## 577
## 578
## 579
## 580
## 581
## 582
## 583
## 584
## 585
## 586
## 587
## 588
## 589
## 590
## 591
## 592
## 593
## 594
## 595
## 596
## 597
## 598
## 599
## 600
## 601
## 602
## 603
## 604
## 605
## 606
## 607
## 608
## 609
## 610
## 611
## 612
## 613
## 614
## 615
## 616
## 617
## 618
## 619
## 620
## 621
## 622
## 623
## 624
## 625
## 626
## 627
## 628
## 629
## 630
## 631
## 632
## 633
## 634
## 635
## 636
## 637
## 638
## 639
## 640
## 641
## 642
## 643
## 644
## 645
## 646
## 647
## 648
## 649
## 650
## 651
## 652
## 653
## 654
## 655
## 656
## 657
## 658
## 659
## 660
## 661
## 662
## 663
## 664
## 665
## 666
## 667
## 668
## 669
## 670
## 671
## 672
## 673
## 674
## 675
## 676
## 677
## 678
## 679
## 680
## 681
## 682
## 683
## 684
## 685
## 686
## 687
## 688
## 689
## 690
## 691
## 692
## 693
## 694
## 695
## 696
## 697
## 698
## 699
## 700
## 701
## 702
## 703
## 704
## 705
## 706
## 707
## 708
## 709
## 710
## 711
## 712
## 713
## 714
## GGD CD SD new_ggd new_cd new_sd
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 2 15 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 0 0 0 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 2 4 Bristol 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 0 0 0 0 0 0
## 242 0 0 0 0 0 0
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 1 3 0 0 0 0
## 247 1 2 0 0 0 0
## 248 2 3 0 0 0 0
## 249 0 0 0 0 0 0
## 250 0 0 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 0 0 0 0 0 0
## 263 2 8 Wortley 0 0 0
## 264 0 0 0 0 0 0
## 265 0 0 0 0 0 0
## 266 0 0 0 0 0 0
## 267 0 0 0 0 0 0
## 268 0 0 0 0 0 0
## 269 0 0 0 0 0 0
## 270 0 0 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 0 0 0 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 2 4 0 0 0 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 0 0 0 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 1 0 NLV/Steinbach/EG/2001/CA 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 0 0 0 0
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 0 0 0 0 0 0
## 324 0 0 0 0 0 0
## 325 0 0 0 0 0 0
## 326 0 0 0 0 0 0
## 327 0 0 0 0 0 0
## 328 0 0 0 0 0 0
## 329 0 0 0 0 0 0
## 330 0 0 0 0 0 0
## 331 0 0 0 0 0 0
## 332 0 0 0 0 0 0
## 333 0 0 0 0 0 0
## 334 0 0 0 0 0 0
## 335 0 0 0 0 0 0
## 336 0 0 0 0 0 0
## 337 0 0 0 0 0 0
## 338 0 0 0 0 0 0
## 339 0 0 0 0 0 0
## 340 0 0 0 0 0 0
## 341 0 0 0 0 0 0
## 342 0 0 0 0 0 0
## 343 0 0 0 0 0 0
## 344 0 0 0 0 0 0
## 345 0 0 0 0 0 0
## 346 0 0 0 0 0 0
## 347 0 0 0 0 0 0
## 348 0 0 0 0 0 0
## 349 0 0 0 0 0 0
## 350 0 0 0 0 0 0
## 351 0 0 0 0 0 0
## 352 0 0 0 0 0 0
## 353 0 0 0 0 0 0
## 354 0 0 0 0 0 0
## 355 0 0 0 0 0 0
## 356 0 0 0 0 0 0
## 357 0 0 0 0 0 0
## 358 0 0 0 0 0 0
## 359 0 0 0 0 0 0
## 360 0 0 0 0 0 0
## 361 0 0 0 0 0 0
## 362 0 0 0 0 0 0
## 363 0 0 0 0 0 0
## 364 0 0 0 0 0 0
## 365 0 0 0 0 0 0
## 366 0 0 0 0 0 0
## 367 0 0 0 0 0 0
## 368 0 0 0 0 0 0
## 369 0 0 0 0 0 0
## 370 0 0 0 0 0 0
## 371 0 0 0 0 0 0
## 372 0 0 0 0 0 0
## 373 0 0 0 0 0 0
## 374 0 0 0 0 0 0
## 375 0 0 0 0 0 0
## 376 0 0 0 0 0 0
## 377 0 0 0 0 0 0
## 378 0 0 0 0 0 0
## 379 0 0 0 0 0 0
## 380 0 0 0 0 0 0
## 381 0 0 0 0 0 0
## 382 0 0 0 0 0 0
## 383 0 0 0 0 0 0
## 384 0 0 0 0 0 0
## 385 0 0 0 0 0 0
## 386 0 0 0 0 0 0
## 387 0 0 0 0 0 0
## 388 0 0 0 0 0 0
## 389 0 0 0 0 0 0
## 390 0 0 0 0 0 0
## 391 0 0 0 0 0 0
## 392 0 0 0 0 0 0
## 393 0 0 0 0 0 0
## 394 0 0 0 0 0 0
## 395 0 0 0 0 0 0
## 396 0 0 0 0 0 0
## 397 0 0 0 0 0 0
## 398 0 0 0 0 0 0
## 399 0 0 0 0 0 0
## 400 0 0 0 0 0 0
## 401 0 0 0 0 0 0
## 402 0 0 0 0 0 0
## 403 1 0 0 0 0 0
## 404 0 0 0 0 0 0
## 405 0 0 0 0 0 0
## 406 0 0 0 0 0 0
## 407 0 0 0 0 0 0
## 408 0 0 0 0 0 0
## 409 0 0 0 0 0 0
## 410 0 0 0 0 0 0
## 411 0 0 0 0 0 0
## 412 0 0 0 0 0 0
## 413 0 0 0 0 0 0
## 414 0 0 0 0 0 0
## 415 0 0 0 0 0 0
## 416 0 0 0 0 0 0
## 417 0 0 0 0 0 0
## 418 0 0 0 0 0 0
## 419 0 0 0 0 0 0
## 420 0 0 0 0 0 0
## 421 0 0 0 0 0 0
## 422 0 0 0 0 0 0
## 423 0 0 0 0 0 0
## 424 0 0 0 0 0 0
## 425 0 0 0 0 0 0
## 426 0 0 0 0 0 0
## 427 0 0 0 0 0 0
## 428 0 0 0 0 0 0
## 429 0 0 0 0 0 0
## 430 0 0 0 0 0 0
## 431 2 3 0 0 0 0
## 432 0 0 0 0 0 0
## 433 0 0 0 0 0 0
## 434 0 0 0 0 0 0
## 435 0 0 0 0 0 0
## 436 0 0 0 0 0 0
## 437 0 0 0 0 0 0
## 438 0 0 0 0 0 0
## 439 0 0 0 0 0 0
## 440 0 0 0 0 0 0
## 441 0 0 0 0 0 0
## 442 0 0 0 0 0 0
## 443 0 0 0 0 0 0
## 444 0 0 0 0 0 0
## 445 0 0 0 0 0 0
## 446 0 0 0 0 0 0
## 447 0 0 0 0 0 0
## 448 0 0 0 0 0 0
## 449 0 0 0 0 0 0
## 450 0 0 0 0 0 0
## 451 0 0 0 0 0 0
## 452 0 0 0 0 0 0
## 453 0 0 0 0 0 0
## 454 0 0 0 0 0 0
## 455 0 0 0 0 0 0
## 456 0 0 0 0 0 0
## 457 0 0 0 0 0 0
## 458 0 0 0 0 0 0
## 459 0 0 0 0 0 0
## 460 0 0 0 0 0 0
## 461 0 0 0 0 0 0
## 462 0 0 0 0 0 0
## 463 0 0 0 0 0 0
## 464 0 0 0 0 0 0
## 465 0 0 0 0 0 0
## 466 0 0 0 0 0 0
## 467 0 0 0 0 0 0
## 468 0 0 0 0 0 0
## 469 0 0 0 0 0 0
## 470 0 0 0 0 0 0
## 471 0 0 0 0 0 0
## 472 0 0 0 0 0 0
## 473 0 0 0 0 0 0
## 474 0 0 0 0 0 0
## 475 0 0 0 0 0 0
## 476 0 0 0 0 0 0
## 477 0 0 0 0 0 0
## 478 0 0 0 0 0 0
## 479 0 0 0 0 0 0
## 480 0 0 0 0 0 0
## 481 0 0 0 0 0 0
## 482 0 0 0 0 0 0
## 483 0 0 0 0 0 0
## 484 0 0 0 0 0 0
## 485 0 0 0 0 0 0
## 486 1 3 0 0 0 0
## 487 0 0 0 0 0 0
## 488 0 0 0 0 0 0
## 489 0 0 0 0 0 0
## 490 0 0 0 0 0 0
## 491 0 0 0 0 0 0
## 492 0 0 0 0 0 0
## 493 0 0 0 0 0 0
## 494 0 0 0 0 0 0
## 495 0 0 0 0 0 0
## 496 0 0 0 0 0 0
## 497 0 0 0 0 0 0
## 498 0 0 0 0 0 0
## 499 0 0 0 0 0 0
## 500 0 0 0 0 0 0
## 501 0 0 0 0 0 0
## 502 0 0 0 0 0 0
## 503 0 0 0 0 0 0
## 504 0 0 0 0 0 0
## 505 0 0 0 0 0 0
## 506 0 0 0 0 0 0
## 507 0 0 0 0 0 0
## 508 0 0 0 0 0 0
## 509 0 0 0 0 0 0
## 510 0 0 0 0 0 0
## 511 0 0 0 0 0 0
## 512 0 0 0 0 0 0
## 513 0 0 0 0 0 0
## 514 0 0 0 0 0 0
## 515 0 0 0 0 0 0
## 516 0 0 0 0 0 0
## 517 0 0 0 0 0 0
## 518 0 0 0 0 0 0
## 519 0 0 0 0 0 0
## 520 0 0 0 0 0 0
## 521 0 0 0 0 0 0
## 522 0 0 0 0 0 0
## 523 0 0 0 0 0 0
## 524 0 0 0 0 0 0
## 525 0 0 0 0 0 0
## 526 0 0 0 0 0 0
## 527 0 0 0 0 0 0
## 528 0 0 0 0 0 0
## 529 0 0 0 0 0 0
## 530 0 0 0 0 0 0
## 531 0 0 0 0 0 0
## 532 0 0 0 0 0 0
## 533 0 0 0 0 0 0
## 534 0 0 0 0 0 0
## 535 0 0 0 0 0 0
## 536 0 0 0 0 0 0
## 537 0 0 0 0 0 0
## 538 0 0 0 0 0 0
## 539 2 0 BCCDC03-008 0 0 0
## 540 0 0 0 0 0 0
## 541 0 0 0 0 0 0
## 542 0 0 0 0 0 0
## 543 0 0 0 0 0 0
## 544 0 0 0 0 0 0
## 545 0 0 0 0 0 0
## 546 0 0 0 0 0 0
## 547 2 0 GII.b 0 0 0
## 548 2 0 GII.b 0 0 0
## 549 0 0 0 0 0 0
## 550 0 0 0 0 0 0
## 551 0 0 0 0 0 0
## 552 0 0 0 0 0 0
## 553 0 0 0 0 0 0
## 554 0 0 0 0 0 0
## 555 0 0 0 0 0 0
## 556 0 0 0 0 0 0
## 557 2 3 Harrow/2001/UK_Mexico/1989/MX 0 0 0
## 558 0 0 0 0 0 0
## 559 0 0 0 0 0 0
## 560 0 0 0 0 0 0
## 561 0 0 0 0 0 0
## 562 0 0 0 0 0 0
## 563 0 0 0 0 0 0
## 564 0 0 0 0 0 0
## 565 0 0 0 0 0 0
## 566 0 0 0 0 0 0
## 567 0 0 0 0 0 0
## 568 0 0 0 0 0 0
## 569 0 0 0 0 0 0
## 570 0 0 0 0 0 0
## 571 0 0 0 0 0 0
## 572 0 0 0 0 0 0
## 573 0 0 0 0 0 0
## 574 0 0 0 0 0 0
## 575 0 0 0 0 0 0
## 576 0 0 0 0 0 0
## 577 0 0 0 0 0 0
## 578 0 0 0 0 0 0
## 579 0 0 0 0 0 0
## 580 0 0 0 0 0 0
## 581 0 0 0 0 0 0
## 582 0 0 0 0 0 0
## 583 0 0 0 0 0 0
## 584 0 0 0 0 0 0
## 585 0 0 0 0 0 0
## 586 0 0 0 0 0 0
## 587 0 0 0 0 0 0
## 588 0 0 0 0 0 0
## 589 0 0 0 0 0 0
## 590 0 0 0 0 0 0
## 591 0 0 0 0 0 0
## 592 0 0 0 0 0 0
## 593 0 0 0 0 0 0
## 594 0 0 0 0 0 0
## 595 0 0 0 0 0 0
## 596 0 0 0 0 0 0
## 597 0 0 0 0 0 0
## 598 0 0 0 0 0 0
## 599 0 0 0 0 0 0
## 600 0 0 0 0 0 0
## 601 0 0 0 0 0 0
## 602 0 0 0 0 0 0
## 603 0 0 0 0 0 0
## 604 0 0 0 0 0 0
## 605 0 0 0 0 0 0
## 606 0 0 0 0 0 0
## 607 0 0 0 0 0 0
## 608 0 0 0 0 0 0
## 609 0 0 0 0 0 0
## 610 0 0 0 0 0 0
## 611 0 0 0 0 0 0
## 612 0 0 0 0 0 0
## 613 0 0 0 0 0 0
## 614 0 0 0 0 0 0
## 615 0 0 0 0 0 0
## 616 0 0 0 0 0 0
## 617 0 0 0 0 0 0
## 618 0 0 0 0 0 0
## 619 0 0 0 0 0 0
## 620 0 0 0 0 0 0
## 621 0 0 0 0 0 0
## 622 0 0 0 0 0 0
## 623 0 0 0 0 0 0
## 624 0 0 0 0 0 0
## 625 0 0 0 0 0 0
## 626 0 0 0 0 0 0
## 627 0 0 0 0 0 0
## 628 0 0 0 0 0 0
## 629 0 0 0 0 0 0
## 630 0 0 0 0 0 0
## 631 0 0 0 0 0 0
## 632 0 0 0 0 0 0
## 633 0 0 0 0 0 0
## 634 0 0 0 0 0 0
## 635 0 0 0 0 0 0
## 636 0 0 0 0 0 0
## 637 0 0 0 0 0 0
## 638 0 0 0 0 0 0
## 639 0 0 0 0 0 0
## 640 0 0 0 0 0 0
## 641 0 0 0 0 0 0
## 642 0 0 0 0 0 0
## 643 0 0 0 0 0 0
## 644 0 0 0 0 0 0
## 645 0 0 0 0 0 0
## 646 0 0 0 0 0 0
## 647 0 0 0 0 0 0
## 648 1 12 0 0 0 0
## 649 1 14 0 0 0 0
## 650 2 8 0 0 0 0
## 651 0 0 0 0 0 0
## 652 1 14 0 0 0 0
## 653 0 0 0 0 0 0
## 654 2 12 0 0 0 0
## 655 0 0 0 0 0 0
## 656 1 1 0 0 0 0
## 657 2 4 0 0 0 0
## 658 2 6 0 0 0 0
## 659 0 0 0 0 0 0
## 660 0 0 0 0 0 0
## 661 0 0 0 0 0 0
## 662 0 0 0 0 0 0
## 663 0 0 0 0 0 0
## 664 0 0 0 0 0 0
## 665 0 0 0 0 0 0
## 666 0 0 0 0 0 0
## 667 0 0 0 0 0 0
## 668 0 0 0 0 0 0
## 669 0 0 0 0 0 0
## 670 0 0 0 0 0 0
## 671 0 0 0 0 0 0
## 672 0 0 0 0 0 0
## 673 0 0 0 0 0 0
## 674 0 0 0 0 0 0
## 675 0 0 0 0 0 0
## 676 0 0 0 0 0 0
## 677 0 0 0 0 0 0
## 678 0 0 0 0 0 0
## 679 0 0 0 0 0 0
## 680 2 6 0 0 0 0
## 681 0 0 0 0 0 0
## 682 0 0 0 0 0 0
## 683 0 0 0 0 0 0
## 684 0 0 0 0 0 0
## 685 0 0 0 0 0 0
## 686 0 0 0 0 0 0
## 687 0 0 0 0 0 0
## 688 0 0 0 0 0 0
## 689 2 8 Amsterdam 0 0 0
## 690 2 7 0 0 0 0
## 691 0 0 0 0 0 0
## 692 0 0 0 0 0 0
## 693 0 0 0 0 0 0
## 694 0 0 0 0 0 0
## 695 0 0 0 0 0 0
## 696 0 0 0 0 0 0
## 697 0 0 0 0 0 0
## 698 0 0 0 0 0 0
## 699 0 0 0 0 0 0
## 700 0 0 0 0 0 0
## 701 0 0 0 0 0 0
## 702 0 0 0 0 0 0
## 703 0 0 0 0 0 0
## 704 0 0 0 0 0 0
## 705 0 0 0 0 0 0
## 706 0 0 0 0 0 0
## 707 0 0 0 0 0 0
## 708 0 0 0 0 0 0
## 709 0 0 0 0 0 0
## 710 0 0 0 0 0 0
## 711 0 0 0 0 0 0
## 712 0 0 0 0 0 0
## 713 0 0 0 0 0 0
## 714 0 0 0 0 0 0
## SD_resolved_from
## 1 NA
## 2 NA
## 3 NA
## 4 NA
## 5 NA
## 6 NA
## 7 NA
## 8 NA
## 9 NA
## 10 NA
## 11 NA
## 12 NA
## 13 NA
## 14 NA
## 15 NA
## 16 NA
## 17 NA
## 18 NA
## 19 NA
## 20 NA
## 21 NA
## 22 NA
## 23 NA
## 24 NA
## 25 NA
## 26 NA
## 27 NA
## 28 NA
## 29 NA
## 30 NA
## 31 NA
## 32 NA
## 33 NA
## 34 NA
## 35 NA
## 36 NA
## 37 NA
## 38 NA
## 39 NA
## 40 NA
## 41 NA
## 42 NA
## 43 NA
## 44 NA
## 45 NA
## 46 NA
## 47 NA
## 48 NA
## 49 NA
## 50 NA
## 51 NA
## 52 NA
## 53 NA
## 54 NA
## 55 NA
## 56 NA
## 57 NA
## 58 NA
## 59 NA
## 60 NA
## 61 NA
## 62 NA
## 63 NA
## 64 NA
## 65 NA
## 66 NA
## 67 NA
## 68 NA
## 69 NA
## 70 NA
## 71 NA
## 72 NA
## 73 NA
## 74 NA
## 75 NA
## 76 NA
## 77 NA
## 78 NA
## 79 NA
## 80 NA
## 81 NA
## 82 NA
## 83 NA
## 84 NA
## 85 NA
## 86 NA
## 87 NA
## 88 NA
## 89 NA
## 90 NA
## 91 NA
## 92 NA
## 93 NA
## 94 NA
## 95 NA
## 96 NA
## 97 NA
## 98 NA
## 99 NA
## 100 NA
## 101 NA
## 102 NA
## 103 NA
## 104 NA
## 105 NA
## 106 NA
## 107 NA
## 108 NA
## 109 NA
## 110 NA
## 111 NA
## 112 NA
## 113 NA
## 114 NA
## 115 NA
## 116 NA
## 117 NA
## 118 NA
## 119 NA
## 120 NA
## 121 NA
## 122 NA
## 123 NA
## 124 NA
## 125 NA
## 126 NA
## 127 NA
## 128 NA
## 129 NA
## 130 NA
## 131 NA
## 132 NA
## 133 NA
## 134 NA
## 135 NA
## 136 NA
## 137 NA
## 138 NA
## 139 NA
## 140 NA
## 141 NA
## 142 NA
## 143 NA
## 144 NA
## 145 NA
## 146 NA
## 147 NA
## 148 NA
## 149 NA
## 150 NA
## 151 NA
## 152 NA
## 153 NA
## 154 NA
## 155 NA
## 156 NA
## 157 NA
## 158 NA
## 159 NA
## 160 NA
## 161 NA
## 162 NA
## 163 NA
## 164 NA
## 165 NA
## 166 NA
## 167 NA
## 168 NA
## 169 NA
## 170 NA
## 171 NA
## 172 NA
## 173 NA
## 174 NA
## 175 NA
## 176 NA
## 177 NA
## 178 NA
## 179 NA
## 180 NA
## 181 NA
## 182 NA
## 183 NA
## 184 NA
## 185 NA
## 186 NA
## 187 NA
## 188 NA
## 189 NA
## 190 NA
## 191 NA
## 192 NA
## 193 NA
## 194 NA
## 195 NA
## 196 NA
## 197 NA
## 198 NA
## 199 NA
## 200 NA
## 201 NA
## 202 NA
## 203 NA
## 204 NA
## 205 NA
## 206 NA
## 207 NA
## 208 NA
## 209 NA
## 210 NA
## 211 NA
## 212 NA
## 213 NA
## 214 NA
## 215 NA
## 216 NA
## 217 NA
## 218 NA
## 219 NA
## 220 NA
## 221 NA
## 222 NA
## 223 NA
## 224 NA
## 225 NA
## 226 NA
## 227 NA
## 228 NA
## 229 NA
## 230 NA
## 231 NA
## 232 NA
## 233 NA
## 234 NA
## 235 NA
## 236 NA
## 237 NA
## 238 NA
## 239 NA
## 240 NA
## 241 NA
## 242 NA
## 243 NA
## 244 NA
## 245 NA
## 246 NA
## 247 NA
## 248 NA
## 249 NA
## 250 NA
## 251 NA
## 252 NA
## 253 NA
## 254 NA
## 255 NA
## 256 NA
## 257 NA
## 258 NA
## 259 NA
## 260 NA
## 261 NA
## 262 NA
## 263 NA
## 264 NA
## 265 NA
## 266 NA
## 267 NA
## 268 NA
## 269 NA
## 270 NA
## 271 NA
## 272 NA
## 273 NA
## 274 NA
## 275 NA
## 276 NA
## 277 NA
## 278 NA
## 279 NA
## 280 NA
## 281 NA
## 282 NA
## 283 NA
## 284 NA
## 285 NA
## 286 NA
## 287 NA
## 288 NA
## 289 NA
## 290 NA
## 291 NA
## 292 NA
## 293 NA
## 294 NA
## 295 NA
## 296 NA
## 297 NA
## 298 NA
## 299 NA
## 300 NA
## 301 NA
## 302 NA
## 303 NA
## 304 NA
## 305 NA
## 306 NA
## 307 NA
## 308 NA
## 309 NA
## 310 NA
## 311 NA
## 312 NA
## 313 NA
## 314 NA
## 315 NA
## 316 NA
## 317 NA
## 318 NA
## 319 NA
## 320 NA
## 321 NA
## 322 NA
## 323 NA
## 324 NA
## 325 NA
## 326 NA
## 327 NA
## 328 NA
## 329 NA
## 330 NA
## 331 NA
## 332 NA
## 333 NA
## 334 NA
## 335 NA
## 336 NA
## 337 NA
## 338 NA
## 339 NA
## 340 NA
## 341 NA
## 342 NA
## 343 NA
## 344 NA
## 345 NA
## 346 NA
## 347 NA
## 348 NA
## 349 NA
## 350 NA
## 351 NA
## 352 NA
## 353 NA
## 354 NA
## 355 NA
## 356 NA
## 357 NA
## 358 NA
## 359 NA
## 360 NA
## 361 NA
## 362 NA
## 363 NA
## 364 NA
## 365 NA
## 366 NA
## 367 NA
## 368 NA
## 369 NA
## 370 NA
## 371 NA
## 372 NA
## 373 NA
## 374 NA
## 375 NA
## 376 NA
## 377 NA
## 378 NA
## 379 NA
## 380 NA
## 381 NA
## 382 NA
## 383 NA
## 384 NA
## 385 NA
## 386 NA
## 387 NA
## 388 NA
## 389 NA
## 390 NA
## 391 NA
## 392 NA
## 393 NA
## 394 NA
## 395 NA
## 396 NA
## 397 NA
## 398 NA
## 399 NA
## 400 NA
## 401 NA
## 402 NA
## 403 NA
## 404 NA
## 405 NA
## 406 NA
## 407 NA
## 408 NA
## 409 NA
## 410 NA
## 411 NA
## 412 NA
## 413 NA
## 414 NA
## 415 NA
## 416 NA
## 417 NA
## 418 NA
## 419 NA
## 420 NA
## 421 NA
## 422 NA
## 423 NA
## 424 NA
## 425 NA
## 426 NA
## 427 NA
## 428 NA
## 429 NA
## 430 NA
## 431 NA
## 432 NA
## 433 NA
## 434 NA
## 435 NA
## 436 NA
## 437 NA
## 438 NA
## 439 NA
## 440 NA
## 441 NA
## 442 NA
## 443 NA
## 444 NA
## 445 NA
## 446 NA
## 447 NA
## 448 NA
## 449 NA
## 450 NA
## 451 NA
## 452 NA
## 453 NA
## 454 NA
## 455 NA
## 456 NA
## 457 NA
## 458 NA
## 459 NA
## 460 NA
## 461 NA
## 462 NA
## 463 NA
## 464 NA
## 465 NA
## 466 NA
## 467 NA
## 468 NA
## 469 NA
## 470 NA
## 471 NA
## 472 NA
## 473 NA
## 474 NA
## 475 NA
## 476 NA
## 477 NA
## 478 NA
## 479 NA
## 480 NA
## 481 NA
## 482 NA
## 483 NA
## 484 NA
## 485 NA
## 486 NA
## 487 NA
## 488 NA
## 489 NA
## 490 NA
## 491 NA
## 492 NA
## 493 NA
## 494 NA
## 495 NA
## 496 NA
## 497 NA
## 498 NA
## 499 NA
## 500 NA
## 501 NA
## 502 NA
## 503 NA
## 504 NA
## 505 NA
## 506 NA
## 507 NA
## 508 NA
## 509 NA
## 510 NA
## 511 NA
## 512 NA
## 513 NA
## 514 NA
## 515 NA
## 516 NA
## 517 NA
## 518 NA
## 519 NA
## 520 NA
## 521 NA
## 522 NA
## 523 NA
## 524 NA
## 525 NA
## 526 NA
## 527 NA
## 528 NA
## 529 NA
## 530 NA
## 531 NA
## 532 NA
## 533 NA
## 534 NA
## 535 NA
## 536 NA
## 537 NA
## 538 NA
## 539 NA
## 540 NA
## 541 NA
## 542 NA
## 543 NA
## 544 NA
## 545 NA
## 546 NA
## 547 NA
## 548 NA
## 549 NA
## 550 NA
## 551 NA
## 552 NA
## 553 NA
## 554 NA
## 555 NA
## 556 NA
## 557 NA
## 558 NA
## 559 NA
## 560 NA
## 561 NA
## 562 NA
## 563 NA
## 564 NA
## 565 NA
## 566 NA
## 567 NA
## 568 NA
## 569 NA
## 570 NA
## 571 NA
## 572 NA
## 573 NA
## 574 NA
## 575 NA
## 576 NA
## 577 NA
## 578 NA
## 579 NA
## 580 NA
## 581 NA
## 582 NA
## 583 NA
## 584 NA
## 585 NA
## 586 NA
## 587 NA
## 588 NA
## 589 NA
## 590 NA
## 591 NA
## 592 NA
## 593 NA
## 594 NA
## 595 NA
## 596 NA
## 597 NA
## 598 NA
## 599 NA
## 600 NA
## 601 NA
## 602 NA
## 603 NA
## 604 NA
## 605 NA
## 606 NA
## 607 NA
## 608 NA
## 609 NA
## 610 NA
## 611 NA
## 612 NA
## 613 NA
## 614 NA
## 615 NA
## 616 NA
## 617 NA
## 618 NA
## 619 NA
## 620 NA
## 621 NA
## 622 NA
## 623 NA
## 624 NA
## 625 NA
## 626 NA
## 627 NA
## 628 NA
## 629 NA
## 630 NA
## 631 NA
## 632 NA
## 633 NA
## 634 NA
## 635 NA
## 636 NA
## 637 NA
## 638 NA
## 639 NA
## 640 NA
## 641 NA
## 642 NA
## 643 NA
## 644 NA
## 645 NA
## 646 NA
## 647 NA
## 648 NA
## 649 NA
## 650 NA
## 651 NA
## 652 NA
## 653 NA
## 654 NA
## 655 NA
## 656 NA
## 657 NA
## 658 NA
## 659 NA
## 660 NA
## 661 NA
## 662 NA
## 663 NA
## 664 NA
## 665 NA
## 666 NA
## 667 NA
## 668 NA
## 669 NA
## 670 NA
## 671 NA
## 672 NA
## 673 NA
## 674 NA
## 675 NA
## 676 NA
## 677 NA
## 678 NA
## 679 NA
## 680 NA
## 681 NA
## 682 NA
## 683 NA
## 684 NA
## 685 NA
## 686 NA
## 687 NA
## 688 NA
## 689 NA
## 690 NA
## 691 NA
## 692 NA
## 693 NA
## 694 NA
## 695 NA
## 696 NA
## 697 NA
## 698 NA
## 699 NA
## 700 NA
## 701 NA
## 702 NA
## 703 NA
## 704 NA
## 705 NA
## 706 NA
## 707 NA
## 708 NA
## 709 NA
## 710 NA
## 711 NA
## 712 NA
## 713 NA
## 714 NA
## StrainOther
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 GII.4a-2004 variant virus, most similar to the GII.4 strain Mo stir/2003/Tun [EU916960]
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 GI/2, GI/4, GI/5, GII/5
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 GIIb
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 there were also GI and GII uncharacterized strains
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 genogroup of 2nd strain was unresolved but closest to the reference strains listed above
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 GII/1
## 247 GII/4, GII/5, GII/11
## 248 GII/5, GII/12, GI/8
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 GII/14 Fayeteville
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 GII.d Upinniemi
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 GI/2, GII/5, GI/I
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 GII.new
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 100% similar to the calicivirus strains of S031/94/UK
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase region and 96% (over 283 bp) was also seen w/strain Arg320
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 0
## 361 0
## 362 0
## 363 GII.4 in 3 outbreaks and GI.14 in 1 outbreak
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Additio l group 1, two additio l group 2
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 GII/6, GII/4
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 0
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 GI/2, GI/13
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 article discussed 2 separate strains found, but didn't identify either
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 6 other strains mentioned in paper
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 GI-1, Norwalk/1968/US
## 558 same strain as outbreak 2 from this article
## 559 same strain as outbreak ID4 in hospital 12 mi away
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 GII/11
## 653 0
## 654 0
## 655 0
## 656 GII/1, GI/4, GII/12
## 657 0
## 658 GII/12, GII/4
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 GI/6 Sindlesham
## 690 GII/17, GIIb, GII/2, GI/4
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## strainother_rc
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 there were also GI and GII uncharacterized strains
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 genogroup of 2nd strain was unresolved but closest to the reference strains listed above
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 100% similar to the calicivirus strains of S031/94/UK
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase re
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 0
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 0
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 0
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 0
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 article discussed 2 separate strains found, but didn't identify either
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## gge ce se SE_resolved_from ggf cf sf
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 2 4 GII.4a 2004 abstraction of StrainOther 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 1 2 0 1 4 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 0 0 0 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 2 0 GIIb 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 0 0 0 0 0 0
## 242 0 0 0 0 0 0
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 2 1 0 0 0 0
## 247 2 4 0 2 5 0
## 248 2 5 0 2 12 0
## 249 0 0 0 0 0 0
## 250 0 0 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 0 0 0 0 0 0
## 263 2 14 Fayetteville abstraction of StrainOther 0 0 0
## 264 0 0 0 0 0 0
## 265 0 0 0 0 0 0
## 266 0 0 0 0 0 0
## 267 0 0 0 0 0 0
## 268 0 0 0 0 0 0
## 269 0 0 0 0 0 0
## 270 0 0 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 2 0 GII.d Upinniemi 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 1 2 0 2 5 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 2 0 GII.new 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 0 0 0 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 0 0 0 0
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 0 0 0 0 0 0
## 324 0 0 0 0 0 0
## 325 0 0 0 0 0 0
## 326 0 0 0 0 0 0
## 327 0 0 0 0 0 0
## 328 0 0 0 0 0 0
## 329 0 0 0 0 0 0
## 330 0 0 0 0 0 0
## 331 0 0 0 0 0 0
## 332 0 0 0 0 0 0
## 333 0 0 0 0 0 0
## 334 0 0 0 0 0 0
## 335 0 0 0 0 0 0
## 336 0 0 0 0 0 0
## 337 0 0 0 0 0 0
## 338 0 0 0 0 0 0
## 339 0 0 0 0 0 0
## 340 0 0 0 0 0 0
## 341 0 0 0 0 0 0
## 342 0 0 0 0 0 0
## 343 0 0 0 0 0 0
## 344 0 0 0 0 0 0
## 345 0 0 0 0 0 0
## 346 0 0 0 0 0 0
## 347 0 0 0 0 0 0
## 348 0 0 0 0 0 0
## 349 0 0 0 0 0 0
## 350 0 0 0 0 0 0
## 351 0 0 0 0 0 0
## 352 0 0 0 0 0 0
## 353 0 0 0 0 0 0
## 354 0 0 0 0 0 0
## 355 0 0 0 0 0 0
## 356 0 0 0 0 0 0
## 357 0 0 0 0 0 0
## 358 0 0 0 0 0 0
## 359 0 0 0 0 0 0
## 360 0 0 0 0 0 0
## 361 0 0 0 0 0 0
## 362 0 0 0 0 0 0
## 363 0 0 0 0 0 0
## 364 0 0 0 0 0 0
## 365 0 0 0 0 0 0
## 366 0 0 0 0 0 0
## 367 0 0 0 0 0 0
## 368 0 0 0 0 0 0
## 369 0 0 0 0 0 0
## 370 0 0 0 0 0 0
## 371 0 0 0 0 0 0
## 372 0 0 0 0 0 0
## 373 0 0 0 0 0 0
## 374 0 0 0 0 0 0
## 375 0 0 0 0 0 0
## 376 0 0 0 0 0 0
## 377 0 0 0 0 0 0
## 378 0 0 0 0 0 0
## 379 0 0 0 0 0 0
## 380 0 0 0 0 0 0
## 381 0 0 0 0 0 0
## 382 0 0 0 0 0 0
## 383 0 0 0 0 0 0
## 384 0 0 0 0 0 0
## 385 0 0 0 0 0 0
## 386 0 0 0 0 0 0
## 387 0 0 0 0 0 0
## 388 0 0 0 0 0 0
## 389 0 0 0 0 0 0
## 390 0 0 0 0 0 0
## 391 0 0 0 0 0 0
## 392 0 0 0 0 0 0
## 393 0 0 0 0 0 0
## 394 0 0 0 0 0 0
## 395 0 0 0 0 0 0
## 396 0 0 0 0 0 0
## 397 0 0 0 0 0 0
## 398 0 0 0 0 0 0
## 399 0 0 0 0 0 0
## 400 0 0 0 0 0 0
## 401 0 0 0 0 0 0
## 402 0 0 0 0 0 0
## 403 1 0 0 2 0 0
## 404 0 0 0 0 0 0
## 405 0 0 0 0 0 0
## 406 0 0 0 0 0 0
## 407 0 0 0 0 0 0
## 408 0 0 0 0 0 0
## 409 0 0 0 0 0 0
## 410 0 0 0 0 0 0
## 411 0 0 0 0 0 0
## 412 0 0 0 0 0 0
## 413 0 0 0 0 0 0
## 414 0 0 0 0 0 0
## 415 0 0 0 0 0 0
## 416 0 0 0 0 0 0
## 417 0 0 0 0 0 0
## 418 0 0 0 0 0 0
## 419 0 0 0 0 0 0
## 420 0 0 0 0 0 0
## 421 0 0 0 0 0 0
## 422 0 0 0 0 0 0
## 423 0 0 0 0 0 0
## 424 0 0 0 0 0 0
## 425 0 0 0 0 0 0
## 426 0 0 0 0 0 0
## 427 0 0 0 0 0 0
## 428 0 0 0 0 0 0
## 429 0 0 0 0 0 0
## 430 0 0 0 0 0 0
## 431 2 6 0 2 4 0
## 432 0 0 0 0 0 0
## 433 0 0 0 0 0 0
## 434 0 0 0 0 0 0
## 435 0 0 0 0 0 0
## 436 0 0 0 0 0 0
## 437 0 0 0 0 0 0
## 438 0 0 0 0 0 0
## 439 0 0 0 0 0 0
## 440 0 0 0 0 0 0
## 441 0 0 0 0 0 0
## 442 0 0 0 0 0 0
## 443 0 0 0 0 0 0
## 444 0 0 0 0 0 0
## 445 0 0 0 0 0 0
## 446 0 0 0 0 0 0
## 447 0 0 0 0 0 0
## 448 0 0 0 0 0 0
## 449 0 0 0 0 0 0
## 450 0 0 0 0 0 0
## 451 0 0 0 0 0 0
## 452 0 0 0 0 0 0
## 453 0 0 0 0 0 0
## 454 0 0 0 0 0 0
## 455 0 0 0 0 0 0
## 456 0 0 0 0 0 0
## 457 0 0 0 0 0 0
## 458 0 0 0 0 0 0
## 459 0 0 0 0 0 0
## 460 0 0 0 0 0 0
## 461 0 0 0 0 0 0
## 462 0 0 0 0 0 0
## 463 0 0 0 0 0 0
## 464 0 0 0 0 0 0
## 465 0 0 0 0 0 0
## 466 0 0 0 0 0 0
## 467 0 0 0 0 0 0
## 468 0 0 0 0 0 0
## 469 0 0 0 0 0 0
## 470 0 0 0 0 0 0
## 471 0 0 0 0 0 0
## 472 0 0 0 0 0 0
## 473 0 0 0 0 0 0
## 474 0 0 0 0 0 0
## 475 0 0 0 0 0 0
## 476 0 0 0 0 0 0
## 477 0 0 0 0 0 0
## 478 0 0 0 0 0 0
## 479 0 0 0 0 0 0
## 480 0 0 0 0 0 0
## 481 0 0 0 0 0 0
## 482 0 0 0 0 0 0
## 483 0 0 0 0 0 0
## 484 0 0 0 0 0 0
## 485 0 0 0 0 0 0
## 486 1 2 0 1 13 0
## 487 0 0 0 0 0 0
## 488 0 0 0 0 0 0
## 489 0 0 0 0 0 0
## 490 0 0 0 0 0 0
## 491 0 0 0 0 0 0
## 492 0 0 0 0 0 0
## 493 0 0 0 0 0 0
## 494 0 0 0 0 0 0
## 495 0 0 0 0 0 0
## 496 0 0 0 0 0 0
## 497 0 0 0 0 0 0
## 498 0 0 0 0 0 0
## 499 0 0 0 0 0 0
## 500 0 0 0 0 0 0
## 501 0 0 0 0 0 0
## 502 0 0 0 0 0 0
## 503 0 0 0 0 0 0
## 504 0 0 0 0 0 0
## 505 0 0 0 0 0 0
## 506 0 0 0 0 0 0
## 507 0 0 0 0 0 0
## 508 0 0 0 0 0 0
## 509 0 0 0 0 0 0
## 510 0 0 0 0 0 0
## 511 0 0 0 0 0 0
## 512 0 0 0 0 0 0
## 513 0 0 0 0 0 0
## 514 0 0 0 0 0 0
## 515 0 0 0 0 0 0
## 516 0 0 0 0 0 0
## 517 0 0 0 0 0 0
## 518 0 0 0 0 0 0
## 519 0 0 0 0 0 0
## 520 0 0 0 0 0 0
## 521 0 0 0 0 0 0
## 522 0 0 0 0 0 0
## 523 0 0 0 0 0 0
## 524 0 0 0 0 0 0
## 525 0 0 0 0 0 0
## 526 0 0 0 0 0 0
## 527 0 0 0 0 0 0
## 528 0 0 0 0 0 0
## 529 0 0 0 0 0 0
## 530 0 0 0 0 0 0
## 531 0 0 0 0 0 0
## 532 0 0 0 0 0 0
## 533 0 0 0 0 0 0
## 534 0 0 0 0 0 0
## 535 0 0 0 0 0 0
## 536 0 0 0 0 0 0
## 537 0 0 0 0 0 0
## 538 0 0 0 0 0 0
## 539 2 4 BCCDC04-002 abstraction of StrainOther 2 5 BCCDC03-013
## 540 0 0 0 0 0 0
## 541 0 0 0 0 0 0
## 542 0 0 0 0 0 0
## 543 0 0 0 0 0 0
## 544 0 0 0 0 0 0
## 545 0 0 0 0 0 0
## 546 0 0 0 0 0 0
## 547 0 0 0 0 0 0
## 548 0 0 0 0 0 0
## 549 0 0 0 0 0 0
## 550 0 0 0 0 0 0
## 551 0 0 0 0 0 0
## 552 0 0 0 0 0 0
## 553 0 0 0 0 0 0
## 554 0 0 0 0 0 0
## 555 0 0 0 0 0 0
## 556 0 0 0 0 0 0
## 557 1 1 Norwalk/1968/US abstraction of StrainOther 0 0 0
## 558 0 0 0 0 0 0
## 559 0 0 0 0 0 0
## 560 0 0 0 0 0 0
## 561 0 0 0 0 0 0
## 562 0 0 0 0 0 0
## 563 0 0 0 0 0 0
## 564 0 0 0 0 0 0
## 565 0 0 0 0 0 0
## 566 0 0 0 0 0 0
## 567 0 0 0 0 0 0
## 568 0 0 0 0 0 0
## 569 0 0 0 0 0 0
## 570 0 0 0 0 0 0
## 571 0 0 0 0 0 0
## 572 0 0 0 0 0 0
## 573 0 0 0 0 0 0
## 574 0 0 0 0 0 0
## 575 0 0 0 0 0 0
## 576 0 0 0 0 0 0
## 577 0 0 0 0 0 0
## 578 0 0 0 0 0 0
## 579 0 0 0 0 0 0
## 580 0 0 0 0 0 0
## 581 0 0 0 0 0 0
## 582 0 0 0 0 0 0
## 583 0 0 0 0 0 0
## 584 0 0 0 0 0 0
## 585 0 0 0 0 0 0
## 586 0 0 0 0 0 0
## 587 0 0 0 0 0 0
## 588 0 0 0 0 0 0
## 589 0 0 0 0 0 0
## 590 0 0 0 0 0 0
## 591 0 0 0 0 0 0
## 592 0 0 0 0 0 0
## 593 0 0 0 0 0 0
## 594 0 0 0 0 0 0
## 595 0 0 0 0 0 0
## 596 0 0 0 0 0 0
## 597 0 0 0 0 0 0
## 598 0 0 0 0 0 0
## 599 0 0 0 0 0 0
## 600 0 0 0 0 0 0
## 601 0 0 0 0 0 0
## 602 0 0 0 0 0 0
## 603 0 0 0 0 0 0
## 604 0 0 0 0 0 0
## 605 0 0 0 0 0 0
## 606 0 0 0 0 0 0
## 607 0 0 0 0 0 0
## 608 0 0 0 0 0 0
## 609 0 0 0 0 0 0
## 610 0 0 0 0 0 0
## 611 0 0 0 0 0 0
## 612 0 0 0 0 0 0
## 613 0 0 0 0 0 0
## 614 0 0 0 0 0 0
## 615 0 0 0 0 0 0
## 616 0 0 0 0 0 0
## 617 0 0 0 0 0 0
## 618 0 0 0 0 0 0
## 619 0 0 0 0 0 0
## 620 0 0 0 0 0 0
## 621 0 0 0 0 0 0
## 622 0 0 0 0 0 0
## 623 0 0 0 0 0 0
## 624 0 0 0 0 0 0
## 625 0 0 0 0 0 0
## 626 0 0 0 0 0 0
## 627 0 0 0 0 0 0
## 628 0 0 0 0 0 0
## 629 0 0 0 0 0 0
## 630 0 0 0 0 0 0
## 631 0 0 0 0 0 0
## 632 0 0 0 0 0 0
## 633 0 0 0 0 0 0
## 634 0 0 0 0 0 0
## 635 0 0 0 0 0 0
## 636 0 0 0 0 0 0
## 637 0 0 0 0 0 0
## 638 0 0 0 0 0 0
## 639 0 0 0 0 0 0
## 640 0 0 0 0 0 0
## 641 0 0 0 0 0 0
## 642 0 0 0 0 0 0
## 643 0 0 0 0 0 0
## 644 0 0 0 0 0 0
## 645 0 0 0 0 0 0
## 646 0 0 0 0 0 0
## 647 0 0 0 0 0 0
## 648 0 0 0 0 0 0
## 649 0 0 0 0 0 0
## 650 0 0 0 0 0 0
## 651 0 0 0 0 0 0
## 652 2 11 0 0 0 0
## 653 0 0 0 0 0 0
## 654 0 0 0 0 0 0
## 655 0 0 0 0 0 0
## 656 2 1 0 1 4 0
## 657 0 0 0 0 0 0
## 658 2 12 0 2 4 0
## 659 0 0 0 0 0 0
## 660 0 0 0 0 0 0
## 661 0 0 0 0 0 0
## 662 0 0 0 0 0 0
## 663 0 0 0 0 0 0
## 664 0 0 0 0 0 0
## 665 0 0 0 0 0 0
## 666 0 0 0 0 0 0
## 667 0 0 0 0 0 0
## 668 0 0 0 0 0 0
## 669 0 0 0 0 0 0
## 670 0 0 0 0 0 0
## 671 0 0 0 0 0 0
## 672 0 0 0 0 0 0
## 673 0 0 0 0 0 0
## 674 0 0 0 0 0 0
## 675 0 0 0 0 0 0
## 676 0 0 0 0 0 0
## 677 0 0 0 0 0 0
## 678 0 0 0 0 0 0
## 679 0 0 0 0 0 0
## 680 0 0 0 0 0 0
## 681 0 0 0 0 0 0
## 682 0 0 0 0 0 0
## 683 0 0 0 0 0 0
## 684 0 0 0 0 0 0
## 685 0 0 0 0 0 0
## 686 0 0 0 0 0 0
## 687 0 0 0 0 0 0
## 688 0 0 0 0 0 0
## 689 1 6 Sindlesham abstraction of StrainOther 0 0 0
## 690 2 17 0 2 2 0
## 691 0 0 0 0 0 0
## 692 0 0 0 0 0 0
## 693 0 0 0 0 0 0
## 694 0 0 0 0 0 0
## 695 0 0 0 0 0 0
## 696 0 0 0 0 0 0
## 697 0 0 0 0 0 0
## 698 0 0 0 0 0 0
## 699 0 0 0 0 0 0
## 700 0 0 0 0 0 0
## 701 0 0 0 0 0 0
## 702 0 0 0 0 0 0
## 703 0 0 0 0 0 0
## 704 0 0 0 0 0 0
## 705 0 0 0 0 0 0
## 706 0 0 0 0 0 0
## 707 0 0 0 0 0 0
## 708 0 0 0 0 0 0
## 709 0 0 0 0 0 0
## 710 0 0 0 0 0 0
## 711 0 0 0 0 0 0
## 712 0 0 0 0 0 0
## 713 0 0 0 0 0 0
## 714 0 0 0 0 0 0
## ggg cg sg ggh ch sh ggi ci si ggj cj
## 1 0 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0 0 0 0 0
## 17 0 0 0 0 0 0 0 0 0 0 0
## 18 0 0 0 0 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0 0 0 0 0
## 21 0 0 0 0 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0 0 0 0 0
## 45 0 0 0 0 0 0 0 0 0 0 0
## 46 0 0 0 0 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0 0 0 0 0
## 50 0 0 0 0 0 0 0 0 0 0 0
## 51 0 0 0 0 0 0 0 0 0 0 0
## 52 1 5 0 2 5 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0 0 0 0 0
## 54 0 0 0 0 0 0 0 0 0 0 0
## 55 0 0 0 0 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0 0 0 0 0
## 57 0 0 0 0 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0 0 0 0 0
## 102 0 0 0 0 0 0 0 0 0 0 0
## 103 0 0 0 0 0 0 0 0 0 0 0
## 104 0 0 0 0 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0 0 0 0 0
## 113 0 0 0 0 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0 0 0 0 0
## 122 0 0 0 0 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0 0 0 0 0
## 129 0 0 0 0 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0 0 0 0 0
## 159 0 0 0 0 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0 0 0 0 0
## 171 0 0 0 0 0 0 0 0 0 0 0
## 172 0 0 0 0 0 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0 0 0 0 0
## 185 0 0 0 0 0 0 0 0 0 0 0
## 186 0 0 0 0 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0 0 0 0 0
## 189 0 0 0 0 0 0 0 0 0 0 0
## 190 0 0 0 0 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0 0 0 0 0
## 234 0 0 0 0 0 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0 0 0 0 0
## 236 0 0 0 0 0 0 0 0 0 0 0
## 237 0 0 0 0 0 0 0 0 0 0 0
## 238 0 0 0 0 0 0 0 0 0 0 0
## 239 0 0 0 0 0 0 0 0 0 0 0
## 240 0 0 0 0 0 0 0 0 0 0 0
## 241 0 0 0 0 0 0 0 0 0 0 0
## 242 0 0 0 0 0 0 0 0 0 0 0
## 243 0 0 0 0 0 0 0 0 0 0 0
## 244 0 0 0 0 0 0 0 0 0 0 0
## 245 0 0 0 0 0 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0 0 0 0 0
## 247 2 11 0 0 0 0 0 0 0 0 0
## 248 1 8 0 0 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0 0 0 0 0
## 251 0 0 0 0 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0 0 0 0 0
## 253 0 0 0 0 0 0 0 0 0 0 0
## 254 0 0 0 0 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 0 0 0 0 0
## 256 0 0 0 0 0 0 0 0 0 0 0
## 257 0 0 0 0 0 0 0 0 0 0 0
## 258 0 0 0 0 0 0 0 0 0 0 0
## 259 0 0 0 0 0 0 0 0 0 0 0
## 260 0 0 0 0 0 0 0 0 0 0 0
## 261 0 0 0 0 0 0 0 0 0 0 0
## 262 0 0 0 0 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 0 0 0 0
## 265 0 0 0 0 0 0 0 0 0 0 0
## 266 0 0 0 0 0 0 0 0 0 0 0
## 267 0 0 0 0 0 0 0 0 0 0 0
## 268 0 0 0 0 0 0 0 0 0 0 0
## 269 0 0 0 0 0 0 0 0 0 0 0
## 270 0 0 0 0 0 0 0 0 0 0 0
## 271 0 0 0 0 0 0 0 0 0 0 0
## 272 0 0 0 0 0 0 0 0 0 0 0
## 273 0 0 0 0 0 0 0 0 0 0 0
## 274 0 0 0 0 0 0 0 0 0 0 0
## 275 0 0 0 0 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 0 0 0 0 0
## 279 0 0 0 0 0 0 0 0 0 0 0
## 280 0 0 0 0 0 0 0 0 0 0 0
## 281 0 0 0 0 0 0 0 0 0 0 0
## 282 0 0 0 0 0 0 0 0 0 0 0
## 283 0 0 0 0 0 0 0 0 0 0 0
## 284 0 0 0 0 0 0 0 0 0 0 0
## 285 0 0 0 0 0 0 0 0 0 0 0
## 286 0 0 0 0 0 0 0 0 0 0 0
## 287 0 0 0 0 0 0 0 0 0 0 0
## 288 0 0 0 0 0 0 0 0 0 0 0
## 289 0 0 0 0 0 0 0 0 0 0 0
## 290 1 1 0 0 0 0 0 0 0 0 0
## 291 0 0 0 0 0 0 0 0 0 0 0
## 292 0 0 0 0 0 0 0 0 0 0 0
## 293 0 0 0 0 0 0 0 0 0 0 0
## 294 0 0 0 0 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0 0 0 0 0
## 298 0 0 0 0 0 0 0 0 0 0 0
## 299 0 0 0 0 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0 0 0 0 0
## 301 0 0 0 0 0 0 0 0 0 0 0
## 302 0 0 0 0 0 0 0 0 0 0 0
## 303 0 0 0 0 0 0 0 0 0 0 0
## 304 0 0 0 0 0 0 0 0 0 0 0
## 305 0 0 0 0 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0 0 0 0 0
## 307 0 0 0 0 0 0 0 0 0 0 0
## 308 0 0 0 0 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0 0 0 0 0
## 310 0 0 0 0 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0 0 0 0 0
## 312 0 0 0 0 0 0 0 0 0 0 0
## 313 0 0 0 0 0 0 0 0 0 0 0
## 314 0 0 0 0 0 0 0 0 0 0 0
## 315 0 0 0 0 0 0 0 0 0 0 0
## 316 0 0 0 0 0 0 0 0 0 0 0
## 317 0 0 0 0 0 0 0 0 0 0 0
## 318 0 0 0 0 0 0 0 0 0 0 0
## 319 0 0 0 0 0 0 0 0 0 0 0
## 320 0 0 0 0 0 0 0 0 0 0 0
## 321 0 0 0 0 0 0 0 0 0 0 0
## 322 0 0 0 0 0 0 0 0 0 0 0
## 323 0 0 0 0 0 0 0 0 0 0 0
## 324 0 0 0 0 0 0 0 0 0 0 0
## 325 0 0 0 0 0 0 0 0 0 0 0
## 326 0 0 0 0 0 0 0 0 0 0 0
## 327 0 0 0 0 0 0 0 0 0 0 0
## 328 0 0 0 0 0 0 0 0 0 0 0
## 329 0 0 0 0 0 0 0 0 0 0 0
## 330 0 0 0 0 0 0 0 0 0 0 0
## 331 0 0 0 0 0 0 0 0 0 0 0
## 332 0 0 0 0 0 0 0 0 0 0 0
## 333 0 0 0 0 0 0 0 0 0 0 0
## 334 0 0 0 0 0 0 0 0 0 0 0
## 335 0 0 0 0 0 0 0 0 0 0 0
## 336 0 0 0 0 0 0 0 0 0 0 0
## 337 0 0 0 0 0 0 0 0 0 0 0
## 338 0 0 0 0 0 0 0 0 0 0 0
## 339 0 0 0 0 0 0 0 0 0 0 0
## 340 0 0 0 0 0 0 0 0 0 0 0
## 341 0 0 0 0 0 0 0 0 0 0 0
## 342 0 0 0 0 0 0 0 0 0 0 0
## 343 0 0 0 0 0 0 0 0 0 0 0
## 344 0 0 0 0 0 0 0 0 0 0 0
## 345 0 0 0 0 0 0 0 0 0 0 0
## 346 0 0 0 0 0 0 0 0 0 0 0
## 347 0 0 0 0 0 0 0 0 0 0 0
## 348 0 0 0 0 0 0 0 0 0 0 0
## 349 0 0 0 0 0 0 0 0 0 0 0
## 350 0 0 0 0 0 0 0 0 0 0 0
## 351 0 0 0 0 0 0 0 0 0 0 0
## 352 0 0 0 0 0 0 0 0 0 0 0
## 353 0 0 0 0 0 0 0 0 0 0 0
## 354 0 0 0 0 0 0 0 0 0 0 0
## 355 0 0 0 0 0 0 0 0 0 0 0
## 356 0 0 0 0 0 0 0 0 0 0 0
## 357 0 0 0 0 0 0 0 0 0 0 0
## 358 0 0 0 0 0 0 0 0 0 0 0
## 359 0 0 0 0 0 0 0 0 0 0 0
## 360 0 0 0 0 0 0 0 0 0 0 0
## 361 0 0 0 0 0 0 0 0 0 0 0
## 362 0 0 0 0 0 0 0 0 0 0 0
## 363 0 0 0 0 0 0 0 0 0 0 0
## 364 0 0 0 0 0 0 0 0 0 0 0
## 365 0 0 0 0 0 0 0 0 0 0 0
## 366 0 0 0 0 0 0 0 0 0 0 0
## 367 0 0 0 0 0 0 0 0 0 0 0
## 368 0 0 0 0 0 0 0 0 0 0 0
## 369 0 0 0 0 0 0 0 0 0 0 0
## 370 0 0 0 0 0 0 0 0 0 0 0
## 371 0 0 0 0 0 0 0 0 0 0 0
## 372 0 0 0 0 0 0 0 0 0 0 0
## 373 0 0 0 0 0 0 0 0 0 0 0
## 374 0 0 0 0 0 0 0 0 0 0 0
## 375 0 0 0 0 0 0 0 0 0 0 0
## 376 0 0 0 0 0 0 0 0 0 0 0
## 377 0 0 0 0 0 0 0 0 0 0 0
## 378 0 0 0 0 0 0 0 0 0 0 0
## 379 0 0 0 0 0 0 0 0 0 0 0
## 380 0 0 0 0 0 0 0 0 0 0 0
## 381 0 0 0 0 0 0 0 0 0 0 0
## 382 0 0 0 0 0 0 0 0 0 0 0
## 383 0 0 0 0 0 0 0 0 0 0 0
## 384 0 0 0 0 0 0 0 0 0 0 0
## 385 0 0 0 0 0 0 0 0 0 0 0
## 386 0 0 0 0 0 0 0 0 0 0 0
## 387 0 0 0 0 0 0 0 0 0 0 0
## 388 0 0 0 0 0 0 0 0 0 0 0
## 389 0 0 0 0 0 0 0 0 0 0 0
## 390 0 0 0 0 0 0 0 0 0 0 0
## 391 0 0 0 0 0 0 0 0 0 0 0
## 392 0 0 0 0 0 0 0 0 0 0 0
## 393 0 0 0 0 0 0 0 0 0 0 0
## 394 0 0 0 0 0 0 0 0 0 0 0
## 395 0 0 0 0 0 0 0 0 0 0 0
## 396 0 0 0 0 0 0 0 0 0 0 0
## 397 0 0 0 0 0 0 0 0 0 0 0
## 398 0 0 0 0 0 0 0 0 0 0 0
## 399 0 0 0 0 0 0 0 0 0 0 0
## 400 0 0 0 0 0 0 0 0 0 0 0
## 401 0 0 0 0 0 0 0 0 0 0 0
## 402 0 0 0 0 0 0 0 0 0 0 0
## 403 2 0 0 0 0 0 0 0 0 0 0
## 404 0 0 0 0 0 0 0 0 0 0 0
## 405 0 0 0 0 0 0 0 0 0 0 0
## 406 0 0 0 0 0 0 0 0 0 0 0
## 407 0 0 0 0 0 0 0 0 0 0 0
## 408 0 0 0 0 0 0 0 0 0 0 0
## 409 0 0 0 0 0 0 0 0 0 0 0
## 410 0 0 0 0 0 0 0 0 0 0 0
## 411 0 0 0 0 0 0 0 0 0 0 0
## 412 0 0 0 0 0 0 0 0 0 0 0
## 413 0 0 0 0 0 0 0 0 0 0 0
## 414 0 0 0 0 0 0 0 0 0 0 0
## 415 0 0 0 0 0 0 0 0 0 0 0
## 416 0 0 0 0 0 0 0 0 0 0 0
## 417 0 0 0 0 0 0 0 0 0 0 0
## 418 0 0 0 0 0 0 0 0 0 0 0
## 419 0 0 0 0 0 0 0 0 0 0 0
## 420 0 0 0 0 0 0 0 0 0 0 0
## 421 0 0 0 0 0 0 0 0 0 0 0
## 422 0 0 0 0 0 0 0 0 0 0 0
## 423 0 0 0 0 0 0 0 0 0 0 0
## 424 0 0 0 0 0 0 0 0 0 0 0
## 425 0 0 0 0 0 0 0 0 0 0 0
## 426 0 0 0 0 0 0 0 0 0 0 0
## 427 0 0 0 0 0 0 0 0 0 0 0
## 428 0 0 0 0 0 0 0 0 0 0 0
## 429 0 0 0 0 0 0 0 0 0 0 0
## 430 0 0 0 0 0 0 0 0 0 0 0
## 431 0 0 0 0 0 0 0 0 0 0 0
## 432 0 0 0 0 0 0 0 0 0 0 0
## 433 0 0 0 0 0 0 0 0 0 0 0
## 434 0 0 0 0 0 0 0 0 0 0 0
## 435 0 0 0 0 0 0 0 0 0 0 0
## 436 0 0 0 0 0 0 0 0 0 0 0
## 437 0 0 0 0 0 0 0 0 0 0 0
## 438 0 0 0 0 0 0 0 0 0 0 0
## 439 0 0 0 0 0 0 0 0 0 0 0
## 440 0 0 0 0 0 0 0 0 0 0 0
## 441 0 0 0 0 0 0 0 0 0 0 0
## 442 0 0 0 0 0 0 0 0 0 0 0
## 443 0 0 0 0 0 0 0 0 0 0 0
## 444 0 0 0 0 0 0 0 0 0 0 0
## 445 0 0 0 0 0 0 0 0 0 0 0
## 446 0 0 0 0 0 0 0 0 0 0 0
## 447 0 0 0 0 0 0 0 0 0 0 0
## 448 0 0 0 0 0 0 0 0 0 0 0
## 449 0 0 0 0 0 0 0 0 0 0 0
## 450 0 0 0 0 0 0 0 0 0 0 0
## 451 0 0 0 0 0 0 0 0 0 0 0
## 452 0 0 0 0 0 0 0 0 0 0 0
## 453 0 0 0 0 0 0 0 0 0 0 0
## 454 0 0 0 0 0 0 0 0 0 0 0
## 455 0 0 0 0 0 0 0 0 0 0 0
## 456 0 0 0 0 0 0 0 0 0 0 0
## 457 0 0 0 0 0 0 0 0 0 0 0
## 458 0 0 0 0 0 0 0 0 0 0 0
## 459 0 0 0 0 0 0 0 0 0 0 0
## 460 0 0 0 0 0 0 0 0 0 0 0
## 461 0 0 0 0 0 0 0 0 0 0 0
## 462 0 0 0 0 0 0 0 0 0 0 0
## 463 0 0 0 0 0 0 0 0 0 0 0
## 464 0 0 0 0 0 0 0 0 0 0 0
## 465 0 0 0 0 0 0 0 0 0 0 0
## 466 0 0 0 0 0 0 0 0 0 0 0
## 467 0 0 0 0 0 0 0 0 0 0 0
## 468 0 0 0 0 0 0 0 0 0 0 0
## 469 0 0 0 0 0 0 0 0 0 0 0
## 470 0 0 0 0 0 0 0 0 0 0 0
## 471 0 0 0 0 0 0 0 0 0 0 0
## 472 0 0 0 0 0 0 0 0 0 0 0
## 473 0 0 0 0 0 0 0 0 0 0 0
## 474 0 0 0 0 0 0 0 0 0 0 0
## 475 0 0 0 0 0 0 0 0 0 0 0
## 476 0 0 0 0 0 0 0 0 0 0 0
## 477 0 0 0 0 0 0 0 0 0 0 0
## 478 0 0 0 0 0 0 0 0 0 0 0
## 479 0 0 0 0 0 0 0 0 0 0 0
## 480 0 0 0 0 0 0 0 0 0 0 0
## 481 0 0 0 0 0 0 0 0 0 0 0
## 482 0 0 0 0 0 0 0 0 0 0 0
## 483 0 0 0 0 0 0 0 0 0 0 0
## 484 0 0 0 0 0 0 0 0 0 0 0
## 485 0 0 0 0 0 0 0 0 0 0 0
## 486 0 0 0 0 0 0 0 0 0 0 0
## 487 0 0 0 0 0 0 0 0 0 0 0
## 488 0 0 0 0 0 0 0 0 0 0 0
## 489 0 0 0 0 0 0 0 0 0 0 0
## 490 0 0 0 0 0 0 0 0 0 0 0
## 491 0 0 0 0 0 0 0 0 0 0 0
## 492 0 0 0 0 0 0 0 0 0 0 0
## 493 0 0 0 0 0 0 0 0 0 0 0
## 494 0 0 0 0 0 0 0 0 0 0 0
## 495 0 0 0 0 0 0 0 0 0 0 0
## 496 0 0 0 0 0 0 0 0 0 0 0
## 497 0 0 0 0 0 0 0 0 0 0 0
## 498 0 0 0 0 0 0 0 0 0 0 0
## 499 0 0 0 0 0 0 0 0 0 0 0
## 500 0 0 0 0 0 0 0 0 0 0 0
## 501 0 0 0 0 0 0 0 0 0 0 0
## 502 0 0 0 0 0 0 0 0 0 0 0
## 503 0 0 0 0 0 0 0 0 0 0 0
## 504 0 0 0 0 0 0 0 0 0 0 0
## 505 0 0 0 0 0 0 0 0 0 0 0
## 506 0 0 0 0 0 0 0 0 0 0 0
## 507 0 0 0 0 0 0 0 0 0 0 0
## 508 0 0 0 0 0 0 0 0 0 0 0
## 509 0 0 0 0 0 0 0 0 0 0 0
## 510 0 0 0 0 0 0 0 0 0 0 0
## 511 0 0 0 0 0 0 0 0 0 0 0
## 512 0 0 0 0 0 0 0 0 0 0 0
## 513 0 0 0 0 0 0 0 0 0 0 0
## 514 0 0 0 0 0 0 0 0 0 0 0
## 515 0 0 0 0 0 0 0 0 0 0 0
## 516 0 0 0 0 0 0 0 0 0 0 0
## 517 0 0 0 0 0 0 0 0 0 0 0
## 518 0 0 0 0 0 0 0 0 0 0 0
## 519 0 0 0 0 0 0 0 0 0 0 0
## 520 0 0 0 0 0 0 0 0 0 0 0
## 521 0 0 0 0 0 0 0 0 0 0 0
## 522 0 0 0 0 0 0 0 0 0 0 0
## 523 0 0 0 0 0 0 0 0 0 0 0
## 524 0 0 0 0 0 0 0 0 0 0 0
## 525 0 0 0 0 0 0 0 0 0 0 0
## 526 0 0 0 0 0 0 0 0 0 0 0
## 527 0 0 0 0 0 0 0 0 0 0 0
## 528 0 0 0 0 0 0 0 0 0 0 0
## 529 0 0 0 0 0 0 0 0 0 0 0
## 530 0 0 0 0 0 0 0 0 0 0 0
## 531 0 0 0 0 0 0 0 0 0 0 0
## 532 0 0 0 0 0 0 0 0 0 0 0
## 533 0 0 0 0 0 0 0 0 0 0 0
## 534 0 0 0 0 0 0 0 0 0 0 0
## 535 0 0 0 0 0 0 0 0 0 0 0
## 536 0 0 0 0 0 0 0 0 0 0 0
## 537 0 0 0 0 0 0 0 0 0 0 0
## 538 0 0 0 0 0 0 0 0 0 0 0
## 539 2 3 BCCDC04-006 2 4 BCCDC03-032 1 1 BCCDC04-003 1 2
## 540 0 0 0 0 0 0 0 0 0 0 0
## 541 0 0 0 0 0 0 0 0 0 0 0
## 542 0 0 0 0 0 0 0 0 0 0 0
## 543 0 0 0 0 0 0 0 0 0 0 0
## 544 0 0 0 0 0 0 0 0 0 0 0
## 545 0 0 0 0 0 0 0 0 0 0 0
## 546 0 0 0 0 0 0 0 0 0 0 0
## 547 0 0 0 0 0 0 0 0 0 0 0
## 548 0 0 0 0 0 0 0 0 0 0 0
## 549 0 0 0 0 0 0 0 0 0 0 0
## 550 0 0 0 0 0 0 0 0 0 0 0
## 551 0 0 0 0 0 0 0 0 0 0 0
## 552 0 0 0 0 0 0 0 0 0 0 0
## 553 0 0 0 0 0 0 0 0 0 0 0
## 554 0 0 0 0 0 0 0 0 0 0 0
## 555 0 0 0 0 0 0 0 0 0 0 0
## 556 0 0 0 0 0 0 0 0 0 0 0
## 557 0 0 0 0 0 0 0 0 0 0 0
## 558 0 0 0 0 0 0 0 0 0 0 0
## 559 0 0 0 0 0 0 0 0 0 0 0
## 560 0 0 0 0 0 0 0 0 0 0 0
## 561 0 0 0 0 0 0 0 0 0 0 0
## 562 0 0 0 0 0 0 0 0 0 0 0
## 563 0 0 0 0 0 0 0 0 0 0 0
## 564 0 0 0 0 0 0 0 0 0 0 0
## 565 0 0 0 0 0 0 0 0 0 0 0
## 566 0 0 0 0 0 0 0 0 0 0 0
## 567 0 0 0 0 0 0 0 0 0 0 0
## 568 0 0 0 0 0 0 0 0 0 0 0
## 569 0 0 0 0 0 0 0 0 0 0 0
## 570 0 0 0 0 0 0 0 0 0 0 0
## 571 0 0 0 0 0 0 0 0 0 0 0
## 572 0 0 0 0 0 0 0 0 0 0 0
## 573 0 0 0 0 0 0 0 0 0 0 0
## 574 0 0 0 0 0 0 0 0 0 0 0
## 575 0 0 0 0 0 0 0 0 0 0 0
## 576 0 0 0 0 0 0 0 0 0 0 0
## 577 0 0 0 0 0 0 0 0 0 0 0
## 578 0 0 0 0 0 0 0 0 0 0 0
## 579 0 0 0 0 0 0 0 0 0 0 0
## 580 0 0 0 0 0 0 0 0 0 0 0
## 581 0 0 0 0 0 0 0 0 0 0 0
## 582 0 0 0 0 0 0 0 0 0 0 0
## 583 0 0 0 0 0 0 0 0 0 0 0
## 584 0 0 0 0 0 0 0 0 0 0 0
## 585 0 0 0 0 0 0 0 0 0 0 0
## 586 0 0 0 0 0 0 0 0 0 0 0
## 587 0 0 0 0 0 0 0 0 0 0 0
## 588 0 0 0 0 0 0 0 0 0 0 0
## 589 0 0 0 0 0 0 0 0 0 0 0
## 590 0 0 0 0 0 0 0 0 0 0 0
## 591 0 0 0 0 0 0 0 0 0 0 0
## 592 0 0 0 0 0 0 0 0 0 0 0
## 593 0 0 0 0 0 0 0 0 0 0 0
## 594 0 0 0 0 0 0 0 0 0 0 0
## 595 0 0 0 0 0 0 0 0 0 0 0
## 596 0 0 0 0 0 0 0 0 0 0 0
## 597 0 0 0 0 0 0 0 0 0 0 0
## 598 0 0 0 0 0 0 0 0 0 0 0
## 599 0 0 0 0 0 0 0 0 0 0 0
## 600 0 0 0 0 0 0 0 0 0 0 0
## 601 0 0 0 0 0 0 0 0 0 0 0
## 602 0 0 0 0 0 0 0 0 0 0 0
## 603 0 0 0 0 0 0 0 0 0 0 0
## 604 0 0 0 0 0 0 0 0 0 0 0
## 605 0 0 0 0 0 0 0 0 0 0 0
## 606 0 0 0 0 0 0 0 0 0 0 0
## 607 0 0 0 0 0 0 0 0 0 0 0
## 608 0 0 0 0 0 0 0 0 0 0 0
## 609 0 0 0 0 0 0 0 0 0 0 0
## 610 0 0 0 0 0 0 0 0 0 0 0
## 611 0 0 0 0 0 0 0 0 0 0 0
## 612 0 0 0 0 0 0 0 0 0 0 0
## 613 0 0 0 0 0 0 0 0 0 0 0
## 614 0 0 0 0 0 0 0 0 0 0 0
## 615 0 0 0 0 0 0 0 0 0 0 0
## 616 0 0 0 0 0 0 0 0 0 0 0
## 617 0 0 0 0 0 0 0 0 0 0 0
## 618 0 0 0 0 0 0 0 0 0 0 0
## 619 0 0 0 0 0 0 0 0 0 0 0
## 620 0 0 0 0 0 0 0 0 0 0 0
## 621 0 0 0 0 0 0 0 0 0 0 0
## 622 0 0 0 0 0 0 0 0 0 0 0
## 623 0 0 0 0 0 0 0 0 0 0 0
## 624 0 0 0 0 0 0 0 0 0 0 0
## 625 0 0 0 0 0 0 0 0 0 0 0
## 626 0 0 0 0 0 0 0 0 0 0 0
## 627 0 0 0 0 0 0 0 0 0 0 0
## 628 0 0 0 0 0 0 0 0 0 0 0
## 629 0 0 0 0 0 0 0 0 0 0 0
## 630 0 0 0 0 0 0 0 0 0 0 0
## 631 0 0 0 0 0 0 0 0 0 0 0
## 632 0 0 0 0 0 0 0 0 0 0 0
## 633 0 0 0 0 0 0 0 0 0 0 0
## 634 0 0 0 0 0 0 0 0 0 0 0
## 635 0 0 0 0 0 0 0 0 0 0 0
## 636 0 0 0 0 0 0 0 0 0 0 0
## 637 0 0 0 0 0 0 0 0 0 0 0
## 638 0 0 0 0 0 0 0 0 0 0 0
## 639 0 0 0 0 0 0 0 0 0 0 0
## 640 0 0 0 0 0 0 0 0 0 0 0
## 641 0 0 0 0 0 0 0 0 0 0 0
## 642 0 0 0 0 0 0 0 0 0 0 0
## 643 0 0 0 0 0 0 0 0 0 0 0
## 644 0 0 0 0 0 0 0 0 0 0 0
## 645 0 0 0 0 0 0 0 0 0 0 0
## 646 0 0 0 0 0 0 0 0 0 0 0
## 647 0 0 0 0 0 0 0 0 0 0 0
## 648 0 0 0 0 0 0 0 0 0 0 0
## 649 0 0 0 0 0 0 0 0 0 0 0
## 650 0 0 0 0 0 0 0 0 0 0 0
## 651 0 0 0 0 0 0 0 0 0 0 0
## 652 0 0 0 0 0 0 0 0 0 0 0
## 653 0 0 0 0 0 0 0 0 0 0 0
## 654 0 0 0 0 0 0 0 0 0 0 0
## 655 0 0 0 0 0 0 0 0 0 0 0
## 656 2 12 0 0 0 0 0 0 0 0 0
## 657 0 0 0 0 0 0 0 0 0 0 0
## 658 0 0 0 0 0 0 0 0 0 0 0
## 659 0 0 0 0 0 0 0 0 0 0 0
## 660 0 0 0 0 0 0 0 0 0 0 0
## 661 0 0 0 0 0 0 0 0 0 0 0
## 662 0 0 0 0 0 0 0 0 0 0 0
## 663 0 0 0 0 0 0 0 0 0 0 0
## 664 0 0 0 0 0 0 0 0 0 0 0
## 665 0 0 0 0 0 0 0 0 0 0 0
## 666 0 0 0 0 0 0 0 0 0 0 0
## 667 0 0 0 0 0 0 0 0 0 0 0
## 668 0 0 0 0 0 0 0 0 0 0 0
## 669 0 0 0 0 0 0 0 0 0 0 0
## 670 0 0 0 0 0 0 0 0 0 0 0
## 671 0 0 0 0 0 0 0 0 0 0 0
## 672 0 0 0 0 0 0 0 0 0 0 0
## 673 0 0 0 0 0 0 0 0 0 0 0
## 674 0 0 0 0 0 0 0 0 0 0 0
## 675 0 0 0 0 0 0 0 0 0 0 0
## 676 0 0 0 0 0 0 0 0 0 0 0
## 677 0 0 0 0 0 0 0 0 0 0 0
## 678 0 0 0 0 0 0 0 0 0 0 0
## 679 0 0 0 0 0 0 0 0 0 0 0
## 680 0 0 0 0 0 0 0 0 0 0 0
## 681 0 0 0 0 0 0 0 0 0 0 0
## 682 0 0 0 0 0 0 0 0 0 0 0
## 683 0 0 0 0 0 0 0 0 0 0 0
## 684 0 0 0 0 0 0 0 0 0 0 0
## 685 0 0 0 0 0 0 0 0 0 0 0
## 686 0 0 0 0 0 0 0 0 0 0 0
## 687 0 0 0 0 0 0 0 0 0 0 0
## 688 0 0 0 0 0 0 0 0 0 0 0
## 689 0 0 0 0 0 0 0 0 0 0 0
## 690 1 4 0 2 0 GIIb 0 0 0 0 0
## 691 0 0 0 0 0 0 0 0 0 0 0
## 692 0 0 0 0 0 0 0 0 0 0 0
## 693 0 0 0 0 0 0 0 0 0 0 0
## 694 0 0 0 0 0 0 0 0 0 0 0
## 695 0 0 0 0 0 0 0 0 0 0 0
## 696 0 0 0 0 0 0 0 0 0 0 0
## 697 0 0 0 0 0 0 0 0 0 0 0
## 698 0 0 0 0 0 0 0 0 0 0 0
## 699 0 0 0 0 0 0 0 0 0 0 0
## 700 0 0 0 0 0 0 0 0 0 0 0
## 701 0 0 0 0 0 0 0 0 0 0 0
## 702 0 0 0 0 0 0 0 0 0 0 0
## 703 0 0 0 0 0 0 0 0 0 0 0
## 704 0 0 0 0 0 0 0 0 0 0 0
## 705 0 0 0 0 0 0 0 0 0 0 0
## 706 0 0 0 0 0 0 0 0 0 0 0
## 707 0 0 0 0 0 0 0 0 0 0 0
## 708 0 0 0 0 0 0 0 0 0 0 0
## 709 0 0 0 0 0 0 0 0 0 0 0
## 710 0 0 0 0 0 0 0 0 0 0 0
## 711 0 0 0 0 0 0 0 0 0 0 0
## 712 0 0 0 0 0 0 0 0 0 0 0
## 713 0 0 0 0 0 0 0 0 0 0 0
## 714 0 0 0 0 0 0 0 0 0 0 0
## sj Country2
## 1 0 0
## 2 0 0
## 3 0 The Netherlands
## 4 0 The Netherlands
## 5 0 The Netherlands
## 6 0 The Netherlands
## 7 0 The Netherlands
## 8 0 The Netherlands
## 9 0 Spain
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 USA, Caribbean
## 16 0 USA, Spain
## 17 0 USA, Caribbean
## 18 0 0
## 19 0 0
## 20 0 0
## 21 0 United Kingdom
## 22 0 United Kingdom
## 23 0 United Kingdom
## 24 0 United Kingdom
## 25 0 United Kingdom
## 26 0 United Kingdom
## 27 0 United Kingdom
## 28 0 United Kingdom
## 29 0 United Kingdom
## 30 0 United Kingdom
## 31 0 United Kingdom
## 32 0 United Kingdom
## 33 0 United Kingdom
## 34 0 0
## 35 0 Australia
## 36 0 Hungary
## 37 0 Brazil
## 38 0 India
## 39 0 Australia
## 40 0 United Kingdom
## 41 0 Malta
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 United Kingdom
## 48 0 Ca da
## 49 0 0
## 50 0 0
## 51 0 USA, Caribbean
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 Sweden
## 64 0 Austria
## 65 0 Switzerland
## 66 0 0
## 67 0 0
## 68 0 New Zealand
## 69 0 Sweden
## 70 0 Sweden
## 71 0 Sweden
## 72 0 Sweden
## 73 0 Sweden
## 74 0 Sweden
## 75 0 Sweden
## 76 0 Sweden
## 77 0 Sweden
## 78 0 Sweden
## 79 0 Sweden
## 80 0 Sweden
## 81 0 Sweden
## 82 0 Sweden
## 83 0 Sweden
## 84 0 Sweden
## 85 0 Sweden
## 86 0 Australia
## 87 0 Australia
## 88 0 Germany
## 89 0 Finland
## 90 0 0
## 91 0 United Kingdom
## 92 0 United Kingdom
## 93 0 Germany
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 Hungary
## 99 0 Hungary
## 100 0 Hungary
## 101 0 Hungary
## 102 0 Hungary
## 103 0 Hungary
## 104 0 Spain
## 105 0 0
## 106 0 Austria
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 Belgium
## 116 0 The Netherlands, France
## 117 0 Australia
## 118 0 Australia
## 119 0 Australia
## 120 0 Australia
## 121 0 Caribbean
## 122 0 Caribbean
## 123 0 Pacific/Caribbean
## 124 0 Caribbean
## 125 0 Caribbean
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 Taiwan
## 132 0 0
## 133 0 0
## 134 0 Sweden
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 Chi
## 139 0 Chi
## 140 0 Chi
## 141 0 Chi
## 142 0 United Kingdom
## 143 0 0
## 144 0 Finland
## 145 0 Finland
## 146 0 Finland
## 147 0 Sweden
## 148 0 France, Netherlands
## 149 0 England, Ireland
## 150 0 Taiwan
## 151 0 Ca da
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 Belgium
## 166 0 Belgium
## 167 0 Belgium
## 168 0 Belgium
## 169 0 Belgium
## 170 0 Iraq
## 171 0 The Netherlands
## 172 0 The Netherlands
## 173 0 The Netherlands
## 174 0 The Netherlands
## 175 0 Israel
## 176 0 Australia
## 177 0 Australia
## 178 0 Australia
## 179 0 Afghanistan
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 Ca da, USA
## 186 0 Australia
## 187 0 0
## 188 0 0
## 189 0 United Kingdom
## 190 0 United Kingdom
## 191 0 United Kingdom
## 192 0 0
## 193 0 France, Switzerland
## 194 0 Switzerland
## 195 0 0
## 196 0 Arabian Gulf, at sea
## 197 0 Sweden
## 198 0 United Kingdom
## 199 0 Israel
## 200 0 Israel
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 Sweden
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 0 South Korea
## 263 0 South Korea
## 264 0 0
## 265 0 Finland
## 266 0 France
## 267 0 Australia
## 268 0 Sweden
## 269 0 Sweden
## 270 0 Sweden
## 271 0 Sweden
## 272 0 Sweden
## 273 0 Sweden
## 274 0 Sweden
## 275 0 Sweden
## 276 0 Sweden
## 277 0 Sweden
## 278 0 Sweden
## 279 0 Sweden
## 280 0 Italy
## 281 0 Finland
## 282 0 Finland
## 283 0 Finland
## 284 0 Finland
## 285 0 Finland
## 286 0 Finland
## 287 0 Western Mediterranean
## 288 0 Ca da
## 289 0 Ca da
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 Sweden
## 294 0 United Kingdom
## 295 0 United Kingdom
## 296 0 United Kingdom
## 297 0 United Kingdom
## 298 0 United Kingdom
## 299 0 United Kingdom
## 300 0 United Kingdom
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 Finland
## 309 0 Italy
## 310 0 Hungary
## 311 0 Hungary
## 312 0 Hungary
## 313 0 Hungary
## 314 0 0
## 315 0 Australia
## 316 0 Australia
## 317 0 Spain
## 318 0 Austria
## 319 0 Germany
## 320 0 Germany
## 321 0 Germany
## 322 0 Germany
## 323 0 Germany
## 324 0 Germany
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 New Zealand
## 338 0 New Zealand
## 339 0 New Zealand
## 340 0 New Zealand
## 341 0 Australia
## 342 0 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 0 0
## 350 0 Australia
## 351 0 Australia
## 352 0 Australia
## 353 0 Australia
## 354 0 Australia
## 355 0 0
## 356 0 0
## 357 0 Taiwan
## 358 0 Taiwan
## 359 0 0
## 360 0 0
## 361 0 0
## 362 0 Austria
## 363 0 Taiwan
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 Belgium
## 390 0 Belgium
## 391 0 Belgium
## 392 0 0
## 393 0 Italy
## 394 0 The Netherlands
## 395 0 The Netherlands
## 396 0 The Netherlands
## 397 0 The Netherlands
## 398 0 The Netherlands
## 399 0 The Netherlands
## 400 0 The Netherlands
## 401 0 The Netherlands
## 402 0 The Netherlands
## 403 0 United Kingdom
## 404 0 Australia
## 405 0 Australia
## 406 0 0
## 407 0 0
## 408 0 Ca da, USA
## 409 0 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 Hong Kong
## 414 0 Chi
## 415 0 Denmark
## 416 0 Denmark
## 417 0 Denmark
## 418 0 Hungary
## 419 0 Australia
## 420 0 Switzerland
## 421 0 Ca da
## 422 0 Australia
## 423 0 Israel
## 424 0 Israel
## 425 0 Netherlands
## 426 0 Sweden
## 427 0 Sweden
## 428 0 The Netherlands
## 429 0 0
## 430 0 0
## 431 0 0
## 432 0 0
## 433 0 0
## 434 0 Sweden
## 435 0 Sweden
## 436 0 Sweden
## 437 0 Sweden
## 438 0 Sweden
## 439 0 Sweden
## 440 0 Sweden
## 441 0 Sweden
## 442 0 Sweden
## 443 0 Sweden
## 444 0 Sweden
## 445 0 Sweden
## 446 0 Sweden
## 447 0 Sweden
## 448 0 Sweden
## 449 0 Sweden
## 450 0 Finland
## 451 0 0
## 452 0 United Kingdom
## 453 0 Finland
## 454 0 Finland
## 455 0 Finland
## 456 0 Finland
## 457 0 Finland
## 458 0 Finland
## 459 0 Ca da
## 460 0 Italy
## 461 0 0
## 462 0 0
## 463 0 United Kingdom
## 464 0 United Kingdom
## 465 0 United Kingdom
## 466 0 Hungary
## 467 0 Hungary
## 468 0 Hungary
## 469 0 Italy
## 470 0 Sweden
## 471 0 0
## 472 0 New Zealand
## 473 0 New Zealand
## 474 0 New Zealand
## 475 0 New Zealand
## 476 0 New Zealand
## 477 0 New Zealand
## 478 0 Australia
## 479 0 Pohang, Korea, Singapore, Phuket, Thailand, Persian Gulf
## 480 0 Singapore; Port Kelang, Malaysia; Bahrain
## 481 0 Switzerland, France, Germany, the Netherlands and Belgium
## 482 0 United Kingdom
## 483 0 United Kingdom
## 484 0 Australia
## 485 0 Australia
## 486 0 Montenegro
## 487 0 Australia
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 0 Spain
## 496 0 Brazil
## 497 0 The Netherlands, Belgium
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 0 0
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 Belgium
## 515 0 0
## 516 0 The Netherlands
## 517 0 The Netherlands
## 518 0 The Netherlands
## 519 0 The Netherlands
## 520 0 The Netherlands
## 521 0 The Netherlands
## 522 0 The Netherlands
## 523 0 The Netherlands
## 524 0 Bermuda
## 525 0 Australia
## 526 0 0
## 527 0 Sweden
## 528 0 Australia
## 529 0 0
## 530 0 0
## 531 0 0
## 532 0 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 United Kingdom
## 539 BCCDC04-008 Ca da
## 540 0 Netherlands
## 541 0 United Kingdom
## 542 0 United Kingdom
## 543 0 United Kingdom
## 544 0 United Kingdom
## 545 0 United Kingdom
## 546 0 United Kingdom
## 547 0 France
## 548 0 France
## 549 0 United Kingdom
## 550 0 Switzerland
## 551 0 Switzerland
## 552 0 Switzerland
## 553 0 Switzerland
## 554 0 Switzerland
## 555 0 Switzerland
## 556 0 Austria
## 557 0 United Kingdom
## 558 0 United Kingdom
## 559 0 United Kingdom
## 560 0 Israel
## 561 0 Israel
## 562 0 Israel
## 563 0 Israel
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 0 0
## 591 0 0
## 592 0 0
## 593 0 New Zealand
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 0 0
## 649 0 0
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 0
## 654 0 0
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 0
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 Bulgaria
## 680 0 Finland
## 681 0 0
## 682 0 0
## 683 0 Switzerland
## 684 0 0
## 685 0 0
## 686 0 Finland
## 687 0 Austria
## 688 0 Finland
## 689 0 Italy, France
## 690 0 France
## 691 0 New Zealand
## 692 0 Sweden
## 693 0 Sweden
## 694 0 Sweden
## 695 0 Sweden
## 696 0 Sweden
## 697 0 Sweden
## 698 0 Sweden
## 699 0 Sweden
## 700 0 Sweden
## 701 0 Sweden
## 702 0 Sweden
## 703 0 Sweden
## 704 0 Sweden
## 705 0 Sweden
## 706 0 Sweden
## 707 0 United Kingdom
## 708 0 Australia
## 709 0 0
## 710 0 Finland
## 711 0 Finland
## 712 0 Finland
## 713 0 Finland
## 714 0 Ireland
## Veh1_D_2
## 1 0
## 2 Boxed Lunch
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 Oysters
## 11 Oyster
## 12 catered luncheon, potatoe salad
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 Contami ted oyster
## 35 0
## 36 Menu A
## 37 0
## 38 sandwiches
## 39 0
## 40 recreatio l water
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 broccoli
## 47 Salad
## 48 0
## 49 0
## 50 0
## 51 0
## 52 Shellfish
## 53 Shellfish
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 Oyster
## 62 Raw oysters
## 63 Pink raspberry cakes
## 64 Consuming food from local catering company; s cks, sandwiches, lunch, and dinners
## 65 ill visitor
## 66 Raw oyster on the half shell
## 67 coleslaw
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 Drinking water
## 75 0
## 76 Drinking water
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 index cases were patients from the community who were admitted w/symptoms
## 89 Contami ted ground water
## 90 School lunch
## 91 child who vomited in nursery school sandpit
## 92 0
## 93 pool water
## 94 0
## 95 0
## 96 0
## 97 Well water (drinking and ice)
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 Shellfish: Oysters, bi-valves
## 105 Shellfish
## 106 Emesis
## 107 Oyster
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 Bread
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 Tomato
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 buffet pasta in mayo
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 salad
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 mashed potatoes
## 166 sandwiches
## 167 meat stew
## 168 sandwiches
## 169 chinese take out
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 Ill nursing home patient
## 178 0
## 179 0
## 180 Sandwich
## 181 sandwich lettuce
## 182 0
## 183 water well
## 184 0
## 185 Cabins
## 186 0
## 187 0
## 188 deli sandwiches
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 Infected persons
## 195 Wedding cake
## 196 Salad
## 197 Pumpkin salad
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 Bivalves
## 205 0
## 206 0
## 207 0
## 208 0
## 209 Oyster
## 210 0
## 211 Fresh cut fruit
## 212 oyster
## 213 0
## 214 0
## 215 0
## 216 Oyster
## 217 Oyster
## 218 Oyster
## 219 0
## 220 0
## 221 0
## 222 0
## 223 Oyster
## 224 Oyster
## 225 Oyster
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 Oyster
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 Shellfish
## 245 Shellfish
## 246 Shellfish
## 247 Shellfish
## 248 Shellfish
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 contami ted ground water supply
## 263 contami ted ground water supply
## 264 0
## 265 municiple water system
## 266 oysters (Crassostrea gigas)
## 267 Ill resident
## 268 0
## 269 Drinking water
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 Tap water in Taranto City
## 281 Contamia ted Ground water
## 282 Contami ted ground water
## 283 Well (dug)
## 284 Well (drilled)
## 285 Contami ted surface water (river)
## 286 Ground water, broken pipe leading to contami tion
## 287 Passengers remaining on board for a second week
## 288 contami ted serving utensils
## 289 0
## 290 Oyster
## 291 Oyster
## 292 0
## 293 contami ted drinking water
## 294 kitchen staff member taken ill during the preparation of the meals
## 295 0
## 296 0
## 297 index case infected in community before entering hospital
## 298 index case became ill with usea, vomiting and diarrhoea
## 299 0
## 300 seawater subsequently was shown to be contami ted with raw sewage
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Well water from store A
## 308 dressing made from imported frozen raspberries
## 309 Mussels
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 Sandwich
## 318 Sewage
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 Oyster
## 332 0
## 333 Shellfish
## 334 0
## 335 0
## 336 0
## 337 Oysters
## 338 0
## 339 Oysters
## 340 0
## 341 Passionfruit Slices
## 342 Sandwich
## 343 0
## 344 Foodhandler
## 345 0
## 346 Foodhandler
## 347 0
## 348 0
## 349 0
## 350 Oyster
## 351 Oyster
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 Cooker
## 359 0
## 360 drinking water
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 Soda
## 389 composite meal
## 390 tap water
## 391 sandwich
## 392 Water
## 393 main water pipe
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Water
## 404 0
## 405 0
## 406 People
## 407 Person
## 408 0
## 409 scalloped potatoes
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 Frozen Raspberries
## 416 Frozen Raspberries
## 417 Frozen Raspberries
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 Raspberries
## 427 raspberries
## 428 Recreatio l water from a fountain
## 429 0
## 430 0
## 431 Shellfish
## 432 0
## 433 0
## 434 Drinking water
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 Drinking water
## 450 raw vegetables/salad
## 451 Packaged delicatessen meat
## 452 vomitus
## 453 wading pool water contami ted with norovirus and astrovirus
## 454 Contami ted well water
## 455 Contami ted commu l well water
## 456 Contami ted well water
## 457 Well (drilled)
## 458 Contami ted well
## 459 0
## 460 fecally contami ted non-drinking water connected to drinking-water systems
## 461 resident who began vomiting
## 462 0
## 463 poor sanitation in crew facilities and sleeping quarters
## 464 0
## 465 Potato salad
## 466 0
## 467 0
## 468 0
## 469 Oyster
## 470 Lake water
## 471 0
## 472 0
## 473 Oysters
## 474 Oysters
## 475 0
## 476 Oysters
## 477 Oysters
## 478 Oysters
## 479 0
## 480 0
## 481 0
## 482 0
## 483 salad
## 484 0
## 485 Oyster
## 486 Municiple water supply
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 round of beef
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 Pasta Salad
## 513 well water
## 514 chicken with rice and soup
## 515 Oyster
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 Water
## 525 0
## 526 0
## 527 unboiled water from well A
## 528 0
## 529 Sandwich/Sub
## 530 Pool
## 531 antipasti platter
## 532 1st grade room J
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 Oysters
## 540 Rolls
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 Oysters
## 548 Oyster
## 549 male restroom
## 550 0
## 551 Pillow covers
## 552 0
## 553 community water supply from lake
## 554 infected person
## 555 Infected person
## 556 0
## 557 Oyster
## 558 diabetic man with acute GI
## 559 case from previous outbreak becamse index case for this outbreak
## 560 Salad
## 561 0
## 562 0
## 563 0
## 564 0
## 565 Oyster
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 Oyster
## 572 0
## 573 0
## 574 Oyster
## 575 0
## 576 Oyster
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 Oyster
## 591 0
## 592 0
## 593 drinking water supply
## 594 0
## 595 oyster
## 596 0
## 597 0
## 598 0
## 599 oyster
## 600 0
## 601 0
## 602 oyster
## 603 0
## 604 oyster
## 605 0
## 606 oyster
## 607 0
## 608 oyster
## 609 0
## 610 0
## 611 0
## 612 oyster
## 613 oyster
## 614 0
## 615 oyster
## 616 0
## 617 oyster
## 618 0
## 619 oyster
## 620 oyster
## 621 Oyster
## 622 Oyster
## 623 0
## 624 0
## 625 Oyster
## 626 Oyster
## 627 0
## 628 0
## 629 Oyster
## 630 Oyster
## 631 Oyster
## 632 0
## 633 0
## 634 Oyster
## 635 Oyster
## 636 0
## 637 0
## 638 Oyster
## 639 Oyster
## 640 Oyster
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 Shellfish
## 647 Shellfish
## 648 Shellfish
## 649 Shellfish
## 650 Shellfish
## 651 Shellfish
## 652 Shellfish
## 653 Shellfish
## 654 Shellfish
## 655 Shellfish
## 656 Shellfish
## 657 Shellfish
## 658 Shellfish
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 "community based outbreak of NoV"
## 681 tossed salad
## 682 ice
## 683 0
## 684 Salad (bar itmes)
## 685 macarroni
## 686 Municipal water
## 687 0
## 688 0
## 689 Oyster
## 690 Oysters
## 691 0
## 692 Drinking water
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 Index case was woman who vomited during large hotel dinner
## 708 0
## 709 index ill resident
## 710 Contami ted ground water
## 711 Contami ted ground water
## 712 Contami ted ground water
## 713 Contami ted lake water used for drinking
## 714 the index case was a patient admitted with vomiting and diarrhoea into the open ward
## Veh2_D_2 Veh3_D_2
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 0 0
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 spring roll udon noodles
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 0
## 65 0 0
## 66 0 0
## 67 guest bathroom 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 0 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 Human to Human oral-fecal route 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 0 0
## 134 Hamburger 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 buffet spring rolls 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 0 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 Fomites 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 owner of restaurant had been sick w/GE symptoms 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 Food from store A 0
## 308 transmission between employees 0
## 309 0 0
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 0 0
## 316 0 0
## 317 Salad 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## 324 0 0
## 325 0 0
## 326 0 0
## 327 0 0
## 328 0 0
## 329 0 0
## 330 0 0
## 331 0 0
## 332 0 0
## 333 0 0
## 334 0 0
## 335 0 0
## 336 0 0
## 337 0 0
## 338 0 0
## 339 0 0
## 340 0 0
## 341 0 0
## 342 Salad 0
## 343 0 0
## 344 0 0
## 345 0 0
## 346 0 0
## 347 0 0
## 348 0 0
## 349 0 0
## 350 0 0
## 351 0 0
## 352 0 0
## 353 0 0
## 354 0 0
## 355 0 0
## 356 0 0
## 357 0 0
## 358 0 0
## 359 0 0
## 360 ice house salad
## 361 0 0
## 362 0 0
## 363 0 0
## 364 0 0
## 365 0 0
## 366 0 0
## 367 0 0
## 368 0 0
## 369 0 0
## 370 0 0
## 371 0 0
## 372 0 0
## 373 0 0
## 374 0 0
## 375 0 0
## 376 0 0
## 377 0 0
## 378 0 0
## 379 0 0
## 380 0 0
## 381 0 0
## 382 0 0
## 383 0 0
## 384 0 0
## 385 0 0
## 386 0 0
## 387 0 0
## 388 0 0
## 389 0 0
## 390 0 0
## 391 0 0
## 392 0 0
## 393 0 0
## 394 0 0
## 395 0 0
## 396 0 0
## 397 0 0
## 398 0 0
## 399 0 0
## 400 0 0
## 401 0 0
## 402 0 0
## 403 Custard Slices 0
## 404 0 0
## 405 0 0
## 406 0 0
## 407 0 0
## 408 0 0
## 409 0 0
## 410 0 0
## 411 0 0
## 412 0 0
## 413 0 0
## 414 0 0
## 415 0 0
## 416 0 0
## 417 0 0
## 418 0 0
## 419 0 0
## 420 0 0
## 421 0 0
## 422 0 0
## 423 0 0
## 424 0 0
## 425 0 0
## 426 0 0
## 427 0 0
## 428 0 0
## 429 0 0
## 430 0 0
## 431 0 0
## 432 0 0
## 433 0 0
## 434 0 0
## 435 0 0
## 436 0 0
## 437 0 0
## 438 0 0
## 439 0 0
## 440 0 0
## 441 0 0
## 442 0 0
## 443 0 0
## 444 0 0
## 445 0 0
## 446 0 0
## 447 0 0
## 448 0 0
## 449 0 0
## 450 0 0
## 451 previously ill employee handled meat barehanded 0
## 452 0 0
## 453 0 0
## 454 0 0
## 455 0 0
## 456 0 0
## 457 0 0
## 458 0 0
## 459 0 0
## 460 0 0
## 461 0 0
## 462 0 0
## 463 0 0
## 464 0 0
## 465 0 0
## 466 0 0
## 467 0 0
## 468 0 0
## 469 Ice cubes 0
## 470 0 0
## 471 0 0
## 472 0 0
## 473 0 0
## 474 0 0
## 475 0 0
## 476 0 0
## 477 Tiger Prawns 0
## 478 0 0
## 479 0 0
## 480 0 0
## 481 0 0
## 482 0 0
## 483 coleslaw 0
## 484 0 0
## 485 0 0
## 486 0 0
## 487 0 0
## 488 0 0
## 489 0 0
## 490 0 0
## 491 0 0
## 492 0 0
## 493 0 0
## 494 0 0
## 495 assymptomatic foodhandler 0
## 496 0 0
## 497 0 0
## 498 0 0
## 499 0 0
## 500 0 0
## 501 0 0
## 502 0 0
## 503 0 0
## 504 0 0
## 505 0 0
## 506 0 0
## 507 0 0
## 508 0 0
## 509 0 0
## 510 0 0
## 511 0 0
## 512 0 0
## 513 0 0
## 514 0 0
## 515 0 0
## 516 0 0
## 517 0 0
## 518 0 0
## 519 0 0
## 520 0 0
## 521 0 0
## 522 0 0
## 523 0 0
## 524 0 0
## 525 0 0
## 526 0 0
## 527 0 0
## 528 0 0
## 529 0 0
## 530 0 0
## 531 garlic mashed potatoes 0
## 532 Infected person 0
## 533 0 0
## 534 0 0
## 535 0 0
## 536 0 0
## 537 0 0
## 538 0 0
## 539 0 0
## 540 0 0
## 541 0 0
## 542 0 0
## 543 0 0
## 544 0 0
## 545 0 0
## 546 0 0
## 547 0 0
## 548 0 0
## 549 areas contami ted with index case vomit 0
## 550 0 0
## 551 0 0
## 552 0 0
## 553 0 0
## 554 0 0
## 555 0 0
## 556 0 0
## 557 0 0
## 558 0 0
## 559 0 0
## 560 0 0
## 561 0 0
## 562 0 0
## 563 0 0
## 564 0 0
## 565 0 0
## 566 0 0
## 567 0 0
## 568 0 0
## 569 0 0
## 570 0 0
## 571 0 0
## 572 0 0
## 573 0 0
## 574 0 0
## 575 0 0
## 576 0 0
## 577 0 0
## 578 0 0
## 579 0 0
## 580 0 0
## 581 0 0
## 582 0 0
## 583 0 0
## 584 0 0
## 585 0 0
## 586 0 0
## 587 0 0
## 588 0 0
## 589 0 0
## 590 0 0
## 591 0 0
## 592 0 0
## 593 0 0
## 594 0 0
## 595 0 0
## 596 0 0
## 597 0 0
## 598 0 0
## 599 0 0
## 600 0 0
## 601 0 0
## 602 0 0
## 603 0 0
## 604 0 0
## 605 0 0
## 606 0 0
## 607 0 0
## 608 0 0
## 609 0 0
## 610 0 0
## 611 0 0
## 612 0 0
## 613 0 0
## 614 0 0
## 615 0 0
## 616 0 0
## 617 0 0
## 618 0 0
## 619 0 0
## 620 0 0
## 621 0 0
## 622 0 0
## 623 0 0
## 624 0 0
## 625 0 0
## 626 0 0
## 627 0 0
## 628 0 0
## 629 0 0
## 630 0 0
## 631 0 0
## 632 0 0
## 633 0 0
## 634 0 0
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 0
## 639 0 0
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 0
## 644 0 0
## 645 0 0
## 646 0 0
## 647 0 0
## 648 0 0
## 649 0 0
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 0
## 654 0 0
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 0
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 0
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 0
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 0
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 0 0
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 0 0
## 687 0 0
## 688 0 0
## 689 0 0
## 690 0 0
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 0
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 0
## 705 0 0
## 706 0 0
## 707 0 0
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 0 0
## 713 0 0
## 714 0 0
## Action2_2
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 closed shellfish harvesting area of apalachicola bay dec 1-7
## 11 harvest area closure, oyster recall, release of HAN
## 12 0
## 13 0
## 14 cleaning of ship
## 15 improved sanitization, exclusion of ill foodservice workers from the workplace
## 16 quarantine of ill until sx free for 72 hours, disinfection of ship, reinforcement of sanitization practices
## 17 disinfection & sanitization, secondary cases caused removal of ship from service for 1 week for aggresive cleaning and sanitizing.
## 18 isolation of ill patients, handy hygiene promotion via alcohol sanitizers, installation of sinks, and advertising campaigns.
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 Trace contaimi ted oysters back to source, attempted forward tracing to prevent further infection
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 handwashing, enviornmental disinfection, foodhandling precautions, disposal of soiled items
## 42 0
## 43 0
## 44 0
## 45 0
## 46 Restaurant temporarilly shut down,
## 47 kitchen spot checks and enviornmental studies to make recommendations for continual cleaning etc.
## 48 enviornmental cleaning, hand hygiene messages,
## 49 0
## 50 0
## 51 1 week sanitation and sterilization of the ship after cruise 1, however outbreak continued on the next 5 cruises
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 Harvesting area closed on November 16, 1993
## 63 0
## 64 Local catering company closed on September 7 for one week in order to clean, discard foodstuffs, and excluding ill employees from work
## 65 hand hygiene inforced, isolation and cohorting of ill patients, staff sick policy e cted, daily enviornmental cleaning.
## 66 detection and eradication of other oysters from the same shipment.
## 67 staff told not to work for 1 day after asymptomatic; staff instructed on hygiene & hand washing; hotel closed 8 h for thorough cleaning of food service areas & rooms, new guests not accepted til then; cold food requiring hand-prep excluded from menu
## 68 paid sick leave for staff, cleaning service was involved immediately and a rigorous cleaning regimen; promotion of the importance of hand hygiene was performed on the ward to educate staff, patients and visitors
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 In cardiology, educatio l interventions concerning the prevention of NoV transmission
## 89 0
## 90 Communicated oubreak to Board of Education and started campaign for washing hands with a chlori ted stream and careful treatments for ingested foods
## 91 0
## 92 0
## 93 wash their hands after using lavatory and prior to meals, ill patients should have little contact w/other guests, staff informed about illness immediately, sick patient rooms cleaned using a virucidal disinfectant
## 94 0
## 95 0
## 96 0
## 97 Previous high levels of coliform in the well water had elicited the use of a pellet chlori tor, which faile to operate correctly during this outbreak; also the saloon was shut down.
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 Restaurant closed as a precaution
## 105 Ship brought back in
## 106 Hand hygene, routine bathroom cleaning and overall cleaning. These were not implemented until lab results were back.
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 Hygenic measures reinforced
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 Ship was removed from service
## 124 Ship removed from service
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 Cleaning with bleach, handwashing, ceased meal service
## 133 installation of additio l portable bathrooms throughout the facility; education of evacuees on proper hand-washing techniques via flyers, banners, newsletters, and public announcements; and distribution of alcohol-based hand sanitzers
## 134 Ill food handler sent home after presenting with symptoms
## 135 hand sanitizers made available across campus
## 136 school closed, dining halls closed, students advised on proper sanitary precautions
## 137 Students were educated regarding hand washing, and cleaning of dormitories, public restrooms, and commu l areas was implemented with cleaning agents approved for norovirus
## 138 0
## 139 0
## 140 0
## 141 0
## 142 infected were told to refrain from work until 48 hours after stool returned to normal
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 professio lly cleaned restaurant
## 181 professio lly cleaned restaurant
## 182 professio lly cleaned restaurant
## 183 move and replace septic system
## 184 0
## 185 Clean up of public vomit within 1 hour.
## 186 infection control measures, ward closures
## 187 quarantine
## 188 deli closure
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 cohorting of ill persons, adequate toilet paper provided, enviornmental cleaning, hand hygiene promotion
## 197 Hygiene recommendations, staff policy removing ill workers from the workplace
## 198 cohorting ill, ward closure, staff sick policy, enviornmental cleaning, hand washing recommendations
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 Hotel closed, intense enviornmental cleaning, hand hygiene promoted
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 staff sick policy implemented, closure of admissions, onging surviellence
## 265 Boil water notice, chlori tion of water system.
## 266 0
## 267 handy hygiene, staff sick policy, environmental cleaning, isolation of ill patients.
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 An extra chlori tion treatment for household water supplies on 34th week of the year
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 At end of 4th cruise all passengers disembarked and entire ship cleaned with chlorine disinfectant; also hygiene measure introduced in galley
## 288 owner was asked to practice appropriate hand washing techniques, to stay away from the restaurant when ill, and to ensure that staff members who develop gastrointesti l symptoms be excluded from the premises
## 289 Closed restaurant for disinfection using bleach solution of unknown concentration
## 290 0
## 291 0
## 292 Health team instructed evacuees on perso l hand washing, gargling, and use of disinfectants on environmental surfaces
## 293 guidelines on kitchen hygiene and environmental cleaning were given; recommendations on boiling all water used for drinking and food preparation; facilities were closed for >l week at the end of June
## 294 0
## 295 hospital was closed to all new admissions
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Potential water contami tion signs posted along trial and at store A; recommendation of installing chlorine system at store A
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 extensive staff and hospital policy to reduce further transmission: handwashing, restricted movement of patients, linen cleaning, visitor limitations etc.
## 316 admissions suspended, handwashing, enviornmental cleaning, visitor restriction, linen cleaning, staff policy etc.
## 317 Told not to return to work for 48 hours, hand washing techniques emphasized
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 Bay was closed to harvesting, voluntary recall of oysters caught at the infected bays
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 Catering company ceased oporations temporarily, public health organization put out reminders about handwashing and not working until 48 hours after symptoms cease
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 restaurant closed
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 bottled water only, service water pipe
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 Staff policy removed ill food handlers from work.
## 403 0
## 404 0
## 405 0
## 406 cleaned with 10% bleach, soap dispensers added
## 407 facility washed with 10% bleach solution
## 408 sanitized before secondary outbreak, decomissioned and removed from service for a week after secondary outbreak
## 409 0
## 410 0
## 411 0
## 412 0
## 413 many sanitization steps, isolation of ill patients
## 414 infection control team implemented the use of Alcohol based hand rub and direct observation of utiliziation for staff members, enviornmental cleaning, seclution of cases
## 415 withdrawn from market
## 416 withdrawn from market,
## 417 withdrawn from market, public health warning
## 418 0
## 419 0
## 420 0
## 421 Patient education, handwashing, enviornmental cleaning, cohort isolation
## 422 0
## 423 0
## 424 0
## 425 masks, gloves, removal from food prep. if ill, hyperchlori tion toilet facilities
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 enviornmental cleanig with ammoni , school closure and enviornmental cleaning with chlorine
## 453 Closed the wading pool, pool was emptied, refilled with municipal water and shock chlori ted, water replaced and chlori ted again twice
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 sink was disinfected with chlorine containing solution after having been vommitted in by index foodhandler
## 466 0
## 467 0
## 468 0
## 469 Bottled water recommendations, hyperclori tion, ice disposal, elimi tion of raw oyster from the menu
## 470 Warnings against bathing put up
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 prepardness was high (i.e. definitions of outbreak, cases etc. serum/stool samples collected by crew & doc.
## 480 preventative measures (i.e. kits to investigate NoV outbreak, plus definitions of cases and outbreak etc.
## 481 New hygene protocol implemented
## 482 0
## 483 0
## 484 Barrier nursing, handwashing, restrictions on movement of ill patients, employees not to return to work until 48 hours after symptoms stop
## 485 0
## 486 Hyperchlori tion of the water supply
## 487 0
## 488 0
## 489 Ship was removed from servie
## 490 0
## 491 0
## 492 groups with affected members were excluded from camp activities and limited to specific bathrooms and water fountains
## 493 groups with affected members were excluded from camp activities and limited to specific bathrooms and water fountains
## 494 groups with affected members were excluded from camp activities and limited to specific bathrooms and water fountains
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 Caterer A was closed by the state health department Feb 16th for 2 days to correct 57 violations of health code
## 513 The lodge was closed
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 terrace-tank hyperchlori ted
## 525 0
## 526 0
## 527 water chlori tion
## 528 0
## 529 0
## 530 pool hyperchlori ted twice
## 531 discarded food from outbreak period, employees excluded from work 72 hours from symptom resolution, facility cleaned
## 532 clean computers, exclude ill persons for 72 hours after symptom resolution
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 sanitization
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 clean with hypochlorite solution, steam clean
## 550 0
## 551 Toilets and kitchens disinfected
## 552 Chalet shut down temperarily, and professio l cleaning
## 553 0
## 554 0
## 555 0
## 556 admission to the hospital closed 3 times, 34/41 guidlines for NoV outbreak control covered, control implemented via the hospital hygiene team
## 557 0
## 558 0
## 559 0
## 560 closing the mess hall, hand hygiene, use of military food rations
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 emergency clori tion of the water supply, staff policy for illness, hand hygiene signs.
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 handwashing, proper hygiene
## 645 ward closures, extensive enviornmental cleaning, staff sick policy, hand hygiene promotion
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 cohorting, contact isolation, enviornmental cleaning, hand hygiene
## 681 0
## 682 food discarded, hyperclori tion of water supply, enviornmental disinfection
## 683 hand hygiene, cohoring, enviornmental cleaning
## 684 Kitchen closed, investigation of water supply and other sources of potential exposure
## 685 0
## 686 Superchlori tion of the municipal water on April 9, 1998
## 687 Enviornmental disinfecting, cleaing of fomites, index case seclution
## 688 enviornmental cleaning, hyperclori tion of physiotherapy pools, physiotherapy instruments disinfected, hand hygiene promotion.
## 689 Oysters subject to depuration for 2 days before becoming marketable.
## 690 Increased shellfish sampling and surveillance, adopted depuration times, area closed on March 1st
## 691 Contact precautions were commenced, staffing guidelines instituted and the ward was closed for 11 days
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 perso l hygiene (gloves, gowns, handwashing), isolation of ill, staff sick policy, alcohol based hand sanitizers available
## 710 0
## 711 0
## 712 0
## 713 0
## 714 ill patients isolated or cohorted; transport & discharge avoided; staff wore disposable aprons & gloves; handwashing emphasized; ward closed to admissions; thorough cleaning of facilities
## Comments_2
## 1 Limited data
## 2 0
## 3 Outbreak 19 of 26 Boxman 2009
## 4 Outbreak 20 of 26 Boxman 2009
## 5 Outbreak 21 of 26 Boxman 2009
## 6 Outbreak 22 of 26 Boxman 2009
## 7 Outbreak 23 of 26 Boxman 2009
## 8 Outbreak 24 of 26 Boxman 2009
## 9 Article focused on genetic mutations and susceptability; little information on the actual outbreak except for the required bits of info.
## 10 0
## 11 0
## 12 0
## 13 0
## 14 crusie ship B
## 15 cruise ship C
## 16 cruise ship D
## 17 cruise ship E
## 18 The persons at risk (i.e. 6500) is an estimate, as this outbreak took place during an emergency and relief situation, evaluation and monitoring was potentially more difficult
## 19 0
## 20 0
## 21 Hosp A ward 7E
## 22 Hosp A ward 7B
## 23 hosp A ward 7A
## 24 Hosp A ward 7A (part 2)
## 25 Hosp A Ward 7D
## 26 Hosp A ward 7C
## 27 Hosp A ward 7F
## 28 Hosp A ward 7C
## 29 Hosp A ward 7E
## 30 Hosp A ward 7D
## 31 Hosp A ward 7A
## 32 Hosp B ward L
## 33 Hosp B ward E
## 34 10 clusters from 5 states; outbreak associated to contami ted oysters (essentially common source);
## 35 0
## 36 3-Jan
## 37 0
## 38 First NoV outbreak in Asia, not including Japan.
## 39 Recommendations to extend worker absence even after primary symptoms had ceased
## 40 swallowing recreatio l water and eating before changing close were associated with NoV
## 41 staff and patient specific attack rates available.
## 42 outbreak no 15 hamano 2005
## 43 outbreak no. 22 Hamano 2005
## 44 outbreak no. 23 Hamano 2005
## 45 outbreak no. 35 Hamano 2005
## 46 Multiple tourist groups visiting gasaki were all infected from one restaurant, improper foodhandling and thus the food were the causative agents of NoV outbreak
## 47 Restaurant based salad infected NoV outbreak; abnormally high levels of E. coli in kitchen enviornmental studies, no other pathogens indicated in the cases.
## 48 NoV outbreak in a large Ca dian university setting, no definitive sources, no retrospective case control study doen.
## 49 Outbreak 40 of 47 Iritani 2000
## 50 Outbreak 41 of 47 Iritani 2000
## 51 Secondary cases come from cruise 2, after the initial outbreak of NoV on cruise 1, the subsequent 5 cruises and even 1 related nursing home all had NoV outbreaks of the same strain
## 52 outbreak 4 of 66 Kageyama 2004
## 53 outbreak 20 of 66 Kageyama 2004
## 54 outbreak 37 of 66 Kageyama 2004
## 55 outbreak 42 of 66 Kageyama; outbreak 43 has no case info and is not included
## 56 outbreak 48 of 66 Kageyama 2004
## 57 Outbreak 49 of 66 Kageyama 2004
## 58 outbreak 50 of 66 Kageyama 2004; outbreak 51 has no case info. and is not included
## 59 outbreak 66 of 66 Kageyama 2004; note this outbreak is presented in a different order than in the paper.
## 60 Outbreak 59 of 66 Kageyama 2004
## 61 cooking oysters had no protection from NoV; dose response relationship with number of oysters consumed.
## 62 The outbreak was caused by contami tion of oysters in the oyster bed by stool from one or more ill harvester; the attack rate for 66 cases among 120 total perso s was 55%
## 63 Raspberries identified as source of contami tion in bakery outbreak; identical GG1 stain detected in sample stool, but different strain, GG2 IIb found on raspberries
## 64 All cases here were staff at factory, the source of outbreak was not determined but was most likely infected kitched staff in catering company of which from September 4-8th 8 catering employees were also ill
## 65 2 geographically isolated buildings on the hospital complex were affected by NoV due to ill HCW and patient movement prior to detection.
## 66 over 200 persons attended the event (at risk); convienence sample of only 66 individuals
## 67 outbreak occurred for 3 groups of guests at a hotel
## 68 outbreak 2 in article; more effective precautio ry measures in this outbreak than in first; no deaths from NoV
## 69 Outbreak 8 Lysen paper
## 70 Outbreak 9 Lysen paper
## 71 Outbreak 11 Lysen paper
## 72 Outbreak 12 Lysen Paper
## 73 Outbreak 13 Lysen Paper
## 74 Outbreak 2002/15 Lysen
## 75 Outbreak 2002/18 Lysen
## 76 Outbreak 2002/21 Lysen paper
## 77 Outbreak 2003/12 Lysen
## 78 Outbreak 2004/13 Lysen
## 79 Outbreak 2004/15 Lysen
## 80 Outbreak 2004/18 Lysen
## 81 Outbreak 2006/17 Lysen
## 82 Outbreak 2006/ 18 Lysen
## 83 Outbreak 2006/19 Lysen
## 84 Outbreak 2006/25 Lysen
## 85 Outbreak 2006/26 Fi l Lysen
## 86 outbreak 1 in paper; 21st birthday party in 2 groups of people at a Mediterranean restaurant
## 87 This is the second outbreak at the same Mediterranean-style restaurant in Australia
## 88 outbreak occurred in 5 wards of the hospital, afflicting both patients and staff members, several patients relapsed after 48 hrs asymptomatic
## 89 Outbreak E13 out of 18 norovirus outbreaks from drinking water; water samples tested negative
## 90 This data represents school children and staff who consumed the lunch on November 22nd, 69 out of 93 students were ill and 85 out of 105 lunch eaters were symptomatic
## 91 desig ted Outbreak 3 in paper; outbreak involved both children and staff; index case was identified as a child who had been ill at home 24 hours before vomiting in the nursery school sandpit
## 92 desig ted Outbreak 15 in paper; affected both residents and staff
## 93 single source of outbreak unknown, but subsequent person-to-person spread likely b/c social contacts among guests are much more frequent and intensive than among patients in a "normal" hospital
## 94 Outbreak 8 (norovirus-associated gastroenteritis outbreak)
## 95 Outbreak 56 (norovirus GII gastroenteritis outbreak)
## 96 Outbreak 57 (norovirus GII gastroenteritis outbreak)
## 97 Well water sampling for NoV was a "novel" technique when this paper was written; retrospective cohort study, no food implicated only ice and drinking water
## 98 Reuter outbreak 1 of 14; multiple retrospective looks at GE in Hungary
## 99 Outbreak 10 of 14 Reuter
## 100 Outbreak 11 of 14 Reuter
## 101 Outbreak 12 of 14 Reuter
## 102 Outbreak 13 of 14 Reuter
## 103 Outbreak 14 of 14 Reuter
## 104 No information about other patrons to the restaurant who may have had oyster NoV induced GE
## 105 0
## 106 For median age, it was 82 for patients, and 41 for staff. For 2ndary case info, have 160 hours as longest incuabation period but could not enter that number. For 2ndary case data, median age was 81 for patients, 36.5 staff.
## 107 0
## 108 0
## 109 1 of 12 outbreaks reported in shinkawa article; cases/persons at risk and the subsequent attack rate includes the food handler data presented in table 1
## 110 outbreak 2 of 12 shinkawa
## 111 Number of people infected/at risk were estimates, so attack ratio is not accurate
## 112 Only stated that >47 became ill
## 113 0
## 114 0
## 115 0
## 116 Following the pilgramige to Loudes, France Dutch patients became infected; other tourists from Ireland (at least 3 clusters), Italy, France; the data presented here are specific to the Netherlands cohort from a mental health facility
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 secondary cohort study implicated tomatos and hamburgers after the first cohort study implicated the canteen.
## 135 outbreak 1 of 3
## 136 outbreak 2 of 3
## 137 outbreak 3 of 3
## 138 outbreak 1 of 13
## 139 outbreak 2 of 13
## 140 outbreak 3 of 13
## 141 outbreak 4 of 13
## 142 0
## 143 0
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 outbreak 2 of 10 Baert 2009
## 166 outbreak 3 of 10 Baert 2009
## 167 outbreak 4 of 10 Baert 2009
## 168 Outbreak 5 of 10 Baert 2009
## 169 Outbreak 6 of 10 Baert 2009
## 170 0
## 171 Outbreak 7 of 26 Boxman 2009
## 172 Outbreak 8 of 26 Boxman 2009
## 173 Outbreak 9 of 26 Boxman 2009
## 174 Outbreak 10 of 26 Boxman 2009
## 175 0
## 176 outbreak 1 - 57/87 residents + 12 staff, secondary cases 17/24 + 10 staff
## 177 Second outbreak from Frankston; incubation and duration of illness seemed to be an estimate, but were reported; ill patients from an intial outbreak in a nursing home were transfered to the hospital and subsequently infected others
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 Georgian
## 185 Suspected index case boarded the ship ill, and trasmitted through public vomitting episodes, no Asians obtained NoV;
## 186 0
## 187 0
## 188 0
## 189 Hosp D
## 190 Hosp F
## 191 Hosp G
## 192 0
## 193 0
## 194 Outbreak 8 of 8 Fretz 2005; outbreak 3 of 3 related to hospital nursing home
## 195 Baker contami ted wedding cakes distributed to 46 weddings over the course of one weekend. The wedding cake was the only implicated vehicle at the various weddings to have spread NoV
## 196 strains desig ted as site specific mes, however the highly homogenous reference strains are reported here
## 197 it is uncertain wether or not the initial of the outbreak was the food, or if the foodhandlers were ill and then contami ted the food; interesting information on adult vs. child attack rate etc.
## 198 The similarity with Bristol virus was only 79%
## 199 Outbreak 3 (1 of 5) from Halperin 2005 (The first two outbreaks presented in the article do not meet the inclusion criteria)
## 200 outbreak 5 (3 of 5) Halperin
## 201 Outbreak no. 5 Hamano 2005
## 202 Outbreak no. 6 Hamano 2005
## 203 outbreak no. 10 Hamano 2005
## 204 Outbreak no. 11 Hamano 2005
## 205 outbreak no. 21 Hamano 2005
## 206 outbreak no. 27 Hamano 2005
## 207 outbreak no. 33 Hamano 2005
## 208 outbreak no. 34 Hamano 2005
## 209 outbreak no. 45 Hamano 2005
## 210 Outbreak no. 46 Hamano 2005
## 211 UK2 virus had 95% similarity with the outbreak strain. uncertain, at the time of publication, wether this is an NoV
## 212 outbreak 18 of 47 Iritani 2000
## 213 Outbreak 19 of 47 Iritani 2000
## 214 outbreak 20 of 47 Iritani 2000
## 215 outbreak 21 of 47 Iritani 2000
## 216 Outbreak 35 of 47 Iritani 2000
## 217 Outbreak 36 of 47 Iritani 2000
## 218 Outbreak 37 of 47 Iritani 2000
## 219 Outbreak 38 of 47 Iritani 2000
## 220 Outbreak 39 of 47 Iritani 2000
## 221 Outbreak 47 of 47 Iritani 2000
## 222 Outbreak 17 of 17 Iritani 2002
## 223 Outbreak 1 of 19 Iritani 2008
## 224 Outbreak 2 of 19 Iritani 2008
## 225 Outbreak 3 of 19 Iritani 2008
## 226 Outbreak 4 of 19 Iritani 2008
## 227 Outbreak 5 of 19 Iritani 2008
## 228 Outbreak 6 of 19 Iritani 2008
## 229 Outbreak 7 of 19 Iritani 2008
## 230 Outbreak 9 of 19 Iritani 2008
## 231 Outbreak 10 of 19 Iritani 2008
## 232 Outbreak 11 of 19 Iritani 2008
## 233 Outbreak 12 of 19 Iritani 2008
## 234 Outbreak 13 of 19 Iritani 2008
## 235 Outbreak 13 of 19 Iritani 2008
## 236 Outbreak 14 of 19 Iritani
## 237 Outbreak 15 of 19 Iritani 2008
## 238 Outbreak 16 of 19 Iritani 2008
## 239 Outbreak 17 of 19 Iritani 2008
## 240 Outbreak 18 of 19 Iritani 2008
## 241 Outbreak 19 of 19 Iritani 2008
## 242 closest recongnized strain was desert shield, another strain from an outbreak in japan was more similar (accession number ABO19262); 13 newborn babies were exposed and none developed NoV despite 5 of the parents becoming ill
## 243 This study demonstrates the importance fomites play in NoV transmission: 100% of doorknobs, 83% of bathroom surfaces, and 40% of kitchen surfaces had NoV present
## 244 outbreak 3 of 66; AR=100%; Kageyama2004
## 245 Outbreak 6 of 66 Kageyama 2004
## 246 outbreak 11 of 66 Kageyama 2004
## 247 outbreak 16 of 66 Kageyama 2004
## 248 outbreak 17 of 66 Kageyama 2004
## 249 outbreak 26 of 66 Kageyama 2004
## 250 outbreak 29 of 66 Kageyama 2004
## 251 outbreak 36 of 66 Kageyama 2004
## 252 outbreak 38 of 66 Kageyama 2004
## 253 Outbreak 39 of 66 Kageyama 2004
## 254 Outbreak 40 of 66 Kageyama 2004
## 255 Outbreak 41 of 66 Kageyama 2004
## 256 outbreak 44 of 66 Kageyama 2004
## 257 outbreak 45 of 66 Kageyama 2004
## 258 outbreak 47 of 66 Kageyama 2004
## 259 outbreak 58 of 66 Kageyama 2004
## 260 outbreak 61 of 66 Kageyama 2004
## 261 outbreak 63 of 66 Kageyama 2004
## 262 2 realated outbreaks in hotels 300m apart, in 2 school groups; dose response relationship with amount of water consumed; no mention of control measures.
## 263 Outbreak in hotel B associated with previous outbreak
## 264 outbreak origi lly thought to be due to causitive agent: C. difficile; further investigation proved otherwise.
## 265 Drinking municiple water was associated with NoV, while drinking well water exclusively was protective. Internet-based data collection scheme used.
## 266 Oyster consumption was responsible for at least 14 cases, but only one outbreak involving four consumers could be clearly identified & investigated; shellfish viral contami tion in the harvest area persisted for several weeks before disappearing
## 267 NoV outbreak in nursing home brought on by index case with vomitting in dining room.
## 268 1st of 70+ food and waterborne outbreaks from the lysen 2009 article
## 269 Outbreak 2002/14 Lysen Paper
## 270 Outbreak 2002/17 Lysen
## 271 Outbreak 2004/09 Lysen
## 272 Outbreak 2004/10 Lysen
## 273 Outbreak 20005/04 Lysen
## 274 Outbreak 2005/5 Lysen
## 275 Outbreak 2006/05 Lysen
## 276 Outbreak 2006/06 Lysen
## 277 Outbreak 2006/07 Lysen
## 278 Outbreak 2006/08 Lysen
## 279 Outbreak 2006/09 Lysen
## 280 No shellfish samples were positive for bacteria or viruses; source of contami tion was not revealed
## 281 Outbreak E2 out of 18 norovirus outbreak from drinking water; water samples were negative
## 282 Outbreak E7 out of 18 norovirus outbreaks from drinking water; same GI.6 strain found in the water samples
## 283 Outbreak E12 out of 18 norovirus outbreaks from drinking water, GII strain also found in water sample but for both water and patient samples the specific strain was not detected
## 284 Outbreak E15 out of 18 norovirus outbreaks from drinking water; GII.4 new variant found in both water and patient specimens
## 285 Outbreak E17 out of 18 norovirus outbreaks from drinking water; norovirus not detected in patient samples in this outbreak
## 286 Outbreak E18 out of 18 norovirus outbreaks from drinking water, no virus detected in patient samples
## 287 Very little information previded for this reason combined all four cruises; i ppropriate food handling but no positive environmental samples nor strain ID from emesis and stool samples
## 288 the owner of the Indian restaurant was sick and tended to all his duties while in this condition
## 289 Data provided for total diners on May 26th, 2002, suspected transmission due to environmental or food contami tion, there was no evidence of NLV among employees, data was also provided for the first group but little for the other 6 groups
## 290 8 of 11 kagawa
## 291 11 of 11 kagawa
## 292 Very little information provided, evacuees primarily the elderly, in Japan other outbreaks were caused by genotype GII-4 strain
## 293 outbreak in waves of people who came to camp; One expla tion for protracted duration of outbreak could be a continuous leak from the sewage system, which would have caused persistent contami tion of the environment
## 294 desig ted Outbreak 6 in paper; cases included both staff and diners; involved a member of the kitchen staff being taken ill during the preparation of the meals
## 295 desig ted Outbreak 7 in paper; affected staff and patients from 4 different wards
## 296 desig ted Outbreak 10 in paper; spread over 4 wards
## 297 desig ted Outbreak 11 in paper, affected both staff and patients; index case was almost certainly infected in the community before entering hospital; Two of the patients affected, including the index case, reported similar illness among family members
## 298 desig ted Outbreak 20 in paper; affected staff and residents; outbreak developed 2 days after the index case became ill with usea, vomiting and diarrhoea
## 299 desig ted Outbreak 30 in paper; affected people who had attended several functions at a regimental reunion which was held over a weekend
## 300 desig ted Outbreak 31; involved 3 groups of teens who attended a residential leisure center; index case not found but common to all 3 groups was that they were engaged in water sports activities in seawater later found to be contami ted w/sewage
## 301 Outbreak 2 of GII norovirus associated gastroenteritis outbreaks
## 302 Outbreak 11 (GII norovirus associated gastroenteritis outbreak)
## 303 Outbreak 19 (GII norovirus associated gastroenteritis outbreak)
## 304 Outbreak 44 (norovirus GII gastroenteritis outbreak)
## 305 Outbreak 75 (norovirus GII gastroenteritis outbreak)
## 306 Outbreak 78 (norovirus GII gastroenteritis outbreak)
## 307 Interesting setting (Appalachian Trial in VA); difficult to capture all hikers who may have been ill as they were highly transient; water samples had coliform present but no observerable NoV
## 308 outbreak occurred as a result of serving unheated frozen raspberries in sauce; longest incubation period was 119 h, not 99 h
## 309 secondary or co-primary cases could not be discerned form one another; cooked and raw mussels were both implicated as vehicles.
## 310 outbreak 3 of 14 reuters et. al; case # ">5"
## 311 Outbreak 6 of 14 Reuter
## 312 Outbreak 7 of 14 Reuter
## 313 Persons at risk is actually ">72" outbreak 8 of 14 Reuter
## 314 no control measures take, except for recommendations regarding hygiene and staff sick leave.
## 315 Outbreak 1 presented here, outbreak 2 (as defined by the author) will be presented as record database 31; no known vehicle of transmission. primarily elderly patients.
## 316 Related to another outbreak in the same hospital, (Russo 1997 article as well); econimic loss a lysis, this outbreak was deemed as seperate and the cases were considered primary.
## 317 0
## 318 Article stated "less than 24 hours" for shortest duration of symptoms
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 outbreak 6 of 12 Shinkawa
## 335 outbreak 8 of 12 shinkawa
## 336 Outbreak 12 of 12 Shinkawa
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 Only stateed that >30 were ill
## 344 0
## 345 0
## 346 Only stated that around 70 were ill
## 347 Only specified that around 75 were ill
## 348 Only specified that the number ill and at risk were around 104 and 620
## 349 Age of youngest infected was newborn
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 Article stated that more than 3 were symptomatic but did not specify
## 358 0
## 359 0
## 360 0
## 361
## 362
## 363
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 Mixed outbreak with Astrovirus, 5 had both of an unknown number at risk
## 388 Total cases is calculated from 205/859 US trainees and 9/15 Japanese trainees
## 389 outbreak 7 of 10 Baert 2009
## 390 outbreak 8 of 10 Baert 2009
## 391 outbreak 9 of 10 Baert 2009
## 392 0
## 393 0
## 394 Outbreak 11 of 26 Boxman 2009
## 395 Outbreak 12 of 26 Boxman 2009
## 396 outbreak 13 of 26 Boxman 2009
## 397 Outbreak 14 of 26 Boxman 2009
## 398 Outbreak 15 of 26 Boxman 2009
## 399 Outbreak 16 of 26 Boxman 2009
## 400 Outbreak 17 of 26 Boxman 2009
## 401 outbreak 18 of 26 Boxman 2009
## 402 No control data was available for this NoV study; consequently no specific food item could be implicated and no attack rate calculated.
## 403 0
## 404 0
## 405 0
## 406 Summer Camp A
## 407 Summer Camp B
## 408 crusie ship A
## 409 0
## 410 Rensselaer
## 411 Sullivan
## 412 Greene
## 413 0
## 414 Letter to the editor, very strict control measures, outbreak thus stoped early
## 415 6-Mar
## 416 6-Apr
## 417 6-May
## 418 3-Mar
## 419 0
## 420 Outbreak 5 of 8 Fretz 2005; ill girl likely index case of a family foodborne outbreak
## 421 Interesting challenges presented due to the psychiatric disposition of cases
## 422 Noted extensive and prolonged symptoms in the elderly population
## 423 outbreak 6 (4 of 5) Halperin
## 424 outbreak 7 (5 of 5) Halperin
## 425 Large " tural experiment" to discern reproductive number with and without hygiene control measures. in a camp setting
## 426 Outbreak 1 of 4 Hjertqvist 2006
## 427 outbreak 3 of 4 (outbreak 2 not included as rt-pcr was not done)
## 428 secondary transmission was primarilly via parents taking care of their ill children (hence person to person spread); chlori tion system later added to the fountain
## 429 Outbreak 1 of 47 Iritani 2000; Southampton reference strain similarity unknown percentage.
## 430 outbreak 2 of 47 Iritani 2000
## 431 outbreak 12 of 66 Kageyama 2004
## 432 outbreak 54 of 66 Kageyama 2004
## 433 outbreak 62 of 66 Kageyama 2004
## 434 2 results both from the capsid region being sequenced.
## 435 Outbreak 6 lysen paper
## 436 Outbreak 7 lysen paper
## 437 Outbreak 2003/8 Lysen
## 438 Outbreak 2003/09 Lysen
## 439 Outbreak 2003/10 Lysen
## 440 Outbreak 2003/11 Lysen
## 441 Outbreak 2004/12 Lysen
## 442 Outbreak 2005/6 Lysen
## 443 Outbreak 2005/07 Lysen
## 444 Outbreak 2006/11 Lysen
## 445 Outbreak 2006/13 Lysen
## 446 Outbreak 2006/15 Lysen
## 447 Outbreak 2006/22 Lysen
## 448 Outbreak 2006/23 Lysen
## 449 Outbreak 2006/24 Lysen
## 450 10 canteens affected, epi investigation focused on only 3 of these canteens; no specific vegetable or farm could be implicated because of the ture of the food processing system. food handler contami tion was thought not to have occured.
## 451 Unique example of norovirus outbreak associated with ready-to-eat meats contami ted at processing plant prior to packaging and wholesale distribution; employee sample taken 1 month after illness was NoV negative
## 452 Aersolization of viral vomitus caused mass NoV outbreak in primary school, with a high secondary attack rate. Hyperchlori tion in the envioronment was effective control measure.
## 453 Youngest case was 9 months; transmissioon route appeared to be through the contami ted water, two closest toilets had human excrement on floor; despite chlori tion, the water outlet well was RT-PCR positive for norovirus up to 8 months after outbreak
## 454 Outbreak E3 out of 18 norovirus outbreak from drinking water; water samples were negative
## 455 Outbreak E4 of 18 outbreaks of norovirus in drinking water; water samples were negative
## 456 Outbreak E8 out of 18 norovirus outbreaks from drinking water, same GI.3 strain detected in water samples
## 457 Outbreak E10 out of 18 norovirus outbreaks from drinking water; GI.3 also detected in water samples
## 458 Outbreak E16 of 18 norovirus outbreaks from drinking water, GI.6 detected in patient and water samples
## 459 Data presented for hotel attendees of graduation dinner, NLV from same clade as that of the sushi restraurant, index case suspected to be a bus boy involved in prepping for the dinner with the senior ma ger who greeted guests
## 460 Common source of infection suggested, fecal contami tion of drinking water systems suspected to have arisen from connection with non-drinking water systems because of damaged pipework
## 461 desig ted Case 1 in article; outbreak took place in Sakai City, Osaka, Japan
## 462 desig ted Case 2 in paper; both children and staff were ill; outbreak occurred in Sakai City
## 463 desig ted Outbreak 1 in paper
## 464 desig ted Outbreak 2 in paper; involved staff and the guests of 5 wedding functions that had taken place over a 6-day period
## 465 this outbreak highlights the virulence of NoV as it can withstand chlorine based disinfection
## 466 Outbreak 4 of 14 Reuters
## 467 Outbreak 5 of 14 Reuter
## 468 Outbreak 9 of 14 Reuter
## 469 Matched case control study only accounted for 1 day of the several week long outbreak at a hotel resort in Italy; no sample of oyster or ice taken for lab based linkage
## 470 0
## 471 outbreak 9 of 12 shinkawa
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 Outbreak aboard US vy ship in inter tio l waters, but after having visited Korea, Singapore, and most recently Thailand. No source, or vehicle of transmission was determined.
## 480 US vy ship last stopped in Malaysia, no source or vehicle found, thought to be contracted at port and brought aboard
## 481 0
## 482 outbreak from bbq A; associated with food from catering company vivancos 2009
## 483 outbreak from bbq B Vivancos 2009
## 484 0
## 485 0
## 486 Massive city wide outbreak; data also available for matched-case-control study of sub-population; the 10% attack rate is an estimate.
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 outbreak group A
## 493 outbreak group B
## 494 outbreak group C
## 495 0
## 496
## 497
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 Caterer A in Ohio was likely responsible for the outbreaks from the "boxed banquets" disperesed to car dealerships around the country
## 513 Well water and potentially ill-foodhandlers promoted the spread of NoV at 3 lodges, with high rates of cross over of guests, only lodge A was implicated.
## 514 outbreak 1 of 10 Baert 2009 foodborne NoV outbreak.
## 515 outbreak 2 of 3 for pubmed id 10804152
## 516 Outbreak 1 of 26 Boxman 2009; all outbreaks from 2006, the netherlands, primarily foodborne, environmental swabs used as a NoV detection device.
## 517 Outbreak 2 of 26 Boxman 2009
## 518 Outbreak 3 of 26 Boxman 2009
## 519 Outbreak 4 of 26 Boxman 2009
## 520 Outbreak 5 of 26 Boxman 2009
## 521 Outbreak 6 of 26 Boxman 2009
## 522 Outbreak 25 of 26 Boxman 2009
## 523 Outbreak 26 of 26 Boxman 2009
## 524 u ble to determine number of individuals at risk
## 525 0
## 526 Index case a nurse, primary infections to other nursing staff during extended visiting/working b/c of snowstorm, followed by transmission to patients; other ward infected with a different NoV strain concurrently;
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 Onondaga
## 534 Warren
## 535 Dutchess 1
## 536 Gowanda
## 537 Glendale
## 538 0
## 539 0
## 540 0
## 541 Hosp A ward 6A
## 542 Hosp A ward 3A
## 543 Hosp A ward 2A
## 544 Hosp A ward 5E
## 545 Hosp E
## 546 Hosp C
## 547 0
## 548 This outbreak comes from "other notified foodborne outbreaks"; was actually the result of 13 outbreaks, but was reported as 1, with a common source and data represnting all 13 outbreaks (implied)
## 549 0
## 550 Outbreak 1 of 8 Fretz 2005; This intial foodborne outbreak lead to 2 more consecutive outbreaks at the same chalet, among different groups of skiers.
## 551 Outbreak 2 of 8 Fretz 2005; the second outbreak in a consequtive series of 3 in a ski chalet.
## 552 Outbreak 3 of 8 Fretz 2005; 3 of 3 consequitive ski chalet outbreaks.
## 553 Outbreak 4 of 8 Fretz 2005; Case number extrapolated from a selection of physicians, schools, and nursing homes; this extroploation was validated via a selection of pharmacy records.
## 554 Outbreak 6 of 8 Fretz 2005; outbreak 1 of 3 associated with hospital and nursing home.
## 555 Outbreak 7 of 8 Fretz 2005; outbreak 2 of 3 associated with hospital/nursinghome.
## 556 Multiple clusters of outbreaks occuring in different departments of the hospital; department specific case numbers and attack rates available, economic a lysis completed as well.
## 557 Many strains of NoV carried by one batch of contami ted oysters. Oysters are already rutinely tested for many pathogens before shipment, why not NoV?
## 558 Ill person from this outbreak was admitted to a different UK hospital which created another outbreak (entered next) of the same strain of NoV; new Genotype II strain Lymington med after the hospital.
## 559 outbreak related to record 4 outbreak; same strain of NoV; index case in this outbreak was a case in the last outbreak.
## 560 Improper foodhandling and related hygiene was implicated in this foodborne outbreak at an Israel military base
## 561 Outbreak 4 (2 of 5) Halperin
## 562 Outbreak 1 of 2 Halperin 2008 israeli military setting, all cases male 18-22 years old
## 563 Outbreak 2 of 2 Halperin 2008
## 564 Outbreak no. 3 Hamano 2005
## 565 Outbreak no. 4 Hamano 2005
## 566 Outbreak no. 7 Hamano
## 567 outbreak no. 8 Hamano 2005
## 568 Outbreak no. 9 Hamano 2005
## 569 Outbreak no. 12 Hamano 2005
## 570 outbreak no. 13 hamano 2005
## 571 outbreak no. 14 hamano 2005
## 572 outbreak no. 16 Hamano 2005
## 573 outbreak no. 17 Hamano 2005
## 574 outbreak no. 18 Hamano 2005
## 575 outbreak no. 20 Hamano 2005
## 576 outbreak no. 24 Hamano 2005
## 577 outbreak no. 25 Hamano 2005
## 578 outbreak no. 26 Hamano 2005
## 579 Outbreak no. 28 Hamano 2005
## 580 outbreak no. 29 Hamano 2005
## 581 outbreak no. 30 Hamano 2005
## 582 outbreak no. 31 Hamano 2005
## 583 outbreak no. 32 Hamano 2005
## 584 outbreak no. 36 Hamano 2005
## 585 outbreak no. 37 Hamano 2005
## 586 outbreak no. 38 Hamano 2005
## 587 outbreak no. 39 Hamano 2005
## 588 outbreak no. 40 Hamano 2005
## 589 outbreak no. 41 Hamano 2005
## 590 outbreak no. 42 Hamano 2005
## 591 Outbreak no. 43 Hamano 2005
## 592 outbreak no. 44 Hamano 2005
## 593 Sewage tank overflow into the water supply caused many cases with diverse etiology of illness.
## 594 No source or vehicle of transmission discovered, significant secondary transmission from child to parent
## 595 outbreak 3 of 47 Iratani 2000
## 596 outbreak 4 of 47 Iritani 2000
## 597 outbreak 5 of 47 Iritani 2000
## 598 outbreak 6 of 47 Iritani 2000
## 599 outbreak 7 of 47 Iritani 2000
## 600 outbreak 8 of 47 Iritani 2000
## 601 outbreak 9 of 47 Iritani 2000
## 602 outbreak 10 of 47 Iritani 2000
## 603 outbreak 11 of 47 Iritani 2000
## 604 outbreak 12 of 47 Iritani 2000
## 605 outbreak 13 of 47 Iritani 2000
## 606 outbreak 14 of 47 Iritani 2000
## 607 outbreak 15 of 47 Iritani 2000
## 608 Outbreak 16 of 47 Iritani 2000
## 609 outbreak 17 of 47 Iritani 2000
## 610 Outbreak 22 of 47 Iritani 2000
## 611 outbreak 23 of 47 Iritani 2000
## 612 outbreak 24 of 47 Iritani 2000
## 613 outbreak 25 of 47 Iritani 2000
## 614 outbreak 26 of 47 Iritani 2000
## 615 outbreak 27 of 47 Iritani 2000
## 616 Outbreak 28 of 47 Iritani 2000
## 617 Outbreak 29 of 47 Iritani 2000
## 618 outbreak 30 of 47 Iritani 2000
## 619 outbreak 31 of 47 Iritani 2000
## 620 outbreak 32 of 47 Iritani 2000
## 621 Outbreak 33 of 47 Iritani 2000
## 622 Outbreak 34 of 47 Iritani 2000
## 623 Outbreak 42 of 47 Iritani 2000
## 624 Outbreak 43 of 47 Iritani 2000
## 625 Outbreak 44 of 47 Iritani 2000
## 626 Outbreak 45 of 47 Iritani 2000
## 627 Outbreak 46 of 47 Iritani 2000
## 628 Outbreak 1 of 17 Iritani 2002; probing method used as opposed to G1 and G2 primers
## 629 Outbreak 2 of 17 Iritani 2002
## 630 Outbreak 3 of 17 Iritani 2002
## 631 outbreak 4 of 17 Iritani 2002
## 632 Outbreak 5 of 17 Iritani 2002
## 633 Outbreak 6 of 17 Iritani 2002
## 634 Outbreak 7 of 17 Iritani 2002
## 635 Outbreak 8 of 17 Iritani 2002
## 636 Outbreak 9 of 17 Iritani 2002
## 637 Outbreak 10 of 17 Iritani 2002
## 638 outbreak 11 of 17 Iritani 2002
## 639 Outbreak 12 of 17 Iritani 2002
## 640 Outbreak 13 of 17 Iritani 2002
## 641 Outbreak 14 of 17 Iritani 2002
## 642 Outbreak 15 of 17 Iritani 2002
## 643 Outbreak 16 of 17 Iritani 2002
## 644 Outbreak could have been prevented by excluding ill child from play group, proper hygiene did not stop the spread of NoV due to low infectious dose
## 645 incubation, duration of symptoms data available but based on specific wards or healthcare worker vs. patient, cost associated with outbreak also calculated $657,644
## 646 Outbreak 1 of 66 from Kageyama 2004; all outbreaks from Saitama, Japan; varying settings, modes of transmission, and attack rates. outbreaks occured between 1997-2002
## 647 outbreak 2 of 66 Kageyama 2004
## 648 outbreak 5 of 66 Kageyama 2004
## 649 Outbreak 7 of 66 Kageyama 2004
## 650 outbreak 8 of 66 Kageyama 2004
## 651 Outbreak 9 of 66 Kageyama 2004
## 652 outbreak 10 of 66 Kageyama 2004
## 653 Outbreak 13 of 66 Kageyama 2004
## 654 outbreak 14 of 66 Kageyama 2004
## 655 outbreak 15 of 66 Kageyama 2004
## 656 outbreak 18 of 66 Kageyama 2004
## 657 outbreak 19 of 66 Kageyama 2004
## 658 outbreak 21 of 66 Kageyama 2004
## 659 outbreak 22 of 66 Kageyama 2004
## 660 Outbreak 23 of 66 Kageyama 2004
## 661 outbreak 24 of 66 Kageyama 2004
## 662 outbreak 25 of 66 Kageyama 2004
## 663 outbreak 27 of 66 Kageyama 2004
## 664 outbreak 28 of 66 Kageyama 2004
## 665 Outbreak 30 of 66 Kageyama 2004
## 666 Outbreak 31 of 66 Kageyama 2004
## 667 outbreak 32 of 66 Kageyama 2004
## 668 Outbreak 33 of 66 Kageyama 2004
## 669 outbreak 34 of 66 Kageyama 2004
## 670 outbreak 35 of 66 Kageyama 2004
## 671 outbreak 46 of 66 Kageyama 2004
## 672 outbreak 52 of 66 Kageyama 2004
## 673 outbreak 53 of 66 Kageyama 2004
## 674 outbreak 55 of 66 Kageyama 2004
## 675 outbreak 56 of 66 Kageyama 2004
## 676 outbreak 57 of 66 Kageyama 2004
## 677 outbreak 60 of 66 Kageyama 2004
## 678 outbreak 64 of 66 Kageyama 2004; outbreak 65 has no case info and will not be entered.
## 679 No source found, potentially municiple water supply as it was not tested for viruses'; however no coliform were found in the water.
## 680 Staff and patient specific attack rates mentioned; prolonged NoV outbreak 12/2006 - 06/2007; community based outbreak the initial source; 9 deaths associated with the outbreak all deaths had co-morbidities.
## 681 no stool samples from food handlers, and no genotyping of the NoV
## 682 Outbreak attributed to ice and not water supply. Ice machines were not cleaned after first cruise had immediate outbreak
## 683 Novel strain "Basel" identified; similarities with Lordsdale.
## 684 Universtiy foodborne (salad vehicle) outbreak with secondary person-to-person transmission in the dorms; cases were almost entirely freshmen.
## 685 catered lunch to 11 companies resulted in NoV outbreak, could not be determined if foodhandlers were to blame, new immunomagnetic technique to test food itmes for NoV
## 686 Municipal water taken from Lake Kermajarvi, service station and restaurant in Karvio release treated sewage into lake, GGI only detected in patients, therefore concomitant person-to-person transmission is possibility
## 687 4 seperate school groups all staying at the same hostel for a ski trip became infected with NoV after an index case vomited on the bus ride; aerosolized the virus.
## 688 prolonged NoV outbreak at a rehabilition center in Finland, over a 2.5 month time span (Dec. 1999 Feb. 2000); constantly evolving patient base (every 1-3 weeks)
## 689 Plenty of cluster specific data (i.e. incubation period, duration of illness etc.) especially for the largest cluster in Paris. Common source oyster associated NoV outbreak spread across France and Italy.
## 690 This are the combined statistics for a total of 38 clusters, contami tion of oysters linked to flooding event close to shellfish production lagoon; first time aichi virus identified in oyster samples
## 691 outbreak 1 in article; three cases relapsed. One patient died, with gastroenteritis the precipitating event of his fi l illness
## 692 lysen 2; capsid and polymerase both resulted in G1.3
## 693 Outbreak 2003/15 Lysen
## 694 Outbreak 2003/16 Lysen
## 695 Outbreak 2004/01 Lysen
## 696 Outbreak 2004/03 Lysen
## 697 Outbreak 2004/04 Lysen
## 698 Outbreak 2004/05 Lysen
## 699 Outbreak 2004/6 Lysen
## 700 Outbreak 2004/7 Lysen
## 701 Outbreak 2004/8 Lysen
## 702 Outbreak 2005/13
## 703 Outbreak 2006/ 2 Lysen
## 704 Outbreak 2006/03 Lysen
## 705 Outbreak 2006/04
## 706 Outbreak 2006/21 Lysen
## 707 Outbreak consistent with airborne transmission, index case ill during dinner with non-projectile vomiting, significant relationship between distance from vomiter and risk of becoming ill
## 708 Third outbreak in same Mediterranean-restaurant; although NLV was identified in all three outbreaks, they are different strains between outbreaks indicating infected guest as the source of contami tion versus the restaurant setting
## 709 secondary cases documented (no case number), propulgation from 1st to 2nd floor, several fatalities, physical dependance and vomitting were among risk factors.
## 710 Outbreak E5 out of 18 norovirus outbreaks from drinking water; water samples were negative
## 711 Outbreak E6 out of 18 norovirus outbreaks from drinking water; same GI.3 strain found in water samples
## 712 Outbreak E11 out of 18 norovirus outbreaks from drinking water; GII.4 detected in patients; GII.4 and GII.1 detected in water samples
## 713 Outbreak E14 out of 18 norovirus outbreaks from drinking water, GII.4 new variant found in patient and water samples
## 714 rapid control measures taken, outbreak mostly affecting elderly ward of hospital
## Path2_2
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 C. Jejuni
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 Aeromo s hydrophila, S. aureus
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 E. coli O157:H39, E. coli O7:H15
## 87 0
## 88 Clostridium difficile toxin, adenovirus
## 89 0
## 90 0
## 91 0
## 92 0
## 93 astrovirus
## 94 0
## 95 0
## 96 0
## 97 0
## 98 Campylobactor spp.
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 Vibrio parahaemolyticus
## 105 ASV
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 Staphylococcus Aureus
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 Astrovirus, Rotavirus, Adenovirus
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 C. Difficile
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 rotavirus, sapovirus
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 rotavirus
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 Clostridium difficile
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 rotavirus genotype G9
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 Kobuvirus, astrovirus
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 Campylobacter jejuni
## 308 Clostridium perfringens, S. aureus
## 309 0
## 310 enterovirus
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 Adenovirus
## 359 0
## 360 0
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 Astrovirus
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 Clostridium Perfringens
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 Salmonella mbandaka, Campylobacter, Staphylococcus aureus
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 Giardia lambia
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 Astrovirus, E. coli detected in wading pool water at time of outbreak
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 Campylobacter sp. and rotavirus
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 Campylobacter
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 rotavirus, adenovirus
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 Cryptospiridium, rotavirus, camplobactor
## 594 E. coli O26:H11 (VT1)
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 Aichi virus, Enterovirus, Astrovirus type 8, Rotavirus-A
## 691 Clostridium difficile
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## Setting_2
## 1 0
## 2 0
## 3 Buffet
## 4 Restaurant
## 5 Buffet
## 6 take out restaurant
## 7 Buffet
## 8 Restaurant
## 9 130 bed nursing home for the elderly in el grao de castellon
## 10 0
## 11 Clusters related to oysters
## 12 Catered Luncheon
## 13 University Dorm
## 14 Cruise Ship
## 15 Crusie Ship
## 16 Cruise Ship
## 17 Cruise Ship
## 18 Hurricane Katri relief shelter
## 19 temporary shelter
## 20 US vy Aircraft Carrier
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 Multiple outbreak settings, primarilly associated with food at festivals, dinners, banquets
## 35 Luncheon
## 36 catered food at 3 schools
## 37 0
## 38 Catered farewell party in a nurse hostel
## 39 0
## 40 Recreatio l watersport center
## 41 3 wings
## 42 Restaurant - wedding banquet
## 43 home for the handicapped
## 44 high school dorm
## 45 Restaurant
## 46 Restaurant
## 47 Restaurant
## 48 university setting
## 49 Restaurant
## 50 0
## 51 Cruise ship
## 52 Restaurant
## 53 private home
## 54 private home
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 2 church suppers
## 62 Consumption of oysters occurred in restaurants and private homes
## 63 0
## 64 Factory manufacturing electrical appliances
## 65 SRO Hospital in Langenthal, Switzerland; 229-bed
## 66 Reception at a medical facility
## 67 hotel
## 68 rehabilitation ward for older people
## 69 Restaurant
## 70 Private Home
## 71 Restaurant
## 72 Restaurant
## 73 Restaurant
## 74 0
## 75 Restaurant
## 76 0
## 77 Restaurant
## 78 Restaurant
## 79 Restaurant
## 80 Restaurant
## 81 0
## 82 Restaurant
## 83 Catering services
## 84 Restaurant
## 85 Restaurant
## 86 Mediterranean restaurant
## 87 Mediterranean-style restaurant
## 88 5 wards in university hospital
## 89 Community
## 90 Primary School in Wakayama Prefecture
## 91 nursery school
## 92 nursing home for elderly adults
## 93 mother-and-child health clinic
## 94 Nursing care center in Kyoto
## 95 Hospital in Kyoto
## 96 Hospital in Hyogo
## 97 Saloon
## 98 2 nurseries, and 1 school
## 99 0
## 100 Primary school
## 101 0
## 102 Heart surgery
## 103 Primary school
## 104 Restaurant
## 105 Research ship
## 106 0
## 107 0
## 108 0
## 109 Kindergarten
## 110 Catering service
## 111 Summer camp
## 112 Gathering catered food
## 113 School catered food
## 114 Company catered food
## 115 Care unit of inter l medicine
## 116 Mental health care facility
## 117 0
## 118 0
## 119 Geriatric ward
## 120 Pediatric ward
## 121 Cruise ship
## 122 Cruise ship
## 123 Cruish ship
## 124 Cruish ship
## 125 Cruise ship
## 126 0
## 127 Wedding
## 128 Restaurant
## 129 Community
## 130 0
## 131 Mental nursing center
## 132 Nursing home and handicap facility
## 133 Shelter
## 134 canteen at manufacturing company
## 135 University
## 136 University
## 137 University
## 138 0
## 139 0
## 140 0
## 141 0
## 142 Wedding Reception
## 143 Airplane flight
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151 restaurant
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 camp
## 167 catering service at work
## 168 Restaurant
## 169 private home
## 170 Military Hospital
## 171 buffet
## 172 lunchroom
## 173 cruise ship
## 174 cruise ship
## 175 6 Nursing homes
## 176 Hostel
## 177 0
## 178 Hostel
## 179 Military field hospital
## 180 school staff luncheon
## 181 sandwich shop/caterer
## 182 sandwich shop/caterer
## 183 Summer Camp
## 184 Restaurant
## 185 Cruise Ship
## 186 LTCF
## 187 0
## 188 University Deli
## 189 0
## 190 0
## 191 0
## 192 Hotel
## 193 0
## 194 majority of cases from the nursing home some from the hospital
## 195 Catered wedding banquets
## 196 Royal British fleet ship
## 197 Multiple day care centers all receiving the same catered food
## 198 28-bed mentally infermary
## 199 0
## 200 0
## 201 Office
## 202 0
## 203 0
## 204 Restaurant
## 205 Restaurant
## 206 primary school
## 207 Restaurant
## 208 athletic meeting
## 209 Restaurant
## 210 primary school
## 211 Cruise ship
## 212 Restaurant
## 213 Restaurant
## 214 Hotel
## 215 0
## 216 Restaurant
## 217 Restaurant
## 218 Restaurant
## 219 Restaurant
## 220 0
## 221 Elementary school
## 222 0
## 223 Restaurant
## 224 Restaurant
## 225 Restaurant
## 226 Restaurant
## 227 Private home
## 228 Restaurant
## 229 Restaurant
## 230 Kindergarten
## 231 Hotel
## 232 Restaurant
## 233 Kindergarten
## 234 Hotel
## 235 0
## 236 Restaurant
## 237 0
## 238 Kindergarten
## 239 Restaurant
## 240 0
## 241 0
## 242 Hotel
## 243 Houseboats on a lake
## 244 Restaurant
## 245 Restaurant
## 246 Restaurant
## 247 Restaurant
## 248 Restaurant
## 249 Restaurant
## 250 Restaurant
## 251 Restaurant
## 252 private home
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 hotel
## 261 hotel
## 262 Hotels
## 263 Hotel
## 264 VA medical center 357-bed
## 265 Community wide
## 266 0
## 267 AGED-CARE RESIDENTIAL HOSTEL
## 268 Health Resort
## 269 0
## 270 Restaurant
## 271 Cafe
## 272 Catering service
## 273 Catering service
## 274 Private Home
## 275 Catering service
## 276 Catering service
## 277 Restaurant
## 278 Restaurant
## 279 Restaurant
## 280 City of Apulia
## 281 community
## 282 Community
## 283 Farm for guests
## 284 Community
## 285 Holiday camp
## 286 Community
## 287 Cruise Ship
## 288 Indian restaurant in Vancouver
## 289 Japanese Sushi Buffet in Vancouver
## 290 Restaurant
## 291 Restaurant
## 292 Evacuee shelter
## 293 combined activity camp and conference center in Stockholm County
## 294 restaurant
## 295 large hospital
## 296 large hospital
## 297 medical ward in a district general hospital
## 298 0
## 299 regimental reunion
## 300 leisure center
## 301 Fast Food Restaurant in Osaka
## 302 Hospital in Yamaguchi
## 303 Nursing care center in Tokyo
## 304 Fast food restaurant in Tokyo
## 305 Nursing care center in Hokkaido
## 306 Nursing care center in Akita
## 307 Appalachian Trail
## 308 local canteens of a large company
## 309 diverse picnic and restaurant settings
## 310 0
## 311 Chronic psychiatric ward
## 312 8 wards and services
## 313 Motion rehabilitation ward
## 314 0
## 315 extended care unit, ward A
## 316 acute ward with elderly patients
## 317 Cafeteria
## 318 Hotel
## 319 0
## 320 0
## 321 0
## 322 0
## 323 Rehabilitation center
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 School in Kagoshima
## 335 Bakery
## 336 Hotel
## 337 0
## 338 0
## 339 0
## 340 0
## 341 Food catered to events in a village
## 342 Restaurant
## 343 Restaurant
## 344 Company catered food
## 345 Company catered food
## 346 School cafeteria
## 347 Jail
## 348 Elementary school
## 349 0
## 350 Restaurant
## 351 Function, didn't specify
## 352 0
## 353 Wedding
## 354 Community setting
## 355 Cruise ship
## 356 Retirement Home
## 357 Senior High School
## 358 Education center
## 359 College
## 360 Restauarant
## 361
## 362
## 363
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 Daycare Center
## 388 0
## 389 catering service in home for disabled persons
## 390 camp
## 391 catered breakfast at work
## 392 0
## 393 Resort
## 394 Inter tio l ferry
## 395 take out restaurant
## 396 cruise ship
## 397 Restaurant
## 398 summer camp
## 399 take out restaurant
## 400 Bakery
## 401 take out restaurant
## 402 Restaurant
## 403 Bakery
## 404 0
## 405 Hostel
## 406 Summer Camp A
## 407 Summer Camp B
## 408 Cruise Ship
## 409 Family Reunion
## 410 School Camp
## 411 Summer Camp
## 412 Summer camp
## 413 Pediatrics
## 414 633-bed extended care hospital
## 415 0
## 416 Restaurant
## 417 0
## 418 Households (4)
## 419 0
## 420 Family banquet
## 421 University of Alberta, Psychiatric ward of the
## 422 0
## 423 0
## 424 0
## 425 Jamboree camp
## 426 Private home
## 427 0
## 428 recreatio l fountain at a park
## 429 elementary school
## 430 0
## 431 Restaurant
## 432 0
## 433 hotel
## 434 0
## 435 Restaurant
## 436 0
## 437 Restaurant
## 438 Catering service
## 439 Restaurant
## 440 Catering service
## 441 Restaurant
## 442 Restaurant
## 443 Reacratio l Water
## 444 Recreatio l Water
## 445 0
## 446 Catering service
## 447 Recreatio l Water
## 448 Recreatio l water
## 449 0
## 450 10 workplace canteens all with same food
## 451 River rafters on the Grand Canyon
## 452 primary school and nursery
## 453 outdoor wading pool in recreatio l area of Helsinki
## 454 Rental camp cottage
## 455 camp on island
## 456 Spa
## 457 Private household
## 458 Rental cottage
## 459 Dowtown hotel in Vancouver B.C.
## 460 Holiday resort in Central Italy
## 461 0
## 462 nursery school
## 463 ferry ship
## 464 country hotel
## 465 Wedding reception
## 466 0
## 467 Private family home
## 468 Children's Camp
## 469 Hotel
## 470 Lake
## 471 Restaurant
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 Banquet
## 479 USS Peleliu assult ship
## 480 USS Constellation ship
## 481 Cruise
## 482 Barbeque
## 483 catered bbq
## 484 0
## 485 Hotel
## 486 capital city, Podgorica
## 487 0
## 488 Cruise ship
## 489 Cruise ship
## 490 Catered Birthday
## 491 Catered meal
## 492 camp
## 493 camp
## 494 camp
## 495 camp
## 496
## 497
## 498 hotel
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 Boxed Banquet
## 513 vacation lodges
## 514 recreation center
## 515 0
## 516 reception
## 517 buffet
## 518 Restaurant
## 519 Restaurant
## 520 Restaurant
## 521 Restaurant
## 522 camping
## 523 Buffet
## 524 Resort Hotel
## 525 Eldercare Facility
## 526 medical surgical ward
## 527 Ski Resort
## 528 School Camp
## 529 University
## 530 Pool @ swimming club
## 531 restaurant/caterer
## 532 0
## 533 Ski Resort
## 534 0
## 535 Delicatessen
## 536 0
## 537 0
## 538 Hotel
## 539 0
## 540 Catered buffet for an employer
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 4 districts: H_rault, Ile de France, Aude and
## 549 Concert Hall
## 550 Ski chalet
## 551 Ski chalet
## 552 Ski Chalet
## 553 2 communities
## 554 0
## 555 majority of cases from the hospital, some from the nursing home
## 556 176-bed hospital
## 557 Restaurant
## 558 86-bed hospital
## 559 908-bed teaching hospital
## 560 Military base
## 561 0
## 562 0
## 563 0
## 564 Private home
## 565 Restaurant
## 566 Home party
## 567 Restaurant
## 568 Office
## 569 Private home
## 570 Private home
## 571 Restaurant
## 572 home for the handicapped
## 573 Restaurant
## 574 Restaurant
## 575 primary school
## 576 Restaurant
## 577 Restaurant
## 578 Restaurant
## 579 home for the elderly
## 580 Restaurant
## 581 0
## 582 Restaurant
## 583 Restaurant
## 584 Restaurant
## 585 Restaurant
## 586 Office
## 587 pre-school day nursery
## 588 preschool day nursery
## 589 home for the elderly
## 590 Restaurant
## 591 Restaurant
## 592 primary school
## 593 Ski resort, complete with 2 restaurants, day care, hotel etc.
## 594 Kindergarten
## 595 Restaurant
## 596 Restaurant
## 597 private home
## 598 private home
## 599 Restaurant
## 600 elementary school
## 601 Restaurant
## 602 Restaurant
## 603 0
## 604 Hotel
## 605 Restaurant
## 606 Restaurant
## 607 Restaurant
## 608 Restaurant
## 609 mental health instititue
## 610 Restaurant
## 611 cramming school
## 612 0
## 613 0
## 614 0
## 615 0
## 616 Restaurant
## 617 private home
## 618 Restaurant
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 Restaurant
## 626 Restaurant
## 627 0
## 628 Restaurant
## 629 0
## 630 Restaurant
## 631 Hotel
## 632 Restaurant
## 633 0
## 634 Hotel
## 635 Hotel
## 636 Hotel
## 637 0
## 638 Restaurant
## 639 Restaurant
## 640 Restaurant
## 641 Restaurant
## 642 Restaurant
## 643 0
## 644 Private home - infant play group
## 645 John Hopkins Hospital 946 bed,
## 646 Restaurant
## 647 Restaurant
## 648 Restaurant
## 649 Restaurant
## 650 Restaurant
## 651 Restaurant
## 652 Restaurant
## 653 Restaurant
## 654 Restaurant
## 655 Restaurant
## 656 private home
## 657 private home
## 658 private home
## 659 Restaurant
## 660 Restaurant
## 661 Restaurant
## 662 Restaurant
## 663 Restaurant
## 664 Restaurant
## 665 Restaurant
## 666 Restaurant
## 667 Restaurant
## 668 Restaurant
## 669 Restaurant
## 670 Restaurant
## 671 0
## 672 dorm
## 673 0
## 674 0
## 675 0
## 676 0
## 677 Hotel
## 678 hotel
## 679 Samokov, a region with 35,000 inhabitants in western Bulgaria,
## 680 Tertiary care
## 681 catered chrismtas party
## 682 cruise ship
## 683 university hospital 1200-bed tertiary care
## 684 Within a university setting, the freshmen dining hall was implicated
## 685 11 seperate workspaces all with the same catered lunch
## 686 Hei vesi, Finnish Municipality
## 687 Youth Hostel Salzburg, Austria
## 688 Rehabilitation center
## 689 Multiple settings, 13 clusters in France (primarily private homes), in Italy private home or restaurant
## 690 Oysters consumed in private homes and also at a restaurant
## 691 rehabilitation wards for older people
## 692 0
## 693 Restaurant
## 694 Restaurant
## 695 Restaurant
## 696 Restaurant
## 697 Restaurant
## 698 Catering service
## 699 Restaurant
## 700 Restaurant
## 701 Private Home
## 702 Private Home
## 703 Restaurant
## 704 Restaurant
## 705 Private Home
## 706 Restaurant
## 707 Hotel Restaurant
## 708 Buffet-style dinner at Mediterranean-style restaurant
## 709 geriatrict long-term care facility
## 710 Community
## 711 Factory area
## 712 Community
## 713 Guest house
## 714 district general hospital
## category1 strainothergg2c4 gg2c4 Vomit IncInd SymInd
## 1 School/Daycare 0 Yes 1 0 0
## 2 Foodservice 0 1 0 0
## 3 Foodservice 0 Yes 1 0 0
## 4 Foodservice 0 1 0 0
## 5 Foodservice 0 Yes 1 0 0
## 6 Foodservice 0 1 0 0
## 7 Foodservice 0 1 0 0
## 8 Foodservice 0 1 0 0
## 9 Hospital/Nursi 0 Yes 1 0 0
## 10 Unknown 0 1 0 0
## 11 Other 0 1 0 0
## 12 Foodservice 0 1 0 0
## 13 School/Daycare 0 1 0 0
## 14 Leisure 0 1 0 0
## 15 Leisure 0 1 0 0
## 16 Leisure 0 1 0 0
## 17 Leisure 0 1 0 0
## 18 Other 0 1 0 0
## 19 Leisure 0 Yes 1 0 0
## 20 Other 0 1 0 0
## 21 Hospital/Nursi 0 Yes 0 0 0
## 22 Hospital/Nursi 0 Yes 0 0 0
## 23 Hospital/Nursi 0 Yes 0 0 0
## 24 Hospital/Nursi 0 Yes 0 0 0
## 25 Hospital/Nursi 0 Yes 0 0 0
## 26 Hospital/Nursi 0 Yes 0 0 0
## 27 Hospital/Nursi 0 Yes 0 0 0
## 28 Hospital/Nursi 0 Yes 0 0 0
## 29 Hospital/Nursi 0 Yes 0 0 0
## 30 Hospital/Nursi 0 Yes 0 0 0
## 31 Hospital/Nursi 0 Yes 0 0 0
## 32 Hospital/Nursi 0 Yes 0 0 0
## 33 Hospital/Nursi 0 Yes 0 0 0
## 34 Foodservice 0 0 0 0
## 35 Foodservice 0 Yes 0 0 0
## 36 Foodservice 0 Yes 1 0 0
## 37 School/Daycare 0 Yes 1 0 0
## 38 Foodservice 0 1 0 0
## 39 Hospital/Nursi 0 1 0 0
## 40 Leisure 0 Yes 1 0 1
## 41 Hospital/Nursi 0 1 0 0
## 42 Foodservice 0 0 0 0
## 43 Hospital/Nursi 0 0 0 0
## 44 School/Daycare 0 0 0 0
## 45 Foodservice 0 0 0 0
## 46 Foodservice 0 1 0 0
## 47 Foodservice 0 1 0 0
## 48 School/Daycare 0 1 0 0
## 49 Foodservice 0 1 0 0
## 50 Unknown 0 1 0 0
## 51 Leisure 0 Yes 0 0 0
## 52 Foodservice 0 Yes 0 0 0
## 53 Other 0 0 0 0
## 54 Other 0 0 0 0
## 55 School/Daycare 0 0 0 0
## 56 School/Daycare 0 Yes 0 0 0
## 57 School/Daycare 0 0 0 0
## 58 School/Daycare 0 0 0 0
## 59 Foodservice 0 Yes 0 0 0
## 60 Foodservice 0 0 0 0
## 61 Leisure 0 1 0 0
## 62 Other 0 1 0 0
## 63 Unknown 0 1 0 0
## 64 Foodservice 0 1 0 0
## 65 Hospital/Nursi 0 Yes 1 0 0
## 66 Foodservice 0 0 0 0
## 67 Leisure 0 1 0 0
## 68 Hospital/Nursi 0 1 0 0
## 69 Foodservice 0 Yes 0 0 0
## 70 Other 0 0 0 0
## 71 Foodservice 0 0 0 0
## 72 Foodservice 0 Yes 0 0 0
## 73 Foodservice 0 0 0 0
## 74 Unknown 0 0 0 0
## 75 Foodservice 0 0 0 0
## 76 Unknown 0 0 0 0
## 77 Foodservice 0 0 0 0
## 78 Foodservice 0 0 0 0
## 79 Foodservice 0 Yes 0 0 0
## 80 Foodservice 0 Yes 0 0 0
## 81 Hospital/Nursi 0 Yes 0 0 0
## 82 Foodservice 0 Yes 0 0 0
## 83 Foodservice 0 Yes 0 0 0
## 84 Foodservice 0 0 0 0
## 85 Foodservice 0 0 0 0
## 86 Foodservice 0 1 0 0
## 87 Foodservice 0 1 0 0
## 88 Hospital/Nursi 0 Yes 1 0 0
## 89 Other 0 0 0 0
## 90 School/Daycare 0 1 0 0
## 91 School/Daycare 0 1 0 0
## 92 Hospital/Nursi 0 1 0 0
## 93 Hospital/Nursi 0 1 0 0
## 94 Hospital/Nursi 0 Yes 1 0 0
## 95 Hospital/Nursi 0 Yes 1 0 0
## 96 Hospital/Nursi 0 Yes 1 0 0
## 97 Foodservice 0 1 0 0
## 98 School/Daycare 0 Yes 0 0 0
## 99 Hospital/Nursi 0 1 0 0
## 100 School/Daycare 0 1 0 0
## 101 Hospital/Nursi 0 1 0 0
## 102 Hospital/Nursi 0 1 0 0
## 103 School/Daycare 0 1 0 0
## 104 Foodservice 0 1 0 0
## 105 Other 0 Yes 1 0 1
## 106 Hospital/Nursi 0 Yes 1 0 0
## 107 Unknown 0 0 0 0
## 108 Unknown 0 0 0 0
## 109 School/Daycare 0 0 0 0
## 110 Foodservice 0 0 0 0
## 111 Leisure 0 1 0 0
## 112 Foodservice 0 1 0 0
## 113 Foodservice 0 1 0 0
## 114 Foodservice 0 1 0 0
## 115 Hospital/Nursi 0 Yes 1 0 0
## 116 Hospital/Nursi 0 Yes 0 0 0
## 117 Hospital/Nursi 0 1 0 0
## 118 Hospital/Nursi 0 1 0 0
## 119 Hospital/Nursi 0 Yes 0 0 0
## 120 Hospital/Nursi 0 Yes 0 0 0
## 121 Leisure 0 Yes 0 0 0
## 122 Leisure 0 0 0 0
## 123 Leisure 0 Yes 0 0 0
## 124 Leisure 0 Yes 0 0 0
## 125 Leisure 0 Yes 0 0 0
## 126 School/Daycare 0 Yes 0 0 0
## 127 Leisure 0 Yes 0 0 0
## 128 Foodservice 0 Yes 0 0 0
## 129 Other 0 Yes 0 0 0
## 130 Hospital/Nursi 0 Yes 0 0 0
## 131 Hospital/Nursi 0 Yes 1 0 0
## 132 Hospital/Nursi 0 Yes 1 0 0
## 133 Other 0 1 0 0
## 134 Foodservice 0 1 0 0
## 135 School/Daycare 0 1 0 0
## 136 School/Daycare 0 1 0 0
## 137 School/Daycare 0 1 0 0
## 138 Hospital/Nursi 0 0 0 0
## 139 Hospital/Nursi 0 0 0 0
## 140 Hospital/Nursi 0 0 0 0
## 141 Hospital/Nursi 0 0 0 0
## 142 Leisure 0 1 0 0
## 143 Leisure 0 Yes 1 0 0
## 144 Foodservice 0 1 0 0
## 145 School/Daycare 0 1 0 0
## 146 Foodservice 0 1 0 0
## 147 Foodservice 0 0 0 0
## 148 Other 0 Yes 1 0 0
## 149 Leisure 0 Yes 1 0 0
## 150 Hospital/Nursi 0 1 0 0
## 151 Foodservice 0 1 0 0
## 152 Daycare 0 0 0 0
## 153 Nursing home 0 0 0 0
## 154 Nursing home 0 0 0 0
## 155 Leisure 0 0 0 0
## 156 Nursing home 0 0 0 0
## 157 Foodservice 0 0 0 0
## 158 Nursing home 0 0 0 0
## 159 Foodservice 0 0 0 0
## 160 Nursing home 0 0 0 0
## 161 Daycare 0 0 0 0
## 162 Nursing home 0 Yes 1 0 0
## 163 Nursing home and Hospital 0 Yes 1 0 0
## 164 Other 0 1 0 0
## 165 Hospital/Nursi 0 1 0 0
## 166 Leisure 0 Yes 1 0 0
## 167 Foodservice 0 1 0 0
## 168 Foodservice 0 1 0 0
## 169 Foodservice 0 1 0 0
## 170 Other 0 1 0 0
## 171 Foodservice 0 1 0 0
## 172 Foodservice 0 Yes 1 0 0
## 173 Leisure 0 Yes 1 0 0
## 174 Leisure 0 Yes 1 0 0
## 175 Hospital/Nursi 0 Yes 1 0 0
## 176 Hospital/Nursi 0 1 0 0
## 177 Hospital/Nursi 0 1 0 0
## 178 Hospital/Nursi 0 1 0 0
## 179 Other 0 1 0 0
## 180 Foodservice 0 1 0 0
## 181 Foodservice 0 1 0 0
## 182 Foodservice 0 1 0 0
## 183 Foodservice 0 1 0 0
## 184 Foodservice 0 Yes 1 0 0
## 185 Leisure 0 1 0 0
## 186 Hospital/Nursi 0 1 0 0
## 187 Hospital/Nursi 0 1 0 0
## 188 Foodservice 0 Yes 1 0 0
## 189 Hospital/Nursi 0 Yes 0 0 0
## 190 Hospital/Nursi 0 Yes 0 0 0
## 191 Hospital/Nursi 0 Yes 0 0 0
## 192 Foodservice 0 1 0 0
## 193 Hospital/Nursi 0 Yes 1 0 0
## 194 Hospital/Nursi 0 Yes 1 0 0
## 195 Leisure 0 1 0 0
## 196 Other 0 1 0 0
## 197 Foodservice 0 1 0 0
## 198 Hospital/Nursi 0 Yes 1 0 1
## 199 Hospital/Nursi 0 Yes 0 0 0
## 200 Other 0 Yes 0 0 0
## 201 Other 0 0 0 0
## 202 School/Daycare 0 Yes 0 0 0
## 203 Hospital/Nursi 0 Yes 0 0 0
## 204 Foodservice 0 0 0 0
## 205 Foodservice 0 0 0 0
## 206 School/Daycare 0 0 0 0
## 207 Foodservice 0 0 0 0
## 208 School/Daycare 0 0 0 0
## 209 Foodservice 0 0 0 0
## 210 School/Daycare 0 0 0 0
## 211 Leisure 0 1 0 0
## 212 Foodservice 0 1 0 0
## 213 Foodservice 0 1 0 0
## 214 Leisure 0 1 0 0
## 215 Unknown 0 1 0 0
## 216 Foodservice 0 1 0 0
## 217 Foodservice 0 1 0 0
## 218 Unknown 0 1 0 0
## 219 Foodservice 0 1 0 0
## 220 Unknown 0 1 0 0
## 221 School/Daycare 0 1 0 0
## 222 Unknown 0 0 0 0
## 223 Foodservice 0 0 0 0
## 224 Foodservice 0 0 0 0
## 225 Foodservice 0 0 0 0
## 226 Foodservice 0 0 0 0
## 227 Other 0 0 0 0
## 228 Foodservice 0 0 0 0
## 229 Foodservice 0 0 0 0
## 230 School/Daycare 0 0 0 0
## 231 Leisure 0 Yes 0 0 0
## 232 Foodservice 0 0 0 0
## 233 School/Daycare 0 0 0 0
## 234 Leisure 0 Yes 0 0 0
## 235 School/Daycare 0 0 0 0
## 236 Foodservice 0 0 0 0
## 237 School/Daycare 0 0 0 0
## 238 School/Daycare 0 0 0 0
## 239 Foodservice 0 0 0 0
## 240 School/Daycare 0 0 0 0
## 241 School/Daycare 0 0 0 0
## 242 Leisure 0 1 0 0
## 243 Leisure 0 1 0 0
## 244 Foodservice 0 0 0 0
## 245 Foodservice 0 0 0 0
## 246 Foodservice 0 0 0 0
## 247 Foodservice 1 Yes 0 0 0
## 248 Foodservice 0 0 0 0
## 249 Foodservice 0 0 0 0
## 250 Foodservice 0 0 0 0
## 251 Foodservice 0 0 0 0
## 252 Other 0 0 0 0
## 253 School/Daycare 0 0 0 0
## 254 School/Daycare 0 0 0 0
## 255 School/Daycare 0 0 0 0
## 256 School/Daycare 0 0 0 0
## 257 School/Daycare 0 0 0 0
## 258 School/Daycare 0 0 0 0
## 259 Foodservice 0 0 0 0
## 260 Leisure 0 0 0 0
## 261 Leisure 0 0 0 0
## 262 Leisure 0 Yes 1 0 0
## 263 Leisure 0 1 0 0
## 264 Hospital/Nursi 0 Yes 1 0 0
## 265 Other 0 1 0 0
## 266 Unknown 0 1 0 0
## 267 Hospital/Nursi 0 1 0 0
## 268 Leisure 0 0 0 0
## 269 Unknown 0 0 0 0
## 270 Foodservice 0 0 0 0
## 271 Foodservice 0 0 0 0
## 272 Foodservice 0 0 0 0
## 273 Foodservice 0 0 0 0
## 274 Other 0 Yes 0 0 0
## 275 Foodservice 0 0 0 0
## 276 Foodservice 0 0 0 0
## 277 Foodservice 0 0 0 0
## 278 Foodservice 0 0 0 0
## 279 Foodservice 0 0 0 0
## 280 Other 0 Yes 0 0 0
## 281 Other 0 0 0 0
## 282 Other 0 0 0 0
## 283 Leisure 0 0 0 0
## 284 Other 0 Yes 0 0 0
## 285 Leisure 0 0 0 0
## 286 Other 0 0 0 0
## 287 Leisure 0 1 0 0
## 288 Foodservice 0 1 0 0
## 289 Foodservice 0 1 0 0
## 290 Foodservice 0 Yes 0 0 0
## 291 Foodservice 0 0 0 0
## 292 Other 0 1 0 0
## 293 Leisure 0 1 0 0
## 294 Foodservice 0 1 0 0
## 295 Hospital/Nursi 0 0 0 0
## 296 Hospital/Nursi 0 0 0 0
## 297 Hospital/Nursi 0 1 0 0
## 298 Hospital/Nursi 0 1 0 0
## 299 Leisure 0 0 0 0
## 300 Leisure 0 1 0 0
## 301 Foodservice 0 1 0 0
## 302 Hospital/Nursi 0 1 0 0
## 303 Hospital/Nursi 0 1 0 0
## 304 Foodservice 0 1 0 0
## 305 Hospital/Nursi 0 1 0 0
## 306 Hospital/Nursi 0 Yes 1 0 0
## 307 Leisure 0 1 0 0
## 308 Foodservice 0 1 0 0
## 309 Other 0 1 0 0
## 310 Hospital/Nursi 0 1 0 0
## 311 Hospital/Nursi 0 1 0 0
## 312 Hospital/Nursi 0 1 0 0
## 313 Hospital/Nursi 0 Yes 1 0 0
## 314 Hospital/Nursi 0 1 0 0
## 315 Hospital/Nursi 0 Yes 0 0 0
## 316 Hospital/Nursi 0 Yes 0 0 0
## 317 Foodservice 0 1 0 0
## 318 Leisure 0 1 0 0
## 319 Hospital/Nursi 0 0 0 0
## 320 Hospital/Nursi 0 0 0 0
## 321 Hospital/Nursi 0 0 0 0
## 322 Hospital/Nursi 0 0 0 0
## 323 Hospital/Nursi 0 0 0 0
## 324 Hospital/Nursi 0 0 0 0
## 325 Unknown 0 0 0 0
## 326 Unknown 0 0 0 0
## 327 Unknown 0 0 0 0
## 328 Unknown 0 0 0 0
## 329 Unknown 0 0 0 0
## 330 Unknown 0 0 0 0
## 331 Unknown 0 0 0 0
## 332 Unknown 0 0 0 0
## 333 Unknown 0 1 0 0
## 334 School/Daycare 0 0 0 0
## 335 Foodservice 0 Yes 0 0 0
## 336 Leisure 0 Yes 0 0 0
## 337 Foodservice 0 1 0 0
## 338 Foodservice 0 1 0 0
## 339 Foodservice 0 1 0 0
## 340 Foodservice 0 1 0 0
## 341 Foodservice 0 1 0 0
## 342 Foodservice 0 Yes 1 0 0
## 343 Foodservice 0 Yes 1 0 0
## 344 Foodservice 0 1 0 0
## 345 Foodservice 0 1 0 0
## 346 Foodservice 0 Yes 1 0 0
## 347 Other 0 1 0 0
## 348 School/Daycare 0 1 0 0
## 349 School/Daycare 0 1 0 0
## 350 Foodservice 0 1 0 0
## 351 Leisure 0 1 0 0
## 352 School/Daycare 0 0 0 0
## 353 Leisure 0 Yes 0 0 0
## 354 Other 0 Yes 0 0 0
## 355 Leisure 0 Yes 0 0 0
## 356 Hospital/Nursi 0 Yes 0 0 0
## 357 School/Daycare 0 1 0 0
## 358 School/Daycare 0 1 0 0
## 359 School/Daycare 0 1 0 0
## 360 Foodservice 0 1 0 0
## 361 School/Daycare 0 1 0 0
## 362 Hospital/Nursi 0 Yes 1 0 0
## 363 Hospital/Nursi 1 Yes 1 0 0
## 364 Leisure 0 0 0 0
## 365 Leisure 0 0 0 0
## 366 Leisure 0 0 0 0
## 367 Nursing home 0 1 0 0
## 368 Hospital 0 0 0 0
## 369 Leisure 0 0 0 0
## 370 Other 0 0 0 0
## 371 Other 0 Yes 0 0 0
## 372 Foodservice 0 0 0 0
## 373 Nursing home 0 Yes 0 0 0
## 374 School/Daycare 0 0 0 0
## 375 Hospital 0 Yes 0 0 0
## 376 Nursing home 0 0 0 0
## 377 Hospital 0 Yes 0 0 0
## 378 Nursing home 0 1 0 0
## 379 Nursing home 0 1 0 0
## 380 Nursing home 0 1 0 0
## 381 Nursing home 0 1 0 0
## 382 Nursing home 0 1 0 0
## 383 Nursing home 0 1 0 0
## 384 Military 0 1 0 0
## 385 Other 0 1 0 0
## 386 Other 0 1 0 0
## 387 School/Daycare 0 1 0 0
## 388 Other 0 1 0 0
## 389 Foodservice 0 1 0 0
## 390 Leisure 0 1 0 0
## 391 Foodservice 0 1 0 0
## 392 Foodservice 0 1 0 0
## 393 Leisure 0 Yes 1 0 0
## 394 Leisure 0 Yes 1 0 0
## 395 Foodservice 0 Yes 1 0 0
## 396 Leisure 0 Yes 1 0 0
## 397 Foodservice 0 1 0 0
## 398 Leisure 0 1 0 0
## 399 Foodservice 0 1 0 0
## 400 Foodservice 0 Yes 1 0 0
## 401 Foodservice 0 Yes 1 0 0
## 402 Foodservice 0 1 0 0
## 403 Foodservice 0 1 0 0
## 404 Hospital/Nursi 0 1 0 0
## 405 Hospital/Nursi 0 Yes 1 0 0
## 406 Leisure 0 1 0 0
## 407 Leisure 0 1 0 0
## 408 Leisure 0 1 0 0
## 409 Leisure 0 1 0 0
## 410 Leisure 0 1 0 0
## 411 Leisure 0 Yes 1 0 0
## 412 Leisure 0 1 0 0
## 413 Hospital/Nursi 0 1 0 1
## 414 Hospital/Nursi 0 0 0 0
## 415 Foodservice 0 Yes 0 0 0
## 416 Foodservice 0 0 0 0
## 417 Hospital/Nursi 0 0 0 0
## 418 Other 0 1 0 0
## 419 School/Daycare 0 Yes 1 0 0
## 420 Foodservice 0 1 0 0
## 421 Hospital/Nursi 0 0 0 0
## 422 Hospital/Nursi 0 1 0 0
## 423 Other 0 Yes 0 0 0
## 424 Other 0 Yes 0 0 0
## 425 Leisure 0 Yes 1 0 0
## 426 Other 0 0 0 0
## 427 School/Daycare 0 1 0 0
## 428 Leisure 0 1 0 0
## 429 School/Daycare 0 1 0 0
## 430 Unknown 0 1 0 0
## 431 Foodservice 1 Yes 0 0 0
## 432 Foodservice 0 0 0 0
## 433 Leisure 0 0 0 0
## 434 Unknown 0 Yes 0 0 0
## 435 Foodservice 0 0 0 0
## 436 Unknown 0 0 0 0
## 437 Foodservice 0 Yes 0 0 0
## 438 Foodservice 0 Yes 0 0 0
## 439 Foodservice 0 0 0 0
## 440 Foodservice 0 Yes 0 0 0
## 441 Foodservice 0 0 0 0
## 442 Foodservice 0 0 0 0
## 443 Leisure 0 0 0 0
## 444 Leisure 0 0 0 0
## 445 School/Daycare 0 0 0 0
## 446 Foodservice 0 0 0 0
## 447 Leisure 0 0 0 0
## 448 Leisure 0 0 0 0
## 449 Unknown 0 0 0 0
## 450 Foodservice 0 1 0 0
## 451 Leisure 0 1 0 0
## 452 School/Daycare 0 1 0 0
## 453 Leisure 0 Yes 1 0 0
## 454 Leisure 0 0 0 0
## 455 Leisure 0 0 0 0
## 456 Leisure 0 0 0 0
## 457 Other 0 0 0 0
## 458 Leisure 0 0 0 0
## 459 Foodservice 0 1 0 0
## 460 Leisure 0 Yes 0 0 0
## 461 Hospital/Nursi 0 1 0 0
## 462 School/Daycare 0 1 0 0
## 463 Leisure 0 1 0 0
## 464 Leisure 0 1 0 0
## 465 Foodservice 0 1 0 0
## 466 Hospital/Nursi 0 1 0 0
## 467 Other 0 1 0 0
## 468 Leisure 0 1 0 0
## 469 Leisure 0 1 0 0
## 470 Leisure 0 1 0 0
## 471 Foodservice 0 0 0 0
## 472 Foodservice 0 1 0 0
## 473 Foodservice 0 1 0 0
## 474 Foodservice 0 1 0 0
## 475 Foodservice 0 1 0 0
## 476 Foodservice 0 1 0 0
## 477 Foodservice 0 1 0 0
## 478 Foodservice 0 1 0 0
## 479 Other 0 1 0 0
## 480 Other 0 1 0 0
## 481 Leisure 0 Yes 0 0 0
## 482 Foodservice 0 1 0 0
## 483 Foodservice 0 1 0 0
## 484 Hospital/Nursi 0 1 0 0
## 485 Foodservice 0 1 0 0
## 486 Other 0 Yes 1 0 0
## 487 Hospital/Nursi 0 Yes 0 0 0
## 488 Leisure 0 Yes 0 0 0
## 489 Leisure 0 Yes 0 0 0
## 490 Foodservice 0 Yes 0 0 0
## 491 Foodservice 0 Yes 0 0 0
## 492 Leisure 0 1 0 0
## 493 Leisure 0 1 0 0
## 494 Leisure 0 1 0 0
## 495 Leisure 0 1 0 0
## 496 Unknown 0 0 0 0
## 497 Leisure 0 1 0 0
## 498 Leisure 0 1 0 0
## 499 Nursing home 0 0 0 0
## 500 Hospital 0 0 0 0
## 501 Leisure 0 0 0 0
## 502 Hospital 0 0 0 0
## 503 Daycare 0 0 0 0
## 504 Daycare 0 0 0 0
## 505 Nursing home 0 Yes 1 0 0
## 506 Hospital 0 1 0 0
## 507 School/Daycare 0 0 0 0
## 508 Leisure 0 1 0 0
## 509 Hospital 0 0 0 0
## 510 Hospital 0 Yes 0 0 1
## 511 Leisure 0 1 0 0
## 512 Foodservice 0 1 0 0
## 513 Leisure 0 1 0 0
## 514 Leisure 0 1 0 0
## 515 Unknown 0 1 0 0
## 516 Foodservice 0 Yes 0 0 0
## 517 Foodservice 0 1 0 0
## 518 Foodservice 0 Yes 1 0 0
## 519 Foodservice 0 1 0 0
## 520 Foodservice 0 1 0 0
## 521 Foodservice 0 1 0 0
## 522 Leisure 0 Yes 1 0 0
## 523 Foodservice 0 1 0 0
## 524 Leisure 0 1 0 0
## 525 Hospital/Nursi 0 1 0 0
## 526 Hospital/Nursi 0 1 0 0
## 527 Leisure 0 1 0 0
## 528 Leisure 0 1 0 0
## 529 Foodservice 0 1 0 0
## 530 Leisure 0 1 0 0
## 531 Foodservice 0 1 0 0
## 532 School/Daycare 0 1 0 0
## 533 Leisure 0 1 0 0
## 534 Hospital/Nursi 0 1 0 0
## 535 Foodservice 0 1 0 0
## 536 Hospital/Nursi 0 1 0 0
## 537 Hospital/Nursi 0 1 0 0
## 538 Leisure 0 Yes 1 0 0
## 539 Unknown 0 Yes 1 0 0
## 540 Foodservice 0 1 0 0
## 541 Hospital/Nursi 0 Yes 0 0 0
## 542 Hospital/Nursi 0 Yes 0 0 0
## 543 Hospital/Nursi 0 Yes 0 0 0
## 544 Hospital/Nursi 0 Yes 0 0 0
## 545 Hospital/Nursi 0 Yes 0 0 0
## 546 Hospital/Nursi 0 Yes 0 0 0
## 547 Unknown 0 Yes 1 1 0
## 548 Foodservice 0 Yes 1 0 0
## 549 Other 0 1 0 0
## 550 Leisure 0 1 0 0
## 551 Leisure 0 1 0 0
## 552 Leisure 0 1 0 0
## 553 Other 0 Yes 1 0 0
## 554 Hospital/Nursi 0 1 0 0
## 555 Hospital/Nursi 0 Yes 1 0 0
## 556 Hospital/Nursi 0 Yes 0 0 0
## 557 Foodservice 0 Yes 1 0 0
## 558 Hospital/Nursi 0 0 0 0
## 559 Hospital/Nursi 0 0 0 0
## 560 Other 0 0 0 0
## 561 Other 0 Yes 0 0 0
## 562 Other 0 Yes 1 0 0
## 563 Other 0 Yes 0 0 0
## 564 Other 0 0 0 0
## 565 Foodservice 0 0 0 0
## 566 Other 0 0 0 0
## 567 Foodservice 0 0 0 0
## 568 Other 0 0 0 0
## 569 Other 0 0 0 0
## 570 Other 0 0 0 0
## 571 Foodservice 0 0 0 0
## 572 Hospital/Nursi 0 0 0 0
## 573 Foodservice 0 0 0 0
## 574 Foodservice 0 0 0 0
## 575 School/Daycare 0 0 0 0
## 576 Foodservice 0 0 0 0
## 577 Foodservice 0 0 0 0
## 578 Foodservice 0 0 0 0
## 579 Hospital/Nursi 0 0 0 0
## 580 Foodservice 0 Yes 0 0 0
## 581 School/Daycare 0 0 0 0
## 582 Foodservice 0 0 0 0
## 583 Foodservice 0 0 0 0
## 584 Foodservice 0 0 0 0
## 585 Foodservice 0 0 0 0
## 586 Other 0 0 0 0
## 587 School/Daycare 0 0 0 0
## 588 School/Daycare 0 0 0 0
## 589 Hospital/Nursi 0 0 0 0
## 590 Foodservice 0 Yes 0 0 0
## 591 Foodservice 0 0 0 0
## 592 School/Daycare 0 0 0 0
## 593 Leisure 0 1 0 0
## 594 School/Daycare 0 Yes 1 0 0
## 595 Foodservice 0 1 0 0
## 596 Foodservice 0 1 0 0
## 597 Other 0 1 0 0
## 598 Other 0 1 0 0
## 599 Foodservice 0 1 0 0
## 600 School/Daycare 0 1 0 0
## 601 Foodservice 0 1 0 0
## 602 Foodservice 0 1 0 0
## 603 Hospital/Nursi 0 1 0 0
## 604 Leisure 0 1 0 0
## 605 Foodservice 0 1 0 0
## 606 Foodservice 0 1 0 0
## 607 Foodservice 0 1 0 0
## 608 Foodservice 0 1 0 0
## 609 Hospital/Nursi 0 1 0 0
## 610 Foodservice 0 1 0 0
## 611 School/Daycare 0 1 0 0
## 612 Unknown 0 1 0 0
## 613 Unknown 0 1 0 0
## 614 Unknown 0 1 0 0
## 615 Unknown 0 1 0 0
## 616 Foodservice 0 1 0 0
## 617 Other 0 1 0 0
## 618 Foodservice 0 1 0 0
## 619 Unknown 0 1 0 0
## 620 Unknown 0 1 0 0
## 621 Unknown 0 1 0 0
## 622 Unknown 0 1 0 0
## 623 Unknown 0 1 0 0
## 624 Unknown 0 1 0 0
## 625 Foodservice 0 1 0 0
## 626 Foodservice 0 1 0 0
## 627 Unknown 0 1 0 0
## 628 Foodservice 0 0 0 0
## 629 Unknown 0 0 0 0
## 630 Foodservice 0 0 0 0
## 631 Leisure 0 0 0 0
## 632 Foodservice 0 0 0 0
## 633 Unknown 0 0 0 0
## 634 Leisure 0 0 0 0
## 635 Leisure 0 0 0 0
## 636 Leisure 0 0 0 0
## 637 Unknown 0 0 0 0
## 638 Foodservice 0 0 0 0
## 639 Foodservice 0 0 0 0
## 640 Foodservice 0 0 0 0
## 641 Foodservice 0 0 0 0
## 642 Foodservice 0 0 0 0
## 643 Unknown 0 0 0 0
## 644 Other 0 Yes 1 0 0
## 645 Hospital/Nursi 0 Yes 1 0 0
## 646 Foodservice 0 0 0 0
## 647 Foodservice 0 0 0 0
## 648 Foodservice 0 0 0 0
## 649 Foodservice 0 0 0 0
## 650 Foodservice 0 Yes 0 0 0
## 651 Foodservice 0 0 0 0
## 652 Foodservice 0 Yes 0 0 0
## 653 Foodservice 0 0 0 0
## 654 Foodservice 0 0 0 0
## 655 Foodservice 0 Yes 0 0 0
## 656 Other 0 Yes 0 0 0
## 657 Other 0 Yes 0 0 0
## 658 Other 1 Yes 0 0 0
## 659 Foodservice 0 0 0 0
## 660 Foodservice 0 Yes 0 0 0
## 661 Foodservice 0 Yes 0 0 0
## 662 Foodservice 0 0 0 0
## 663 Foodservice 0 0 0 0
## 664 Foodservice 0 Yes 0 0 0
## 665 Foodservice 0 Yes 0 0 0
## 666 Foodservice 0 0 0 0
## 667 Foodservice 0 0 0 0
## 668 Foodservice 0 0 0 0
## 669 Foodservice 0 0 0 0
## 670 Foodservice 0 0 0 0
## 671 School/Daycare 0 Yes 0 0 0
## 672 School/Daycare 0 0 0 0
## 673 Foodservice 0 0 0 0
## 674 Foodservice 0 0 0 0
## 675 Foodservice 0 0 0 0
## 676 Foodservice 0 0 0 0
## 677 Leisure 0 0 0 0
## 678 Leisure 0 0 0 0
## 679 Other 0 1 0 0
## 680 Hospital/Nursi 0 Yes 1 0 0
## 681 Foodservice 0 1 0 0
## 682 Leisure 0 1 0 0
## 683 Hospital/Nursi 0 Yes 1 0 0
## 684 School/Daycare 0 1 0 0
## 685 Foodservice 0 1 0 0
## 686 Other 0 Yes 1 0 0
## 687 Leisure 0 1 0 0
## 688 Hospital/Nursi 0 1 0 0
## 689 Other 0 Yes 1 0 0
## 690 Other 0 Yes 1 0 0
## 691 Hospital/Nursi 0 1 0 1
## 692 Unknown 0 0 0 0
## 693 Foodservice 0 0 0 0
## 694 Foodservice 0 Yes 0 0 0
## 695 Foodservice 0 0 0 0
## 696 Foodservice 0 0 0 0
## 697 Foodservice 0 0 0 0
## 698 Foodservice 0 0 0 0
## 699 Foodservice 0 0 0 0
## 700 Foodservice 0 0 0 0
## 701 Other 0 0 0 0
## 702 Other 0 Yes 0 0 0
## 703 Foodservice 0 0 0 0
## 704 Foodservice 0 0 0 0
## 705 Other 0 0 0 0
## 706 Foodservice 0 0 0 0
## 707 Foodservice 0 1 0 0
## 708 Foodservice 0 Yes 1 0 0
## 709 Hospital/Nursi 0 1 0 0
## 710 Other 0 Yes 0 0 0
## 711 Other 0 0 0 0
## 712 Other 0 Yes 0 0 0
## 713 Leisure 0 Yes 0 0 0
## 714 Hospital/Nursi 0 1 0 0
## PooledLat PooledSym PooledAge IndividualLatent IndividualSymptomatic
## 1 0.0 0 0.0 NA
## 2 37.0 36 0.0 NA
## 3 0.0 0 0.0 NA
## 4 0.0 0 0.0 NA
## 5 0.0 0 0.0 NA
## 6 0.0 0 0.0 NA
## 7 0.0 0 0.0 NA
## 8 0.0 0 0.0 NA
## 9 0.0 0 0.0 NA
## 10 31.0 48 0.0 NA
## 11 34.0 37 0.0 NA
## 12 33.0 24 0.0 NA
## 13 0.0 24 0.0 NA
## 14 0.0 0 0.0 NA
## 15 0.0 0 0.0 NA
## 16 0.0 0 0.0 NA
## 17 0.0 0 0.0 NA
## 18 0.0 0 0.0 NA
## 19 0.0 54 0.0 NA
## 20 0.0 37 28.0 NA
## 21 0.0 0 0.0 NA
## 22 0.0 0 0.0 NA
## 23 0.0 0 0.0 NA
## 24 0.0 0 0.0 NA
## 25 0.0 0 0.0 NA
## 26 0.0 0 0.0 NA
## 27 0.0 0 0.0 NA
## 28 0.0 0 0.0 NA
## 29 0.0 0 0.0 NA
## 30 0.0 0 0.0 NA
## 31 0.0 0 0.0 NA
## 32 0.0 0 0.0 NA
## 33 0.0 0 0.0 NA
## 34 34.0 47 0.0 NA
## 35 0.0 36 0.0 NA
## 36 0.0 0 0.0 NA
## 37 0.0 0 0.0 NA
## 38 0.0 0 0.0 NA
## 39 0.0 0 0.0 NA
## 40 0.0 36 0.0 NA Y
## 41 0.0 0 0.0 NA
## 42 0.0 0 0.0 NA
## 43 0.0 0 0.0 NA
## 44 0.0 0 0.0 NA
## 45 0.0 0 0.0 NA
## 46 31.0 0 17.0 NA
## 47 32.5 43 34.5 NA
## 48 0.0 48 0.0 NA
## 49 0.0 0 0.0 NA
## 50 0.0 0 0.0 NA
## 51 0.0 0 0.0 NA
## 52 0.0 0 0.0 NA
## 53 0.0 0 0.0 NA
## 54 0.0 0 0.0 NA
## 55 0.0 0 0.0 NA
## 56 0.0 0 0.0 NA
## 57 0.0 0 0.0 NA
## 58 0.0 0 0.0 NA
## 59 0.0 0 0.0 NA
## 60 0.0 0 0.0 NA
## 61 37.0 24 0.0 NA
## 62 31.0 36 39.0 NA
## 63 0.0 0 0.0 NA
## 64 0.0 0 0.0 NA
## 65 0.0 0 0.0 NA
## 66 36.0 0 0.0 NA
## 67 0.0 0 0.0 NA
## 68 0.0 0 0.0 NA Y
## 69 0.0 0 0.0 NA
## 70 0.0 0 0.0 NA
## 71 0.0 0 0.0 NA
## 72 0.0 0 0.0 NA
## 73 0.0 0 0.0 NA
## 74 0.0 0 0.0 NA
## 75 0.0 0 0.0 NA
## 76 0.0 0 0.0 NA
## 77 0.0 0 0.0 NA
## 78 0.0 0 0.0 NA
## 79 0.0 0 0.0 NA
## 80 0.0 0 0.0 NA
## 81 0.0 0 0.0 NA
## 82 0.0 0 0.0 NA
## 83 0.0 0 0.0 NA
## 84 0.0 0 0.0 NA
## 85 0.0 0 0.0 NA
## 86 0.0 0 0.0 NA
## 87 28.0 0 0.0 NA
## 88 0.0 24 0.0 NA
## 89 0.0 0 0.0 NA
## 90 0.0 0 0.0 NA
## 91 0.0 0 0.0 NA
## 92 0.0 0 0.0 NA
## 93 0.0 0 0.0 NA
## 94 0.0 0 0.0 NA
## 95 0.0 0 0.0 NA
## 96 0.0 0 0.0 NA
## 97 0.0 48 0.0 NA
## 98 0.0 0 0.0 NA
## 99 0.0 0 0.0 NA
## 100 0.0 0 0.0 NA
## 101 0.0 0 0.0 NA
## 102 0.0 0 0.0 NA
## 103 0.0 0 0.0 NA
## 104 16.5 24 47.0 NA
## 105 0.0 0 43.0 NA Y
## 106 0.0 48 0.0 NA
## 107 0.0 0 0.0 NA
## 108 0.0 0 0.0 NA
## 109 0.0 0 0.0 NA
## 110 0.0 0 0.0 NA
## 111 0.0 0 0.0 NA
## 112 0.0 0 0.0 NA
## 113 0.0 0 0.0 NA
## 114 0.0 0 0.0 NA
## 115 0.0 0 0.0 NA
## 116 0.0 0 0.0 NA
## 117 0.0 0 0.0 NA
## 118 0.0 0 0.0 NA
## 119 0.0 0 0.0 NA
## 120 0.0 0 0.0 NA
## 121 0.0 0 0.0 NA
## 122 0.0 0 0.0 NA
## 123 0.0 0 0.0 NA
## 124 0.0 0 0.0 NA
## 125 0.0 0 0.0 NA
## 126 0.0 0 0.0 NA
## 127 0.0 0 0.0 NA
## 128 0.0 0 0.0 NA
## 129 0.0 0 0.0 NA
## 130 0.0 0 0.0 NA
## 131 0.0 0 0.0 NA
## 132 0.0 0 0.0 NA
## 133 0.0 0 0.0 NA
## 134 0.0 21 36.0 NA
## 135 0.0 58 2.0 NA
## 136 0.0 0 0.0 NA
## 137 0.0 48 NA NA
## 138 0.0 0 0.0 NA
## 139 0.0 0 0.0 NA
## 140 0.0 0 0.0 NA
## 141 0.0 0 0.0 NA
## 142 0.0 0 0.0 NA
## 143 0.0 0 79.0 NA
## 144 0.0 0 0.0 NA
## 145 33.0 22 0.0 NA
## 146 0.0 0 0.0 NA
## 147 36.0 35 0.0 NA
## 148 0.0 72 0.0 NA
## 149 0.0 0 72.0 NA
## 150 0.0 0 0.0 NA
## 151 38.0 0 0.0 NA
## 152 0.0 0 0.0 NA
## 153 0.0 0 0.0 NA
## 154 0.0 0 0.0 NA
## 155 0.0 0 0.0 NA
## 156 0.0 0 0.0 NA
## 157 0.0 0 0.0 NA
## 158 0.0 0 0.0 NA
## 159 0.0 0 0.0 NA
## 160 0.0 0 0.0 NA
## 161 0.0 0 0.0 NA
## 162 0.0 0 0.0 NA
## 163 0.0 0 0.0 NA
## 164 0.0 0 0.0 NA
## 165 0.0 0 0.0 NA
## 166 0.0 0 0.0 NA
## 167 0.0 0 0.0 NA
## 168 0.0 0 0.0 NA
## 169 0.0 0 0.0 NA
## 170 0.0 0 0.0 NA
## 171 0.0 0 0.0 NA
## 172 0.0 0 0.0 NA
## 173 0.0 0 0.0 NA
## 174 0.0 0 0.0 NA
## 175 0.0 0 0.0 NA
## 176 0.0 0 0.0 NA
## 177 0.0 0 0.0 NA
## 178 0.0 0 0.0 NA
## 179 0.0 0 0.0 NA
## 180 0.0 0 0.0 NA
## 181 0.0 0 0.0 NA
## 182 0.0 0 0.0 NA
## 183 0.0 0 0.0 NA
## 184 0.0 0 0.0 NA
## 185 0.0 0 56.0 NA
## 186 0.0 0 0.0 NA
## 187 0.0 0 0.0 NA
## 188 0.0 48 0.0 NA
## 189 0.0 0 0.0 NA
## 190 0.0 0 0.0 NA
## 191 0.0 0 0.0 NA
## 192 0.0 24 0.0 NA
## 193 0.0 0 0.0 NA
## 194 0.0 0 0.0 NA
## 195 35.0 4 43.0 NA
## 196 0.0 0 0.0 NA
## 197 34.0 0 0.0 NA
## 198 0.0 12 NA NA
## 199 0.0 0 0.0 NA
## 200 0.0 0 0.0 NA
## 201 0.0 0 0.0 NA
## 202 0.0 0 0.0 NA
## 203 0.0 0 0.0 NA
## 204 0.0 0 0.0 NA
## 205 0.0 0 0.0 NA
## 206 0.0 0 0.0 NA
## 207 0.0 0 0.0 NA
## 208 0.0 0 0.0 NA
## 209 0.0 0 0.0 NA
## 210 0.0 0 0.0 NA
## 211 0.0 0 0.0 NA
## 212 0.0 0 0.0 NA
## 213 0.0 0 0.0 NA
## 214 0.0 0 0.0 NA
## 215 0.0 0 0.0 NA
## 216 0.0 0 0.0 NA
## 217 0.0 0 0.0 NA
## 218 0.0 0 0.0 NA
## 219 0.0 0 0.0 NA
## 220 0.0 0 0.0 NA
## 221 0.0 0 0.0 NA
## 222 0.0 0 0.0 NA
## 223 0.0 0 0.0 NA
## 224 0.0 0 0.0 NA
## 225 0.0 0 0.0 NA
## 226 0.0 0 0.0 NA
## 227 0.0 0 0.0 NA
## 228 0.0 0 0.0 NA
## 229 0.0 0 0.0 NA
## 230 0.0 0 0.0 NA
## 231 0.0 0 0.0 NA
## 232 0.0 0 0.0 NA
## 233 0.0 0 0.0 NA
## 234 0.0 0 0.0 NA
## 235 0.0 0 0.0 NA
## 236 0.0 0 0.0 NA
## 237 0.0 0 0.0 NA
## 238 0.0 0 0.0 NA
## 239 0.0 0 0.0 NA
## 240 0.0 0 0.0 NA
## 241 0.0 0 0.0 NA
## 242 0.0 0 45.5 NA
## 243 0.0 67 68.0 NA
## 244 0.0 0 0.0 NA
## 245 0.0 0 0.0 NA
## 246 0.0 0 0.0 NA
## 247 0.0 0 0.0 NA
## 248 0.0 0 0.0 NA
## 249 0.0 0 0.0 NA
## 250 0.0 0 0.0 NA
## 251 0.0 0 0.0 NA
## 252 0.0 0 0.0 NA
## 253 0.0 0 0.0 NA
## 254 0.0 0 0.0 NA
## 255 0.0 0 0.0 NA
## 256 0.0 0 0.0 NA
## 257 0.0 0 0.0 NA
## 258 0.0 0 0.0 NA
## 259 0.0 0 0.0 NA
## 260 0.0 0 0.0 NA
## 261 0.0 0 0.0 NA
## 262 0.0 72 0.0 NA
## 263 0.0 72 0.0 NA
## 264 0.0 0 0.0 NA
## 265 0.0 0 27.0 NA
## 266 0.0 0 0.0 NA
## 267 67.5 36 83.0 NA
## 268 0.0 0 0.0 NA
## 269 0.0 0 0.0 NA
## 270 0.0 0 0.0 NA
## 271 0.0 0 0.0 NA
## 272 0.0 0 0.0 NA
## 273 0.0 0 0.0 NA
## 274 0.0 0 0.0 NA
## 275 0.0 0 0.0 NA
## 276 0.0 0 0.0 NA
## 277 0.0 0 0.0 NA
## 278 0.0 0 0.0 NA
## 279 0.0 0 0.0 NA
## 280 0.0 0 25.0 NA
## 281 0.0 0 0.0 NA
## 282 0.0 0 0.0 NA
## 283 0.0 0 0.0 NA
## 284 0.0 0 0.0 NA
## 285 0.0 0 0.0 NA
## 286 0.0 0 0.0 NA
## 287 0.0 0 0.0 NA
## 288 0.0 0 0.0 NA
## 289 28.0 0 0.0 NA
## 290 0.0 0 0.0 NA
## 291 0.0 0 0.0 NA
## 292 0.0 0 76.0 NA
## 293 0.0 0 0.0 NA
## 294 0.0 0 0.0 NA
## 295 0.0 0 0.0 NA
## 296 0.0 0 0.0 NA
## 297 0.0 0 0.0 NA
## 298 0.0 0 0.0 NA
## 299 0.0 0 0.0 NA
## 300 0.0 0 0.0 NA
## 301 0.0 0 0.0 NA
## 302 0.0 0 0.0 NA
## 303 0.0 0 0.0 NA
## 304 0.0 0 0.0 NA
## 305 0.0 0 0.0 NA
## 306 0.0 0 0.0 NA
## 307 0.0 24 26.0 NA
## 308 41.0 48 0.0 NA
## 309 0.0 0 0.0 NA
## 310 0.0 0 0.0 NA
## 311 0.0 0 0.0 NA
## 312 0.0 0 0.0 NA
## 313 0.0 0 0.0 NA
## 314 0.0 0 0.0 NA
## 315 0.0 0 0.0 NA
## 316 0.0 0 81.0 NA
## 317 27.0 0 0.0 NA
## 318 0.0 0 0.0 NA
## 319 0.0 0 0.0 NA
## 320 0.0 0 0.0 NA
## 321 0.0 0 0.0 NA
## 322 0.0 0 0.0 NA
## 323 0.0 0 0.0 NA
## 324 0.0 0 0.0 NA
## 325 0.0 0 0.0 NA
## 326 0.0 0 0.0 NA
## 327 0.0 0 0.0 NA
## 328 0.0 0 0.0 NA
## 329 0.0 0 0.0 NA
## 330 0.0 0 0.0 NA
## 331 0.0 0 0.0 NA
## 332 0.0 0 0.0 NA
## 333 0.0 0 0.0 NA
## 334 0.0 0 0.0 NA
## 335 0.0 0 0.0 NA
## 336 0.0 0 0.0 NA
## 337 31.0 48 5.0 NA
## 338 37.0 14 54.0 NA
## 339 33.0 33 47.0 NA
## 340 18.0 16 31.0 NA
## 341 0.0 0 43.0 NA
## 342 0.0 0 0.0 NA
## 343 0.0 0 0.0 NA
## 344 0.0 0 0.0 NA
## 345 0.0 0 0.0 NA
## 346 0.0 0 0.0 NA
## 347 0.0 0 0.0 NA
## 348 0.0 0 0.0 NA
## 349 0.0 0 0.0 NA
## 350 34.0 54 0.0 NA
## 351 34.0 48 0.0 NA
## 352 0.0 0 0.0 NA
## 353 0.0 0 0.0 NA
## 354 0.0 0 0.0 NA
## 355 0.0 0 0.0 NA
## 356 0.0 0 0.0 NA
## 357 0.0 0 0.0 NA
## 358 0.0 0 0.0 NA
## 359 0.0 0 19.0 NA
## 360 36.0 48 6.0 NA
## 361 0.0 0 0.0 NA
## 362 0.0 48 53.0 NA
## 363 0.0 36 6.0 NA
## 364 0.0 0 0.0 NA
## 365 0.0 0 0.0 NA
## 366 0.0 0 0.0 NA
## 367 0.0 0 0.0 NA
## 368 0.0 0 0.0 NA
## 369 0.0 0 0.0 NA
## 370 0.0 0 0.0 NA
## 371 0.0 0 0.0 NA
## 372 0.0 0 0.0 NA
## 373 0.0 0 0.0 NA
## 374 0.0 0 0.0 NA
## 375 0.0 0 0.0 NA
## 376 0.0 0 0.0 NA
## 377 0.0 0 0.0 NA
## 378 0.0 0 0.0 NA
## 379 0.0 0 0.0 NA
## 380 0.0 0 0.0 NA
## 381 0.0 0 0.0 NA
## 382 0.0 0 0.0 NA
## 383 0.0 0 0.0 NA
## 384 0.0 0 0.0 NA
## 385 0.0 0 0.0 NA
## 386 0.0 0 0.0 NA
## 387 0.0 0 0.0 NA
## 388 0.0 0 0.0 NA
## 389 0.0 0 0.0 NA
## 390 0.0 0 0.0 NA
## 391 0.0 0 0.0 NA
## 392 0.0 0 0.0 NA
## 393 0.0 0 0.0 NA
## 394 0.0 0 0.0 NA
## 395 0.0 0 0.0 NA
## 396 0.0 0 0.0 NA
## 397 0.0 0 0.0 NA
## 398 0.0 0 0.0 NA
## 399 0.0 0 0.0 NA
## 400 0.0 0 0.0 NA
## 401 0.0 0 0.0 NA
## 402 0.0 0 0.0 NA
## 403 0.0 0 0.0 NA
## 404 0.0 0 0.0 NA
## 405 0.0 0 0.0 NA
## 406 0.0 0 0.0 NA
## 407 0.0 0 0.0 NA
## 408 0.0 0 0.0 NA
## 409 0.0 0 12.0 NA
## 410 0.0 0 0.0 NA
## 411 0.0 0 0.0 NA
## 412 0.0 0 0.0 NA
## 413 0.0 72 5.0 NA Y
## 414 0.0 0 0.0 NA
## 415 0.0 0 85.0 NA
## 416 0.0 0 0.0 NA
## 417 0.0 0 0.0 NA
## 418 0.0 0 0.0 NA
## 419 0.0 0 0.0 NA
## 420 0.0 0 0.0 NA
## 421 0.0 0 0.0 NA
## 422 0.0 0 0.0 NA
## 423 0.0 0 0.0 NA
## 424 0.0 0 0.0 NA
## 425 0.0 0 0.0 NA
## 426 0.0 0 0.0 NA
## 427 0.0 0 13.0 NA
## 428 3.0 0 9.0 NA
## 429 0.0 0 0.0 NA
## 430 0.0 0 0.0 NA
## 431 0.0 0 0.0 NA
## 432 0.0 0 0.0 NA
## 433 0.0 0 0.0 NA
## 434 0.0 0 0.0 NA
## 435 0.0 0 0.0 NA
## 436 0.0 0 0.0 NA
## 437 0.0 0 0.0 NA
## 438 0.0 0 0.0 NA
## 439 0.0 0 0.0 NA
## 440 0.0 0 0.0 NA
## 441 0.0 0 0.0 NA
## 442 0.0 0 0.0 NA
## 443 0.0 0 0.0 NA
## 444 0.0 0 0.0 NA
## 445 0.0 0 0.0 NA
## 446 0.0 0 0.0 NA
## 447 0.0 0 0.0 NA
## 448 0.0 0 0.0 NA
## 449 0.0 0 0.0 NA
## 450 0.0 49 0.0 NA
## 451 0.0 24 0.0 NA
## 452 0.0 48 0.0 NA
## 453 31.0 32 9.0 NA
## 454 0.0 0 0.0 NA
## 455 0.0 0 0.0 NA
## 456 0.0 0 0.0 NA
## 457 0.0 0 0.0 NA
## 458 0.0 0 0.0 NA
## 459 3.0 0 0.0 NA
## 460 0.0 0 0.0 NA
## 461 0.0 0 0.0 NA
## 462 0.0 0 0.0 NA
## 463 0.0 0 0.0 NA
## 464 0.0 0 0.0 NA
## 465 39.0 0 0.0 NA
## 466 0.0 0 0.0 NA
## 467 0.0 0 0.0 NA
## 468 0.0 0 0.0 NA
## 469 0.0 0 26.0 NA
## 470 48.0 0 15.5 NA
## 471 0.0 0 0.0 NA
## 472 34.0 28 32.0 NA
## 473 4.0 34 47.0 NA
## 474 22.0 34 24.0 NA
## 475 28.0 17 24.0 NA
## 476 33.0 48 42.0 NA
## 477 37.0 33 57.0 NA
## 478 0.0 0 0.0 NA
## 479 0.0 0 0.0 NA
## 480 0.0 0 0.0 NA
## 481 0.0 0 0.0 NA
## 482 32.0 37 39.0 NA
## 483 39.0 44 34.0 NA
## 484 0.0 0 0.0 NA
## 485 34.0 0 0.0 NA
## 486 0.0 0 13.0 NA
## 487 0.0 0 0.0 NA
## 488 0.0 0 0.0 NA
## 489 0.0 0 0.0 NA
## 490 0.0 0 0.0 NA
## 491 0.0 0 0.0 NA
## 492 0.0 0 0.0 NA
## 493 0.0 0 0.0 NA
## 494 0.0 0 0.0 NA
## 495 32.0 0 11.0 NA
## 496 0.0 0 2.0 NA
## 497 0.0 6 13.0 NA
## 498 0.0 0 0.0 NA
## 499 0.0 0 0.0 NA
## 500 0.0 0 0.0 NA
## 501 0.0 0 0.0 NA
## 502 0.0 0 0.0 NA
## 503 0.0 0 0.0 NA
## 504 0.0 0 0.0 NA
## 505 0.0 0 0.0 NA
## 506 0.0 0 0.0 NA
## 507 0.0 0 0.0 NA
## 508 0.0 0 0.0 NA
## 509 0.0 0 0.0 NA
## 510 0.0 0 0.0 NA
## 511 0.0 0 0.0 NA
## 512 0.0 48 37.0 NA
## 513 0.0 48 37.0 NA
## 514 0.0 0 0.0 NA
## 515 0.0 0 0.0 NA
## 516 0.0 0 0.0 NA
## 517 0.0 0 0.0 NA
## 518 0.0 0 0.0 NA
## 519 0.0 0 0.0 NA
## 520 0.0 0 0.0 NA
## 521 0.0 0 0.0 NA
## 522 0.0 0 0.0 NA
## 523 0.0 0 0.0 NA
## 524 0.0 0 0.0 NA
## 525 0.0 0 0.0 NA
## 526 0.0 0 0.0 NA
## 527 0.0 0 0.0 NA
## 528 0.0 0 0.0 NA
## 529 31.0 27 0.0 NA
## 530 3.0 0 7.0 NA
## 531 32.0 42 4.0 NA
## 532 0.0 36 0.0 NA
## 533 0.0 0 0.0 NA
## 534 0.0 0 0.0 NA
## 535 0.0 0 0.0 NA
## 536 0.0 0 0.0 NA
## 537 0.0 0 0.0 NA
## 538 0.0 0 0.0 NA
## 539 0.0 0 43.0 NA
## 540 31.0 48 39.0 NA
## 541 0.0 0 0.0 NA
## 542 0.0 0 0.0 NA
## 543 0.0 0 0.0 NA
## 544 0.0 0 0.0 NA
## 545 0.0 0 0.0 NA
## 546 0.0 0 0.0 NA
## 547 34.0 36 45.0 NA
## 548 34.0 0 0.0 NA
## 549 0.0 0 0.0 NA
## 550 0.0 0 0.0 NA
## 551 0.0 0 0.0 NA
## 552 0.0 0 0.0 NA
## 553 0.0 0 0.0 NA
## 554 0.0 0 0.0 NA
## 555 0.0 0 0.0 NA
## 556 0.0 0 0.0 NA
## 557 0.0 0 0.0 NA
## 558 0.0 0 0.0 NA
## 559 0.0 0 0.0 NA
## 560 0.0 0 0.0 NA
## 561 0.0 0 0.0 NA
## 562 0.0 0 0.0 NA
## 563 0.0 0 0.0 NA
## 564 0.0 0 0.0 NA
## 565 0.0 0 0.0 NA
## 566 0.0 0 0.0 NA
## 567 0.0 0 0.0 NA
## 568 0.0 0 0.0 NA
## 569 0.0 0 0.0 NA
## 570 0.0 0 0.0 NA
## 571 0.0 0 0.0 NA
## 572 0.0 0 0.0 NA
## 573 0.0 0 0.0 NA
## 574 0.0 0 0.0 NA
## 575 0.0 0 0.0 NA
## 576 0.0 0 0.0 NA
## 577 0.0 0 0.0 NA
## 578 0.0 0 0.0 NA
## 579 0.0 0 0.0 NA
## 580 0.0 0 0.0 NA
## 581 0.0 0 0.0 NA
## 582 0.0 0 0.0 NA
## 583 0.0 0 0.0 NA
## 584 0.0 0 0.0 NA
## 585 0.0 0 0.0 NA
## 586 0.0 0 0.0 NA
## 587 0.0 0 0.0 NA
## 588 0.0 0 0.0 NA
## 589 0.0 0 0.0 NA
## 590 0.0 0 0.0 NA
## 591 0.0 0 0.0 NA
## 592 0.0 0 0.0 NA
## 593 0.0 0 0.0 NA
## 594 0.0 0 0.0 NA
## 595 0.0 0 0.0 NA
## 596 0.0 0 0.0 NA
## 597 0.0 0 0.0 NA
## 598 0.0 0 0.0 NA
## 599 0.0 0 0.0 NA
## 600 0.0 0 0.0 NA
## 601 0.0 0 0.0 NA
## 602 0.0 0 0.0 NA
## 603 0.0 0 0.0 NA
## 604 0.0 0 0.0 NA
## 605 0.0 0 0.0 NA
## 606 0.0 0 0.0 NA
## 607 0.0 0 0.0 NA
## 608 0.0 0 0.0 NA
## 609 0.0 0 0.0 NA
## 610 0.0 0 0.0 NA
## 611 0.0 0 0.0 NA
## 612 0.0 0 0.0 NA
## 613 0.0 0 0.0 NA
## 614 0.0 0 0.0 NA
## 615 0.0 0 0.0 NA
## 616 0.0 0 0.0 NA
## 617 0.0 0 0.0 NA
## 618 0.0 0 0.0 NA
## 619 0.0 0 0.0 NA
## 620 0.0 0 0.0 NA
## 621 0.0 0 0.0 NA
## 622 0.0 0 0.0 NA
## 623 0.0 0 0.0 NA
## 624 0.0 0 0.0 NA
## 625 0.0 0 0.0 NA
## 626 0.0 0 0.0 NA
## 627 0.0 0 0.0 NA
## 628 0.0 0 0.0 NA
## 629 0.0 0 0.0 NA
## 630 0.0 0 0.0 NA
## 631 0.0 0 0.0 NA
## 632 0.0 0 0.0 NA
## 633 0.0 0 0.0 NA
## 634 0.0 0 0.0 NA
## 635 0.0 0 0.0 NA
## 636 0.0 0 0.0 NA
## 637 0.0 0 0.0 NA
## 638 0.0 0 0.0 NA
## 639 0.0 0 0.0 NA
## 640 0.0 0 0.0 NA
## 641 0.0 0 0.0 NA
## 642 0.0 0 0.0 NA
## 643 0.0 0 0.0 NA
## 644 0.0 0 0.0 NA
## 645 0.0 0 0.0 NA
## 646 0.0 0 0.0 NA
## 647 0.0 0 0.0 NA
## 648 0.0 0 0.0 NA
## 649 0.0 0 0.0 NA
## 650 0.0 0 0.0 NA
## 651 0.0 0 0.0 NA
## 652 0.0 0 0.0 NA
## 653 0.0 0 0.0 NA
## 654 0.0 0 0.0 NA
## 655 0.0 0 0.0 NA
## 656 0.0 0 0.0 NA
## 657 0.0 0 0.0 NA
## 658 0.0 0 0.0 NA
## 659 0.0 0 0.0 NA
## 660 0.0 0 0.0 NA
## 661 0.0 0 0.0 NA
## 662 0.0 0 0.0 NA
## 663 0.0 0 0.0 NA
## 664 0.0 0 0.0 NA
## 665 0.0 0 0.0 NA
## 666 0.0 0 0.0 NA
## 667 0.0 0 0.0 NA
## 668 0.0 0 0.0 NA
## 669 0.0 0 0.0 NA
## 670 0.0 0 0.0 NA
## 671 0.0 0 0.0 NA
## 672 0.0 0 0.0 NA
## 673 0.0 0 0.0 NA
## 674 0.0 0 0.0 NA
## 675 0.0 0 0.0 NA
## 676 0.0 0 0.0 NA
## 677 0.0 0 0.0 NA
## 678 0.0 0 0.0 NA
## 679 0.0 0 0.0 NA
## 680 0.0 0 0.0 NA
## 681 31.0 0 0.0 NA
## 682 0.0 41 0.0 NA
## 683 0.0 0 0.0 NA
## 684 0.0 36 18.0 NA
## 685 42.0 0 0.0 NA
## 686 0.0 0 0.0 NA
## 687 0.0 48 0.0 NA
## 688 0.0 0 0.0 NA
## 689 0.0 0 0.0 NA
## 690 0.0 0 0.0 NA
## 691 0.0 0 0.0 NA Y
## 692 0.0 0 0.0 NA
## 693 0.0 0 0.0 NA
## 694 0.0 0 0.0 NA
## 695 0.0 0 0.0 NA
## 696 0.0 0 0.0 NA
## 697 0.0 0 0.0 NA
## 698 0.0 0 0.0 NA
## 699 0.0 0 0.0 NA
## 700 0.0 0 0.0 NA
## 701 0.0 0 0.0 NA
## 702 0.0 0 0.0 NA
## 703 0.0 0 0.0 NA
## 704 0.0 0 0.0 NA
## 705 0.0 0 0.0 NA
## 706 0.0 0 0.0 NA
## 707 0.0 0 0.0 NA
## 708 0.0 0 0.0 NA
## 709 0.0 0 0.0 NA
## 710 0.0 0 0.0 NA
## 711 0.0 0 0.0 NA
## 712 0.0 0 0.0 NA
## 713 0.0 0 0.0 NA
## 714 0.0 0 0.0 NA
## fracinf
## 1 Inf
## 2 60.1851852
## 3 20.7692308
## 4 100.0000000
## 5 60.0000000
## 6 75.0000000
## 7 83.3333333
## 8 83.3333333
## 9 52.7272727
## 10 63.0000000
## 11 Inf
## 12 37.5245580
## 13 52.7777778
## 14 Inf
## 15 12.6153846
## 16 3.4239415
## 17 38.4375000
## 18 4.8708333
## 19 60.3773585
## 20 43.0000000
## 21 Inf
## 22 Inf
## 23 Inf
## 24 Inf
## 25 Inf
## 26 Inf
## 27 Inf
## 28 Inf
## 29 Inf
## 30 Inf
## 31 Inf
## 32 Inf
## 33 Inf
## 34 Inf
## 35 34.2105263
## 36 Inf
## 37 Inf
## 38 Inf
## 39 Inf
## 40 53.8461538
## 41 32.5925926
## 42 50.4424779
## 43 31.3253012
## 44 Inf
## 45 32.7586207
## 46 45.7774799
## 47 70.8333333
## 48 7.7222222
## 49 62.2641509
## 50 Inf
## 51 30.3291536
## 52 69.2307692
## 53 52.1739130
## 54 50.0000000
## 55 Inf
## 56 60.0000000
## 57 48.5436893
## 58 14.8437500
## 59 95.0000000
## 60 51.3513514
## 61 37.5000000
## 62 39.6907216
## 63 Inf
## 64 8.8430361
## 65 34.3750000
## 66 15.1515152
## 67 Inf
## 68 Inf
## 69 Inf
## 70 Inf
## 71 Inf
## 72 Inf
## 73 Inf
## 74 Inf
## 75 Inf
## 76 Inf
## 77 Inf
## 78 Inf
## 79 Inf
## 80 Inf
## 81 Inf
## 82 Inf
## 83 Inf
## 84 Inf
## 85 Inf
## 86 76.0000000
## 87 64.0000000
## 88 Inf
## 89 31.2500000
## 90 94.2857143
## 91 Inf
## 92 Inf
## 93 39.3364929
## 94 4.1666667
## 95 3.8461538
## 96 2.9411765
## 97 75.6756757
## 98 Inf
## 99 Inf
## 100 27.8941566
## 101 34.1463415
## 102 7.1895425
## 103 17.6470588
## 104 Inf
## 105 70.2702703
## 106 28.1690141
## 107 17.8571429
## 108 66.6666667
## 109 39.5348837
## 110 37.5000000
## 111 36.3636364
## 112 15.6666667
## 113 50.0000000
## 114 76.7123288
## 115 Inf
## 116 21.6363636
## 117 10.2857143
## 118 36.3128492
## 119 Inf
## 120 Inf
## 121 12.6153846
## 122 9.8214286
## 123 9.4445935
## 124 9.6287531
## 125 1.2748151
## 126 12.8654971
## 127 50.0000000
## 128 16.6666667
## 129 71.5000000
## 130 18.7221397
## 131 34.2592593
## 132 30.4225352
## 133 16.7931281
## 134 23.6811927
## 135 9.0702087
## 136 11.6597725
## 137 2.5242718
## 138 11.1111111
## 139 11.2676056
## 140 24.0740741
## 141 21.5384615
## 142 28.0373832
## 143 18.0327869
## 144 50.0000000
## 145 66.6666667
## 146 50.0000000
## 147 39.7590361
## 148 36.6197183
## 149 11.4352392
## 150 14.1274238
## 151 Inf
## 152 NA
## 153 NA
## 154 NA
## 155 NA
## 156 NA
## 157 NA
## 158 NA
## 159 NA
## 160 NA
## 161 NA
## 162 NA
## 163 NA
## 164 NA
## 165 10.7692308
## 166 10.0000000
## 167 3.0303030
## 168 88.8888889
## 169 Inf
## 170 9.8182884
## 171 85.7142857
## 172 82.6086957
## 173 11.5384615
## 174 39.2405063
## 175 Inf
## 176 Inf
## 177 Inf
## 178 48.6486486
## 179 Inf
## 180 79.3103448
## 181 57.8947368
## 182 50.0000000
## 183 Inf
## 184 Inf
## 185 28.1347962
## 186 Inf
## 187 Inf
## 188 6.0856865
## 189 Inf
## 190 Inf
## 191 Inf
## 192 56.6371681
## 193 Inf
## 194 Inf
## 195 37.6621565
## 196 10.0000000
## 197 37.2137405
## 198 51.7857143
## 199 Inf
## 200 Inf
## 201 59.1836735
## 202 52.2556391
## 203 15.1515152
## 204 Inf
## 205 33.3333333
## 206 Inf
## 207 40.6779661
## 208 78.2608696
## 209 60.0000000
## 210 Inf
## 211 49.0000000
## 212 100.0000000
## 213 75.0000000
## 214 19.6428571
## 215 Inf
## 216 69.2307692
## 217 56.0000000
## 218 Inf
## 219 61.5384615
## 220 Inf
## 221 Inf
## 222 50.0000000
## 223 75.0000000
## 224 100.0000000
## 225 100.0000000
## 226 48.3333333
## 227 Inf
## 228 Inf
## 229 56.3380282
## 230 Inf
## 231 28.6725664
## 232 42.8571429
## 233 Inf
## 234 40.8291457
## 235 Inf
## 236 40.9090909
## 237 Inf
## 238 Inf
## 239 80.0000000
## 240 Inf
## 241 Inf
## 242 48.4974775
## 243 74.0740741
## 244 100.0000000
## 245 17.6470588
## 246 41.1764706
## 247 58.3333333
## 248 28.3018868
## 249 25.0000000
## 250 62.5000000
## 251 100.0000000
## 252 100.0000000
## 253 25.0000000
## 254 66.6666667
## 255 35.2941176
## 256 42.4242424
## 257 34.2105263
## 258 100.0000000
## 259 63.1578947
## 260 90.9090909
## 261 24.4604317
## 262 31.3915858
## 263 46.8599034
## 264 Inf
## 265 54.7619048
## 266 Inf
## 267 42.0000000
## 268 Inf
## 269 Inf
## 270 Inf
## 271 Inf
## 272 Inf
## 273 Inf
## 274 Inf
## 275 Inf
## 276 Inf
## 277 Inf
## 278 Inf
## 279 Inf
## 280 Inf
## 281 13.3333333
## 282 36.2500000
## 283 50.0000000
## 284 63.3333333
## 285 71.4285714
## 286 44.4444444
## 287 Inf
## 288 81.8181818
## 289 76.3157895
## 290 Inf
## 291 Inf
## 292 41.8918919
## 293 Inf
## 294 Inf
## 295 Inf
## 296 Inf
## 297 Inf
## 298 63.0000000
## 299 6.2666667
## 300 64.8936170
## 301 16.0000000
## 302 22.2222222
## 303 2.1739130
## 304 12.5000000
## 305 5.5555556
## 306 3.1250000
## 307 64.2857143
## 308 52.9411765
## 309 Inf
## 310 Inf
## 311 24.4755245
## 312 10.9601449
## 313 47.2222222
## 314 49.0272374
## 315 Inf
## 316 Inf
## 317 Inf
## 318 74.3243243
## 319 Inf
## 320 Inf
## 321 Inf
## 322 Inf
## 323 Inf
## 324 Inf
## 325 40.0000000
## 326 55.5555556
## 327 42.5531915
## 328 25.0000000
## 329 43.5483871
## 330 22.0000000
## 331 50.0000000
## 332 55.4770318
## 333 Inf
## 334 28.8135593
## 335 51.6853933
## 336 24.8470012
## 337 32.7272727
## 338 100.0000000
## 339 18.8888889
## 340 100.0000000
## 341 58.4000000
## 342 Inf
## 343 Inf
## 344 82.2222222
## 345 70.8333333
## 346 38.8888889
## 347 30.0000000
## 348 16.7741935
## 349 28.4000000
## 350 24.4791667
## 351 39.0804598
## 352 Inf
## 353 Inf
## 354 Inf
## 355 0.5055977
## 356 30.8823529
## 357 0.7537688
## 358 22.9437229
## 359 Inf
## 360 Inf
## 361 Inf
## 362 32.9113924
## 363 3.7000000
## 364 NA
## 365 NA
## 366 NA
## 367 NA
## 368 NA
## 369 NA
## 370 NA
## 371 NA
## 372 NA
## 373 NA
## 374 NA
## 375 NA
## 376 NA
## 377 NA
## 378 NA
## 379 NA
## 380 NA
## 381 NA
## 382 NA
## 383 NA
## 384 NA
## 385 NA
## 386 NA
## 387 Inf
## 388 23.8649593
## 389 70.0000000
## 390 38.0952381
## 391 24.5000000
## 392 25.0000000
## 393 Inf
## 394 3.3000000
## 395 95.0000000
## 396 44.5255474
## 397 100.0000000
## 398 13.6363636
## 399 Inf
## 400 76.9230769
## 401 100.0000000
## 402 Inf
## 403 Inf
## 404 Inf
## 405 Inf
## 406 20.0000000
## 407 16.6666667
## 408 10.4249142
## 409 67.1428571
## 410 Inf
## 411 Inf
## 412 Inf
## 413 4.5454545
## 414 Inf
## 415 Inf
## 416 Inf
## 417 Inf
## 418 Inf
## 419 55.0000000
## 420 84.0000000
## 421 Inf
## 422 33.0000000
## 423 Inf
## 424 Inf
## 425 7.2444444
## 426 80.0000000
## 427 40.0000000
## 428 28.7305122
## 429 Inf
## 430 Inf
## 431 55.5555556
## 432 48.4848485
## 433 6.0606061
## 434 Inf
## 435 Inf
## 436 Inf
## 437 Inf
## 438 Inf
## 439 Inf
## 440 Inf
## 441 Inf
## 442 Inf
## 443 Inf
## 444 Inf
## 445 Inf
## 446 Inf
## 447 Inf
## 448 Inf
## 449 Inf
## 450 54.9450549
## 451 Inf
## 452 30.6149733
## 453 Inf
## 454 28.8888889
## 455 33.3333333
## 456 60.0000000
## 457 92.8571429
## 458 80.0000000
## 459 6.0000000
## 460 Inf
## 461 16.8181818
## 462 14.9171271
## 463 26.4150943
## 464 33.0000000
## 465 50.0000000
## 466 Inf
## 467 Inf
## 468 19.9376947
## 469 27.3333333
## 470 Inf
## 471 3.4075295
## 472 24.2424242
## 473 18.1818182
## 474 38.4615385
## 475 83.3333333
## 476 24.6153846
## 477 31.2500000
## 478 26.4150943
## 479 5.7857143
## 480 9.4444444
## 481 35.0364964
## 482 73.0769231
## 483 56.6037736
## 484 20.8805031
## 485 Inf
## 486 10.0000000
## 487 Inf
## 488 1.8625127
## 489 10.4249142
## 490 47.8260870
## 491 30.3571429
## 492 10.0000000
## 493 30.9523810
## 494 27.5000000
## 495 55.0000000
## 496 Inf
## 497 53.3742331
## 498 NA
## 499 NA
## 500 NA
## 501 NA
## 502 NA
## 503 NA
## 504 NA
## 505 NA
## 506 NA
## 507 NA
## 508 NA
## 509 NA
## 510 NA
## 511 NA
## 512 44.2231076
## 513 43.2098765
## 514 45.7777778
## 515 Inf
## 516 Inf
## 517 40.0000000
## 518 50.0000000
## 519 52.3809524
## 520 77.7777778
## 521 100.0000000
## 522 75.0000000
## 523 Inf
## 524 Inf
## 525 Inf
## 526 21.1111111
## 527 22.6683938
## 528 48.1481481
## 529 52.9411765
## 530 28.0423280
## 531 61.9200000
## 532 38.7218045
## 533 Inf
## 534 Inf
## 535 Inf
## 536 Inf
## 537 Inf
## 538 20.8545495
## 539 Inf
## 540 27.1764706
## 541 Inf
## 542 Inf
## 543 Inf
## 544 Inf
## 545 Inf
## 546 Inf
## 547 58.3333333
## 548 Inf
## 549 Inf
## 550 85.2941176
## 551 80.7692308
## 552 43.3333333
## 553 Inf
## 554 Inf
## 555 Inf
## 556 6.5604499
## 557 68.1818182
## 558 Inf
## 559 Inf
## 560 13.3000000
## 561 Inf
## 562 20.0000000
## 563 20.0000000
## 564 Inf
## 565 Inf
## 566 68.4210526
## 567 75.5555556
## 568 Inf
## 569 Inf
## 570 Inf
## 571 Inf
## 572 45.5696203
## 573 85.7142857
## 574 57.1428571
## 575 Inf
## 576 64.7058824
## 577 Inf
## 578 83.3333333
## 579 Inf
## 580 Inf
## 581 64.4067797
## 582 Inf
## 583 60.0000000
## 584 42.8571429
## 585 44.1558442
## 586 90.3225806
## 587 Inf
## 588 Inf
## 589 Inf
## 590 75.0000000
## 591 51.3513514
## 592 12.1661721
## 593 Inf
## 594 46.4285714
## 595 61.1111111
## 596 Inf
## 597 100.0000000
## 598 50.0000000
## 599 Inf
## 600 Inf
## 601 66.6666667
## 602 40.0000000
## 603 Inf
## 604 62.9629630
## 605 75.0000000
## 606 Inf
## 607 100.0000000
## 608 31.5789474
## 609 Inf
## 610 34.8101266
## 611 43.1578947
## 612 Inf
## 613 Inf
## 614 Inf
## 615 Inf
## 616 70.0000000
## 617 36.3636364
## 618 Inf
## 619 Inf
## 620 Inf
## 621 Inf
## 622 Inf
## 623 Inf
## 624 Inf
## 625 100.0000000
## 626 59.3750000
## 627 Inf
## 628 Inf
## 629 Inf
## 630 100.0000000
## 631 54.5454545
## 632 100.0000000
## 633 Inf
## 634 39.4636015
## 635 50.7109005
## 636 17.9389313
## 637 Inf
## 638 100.0000000
## 639 90.9090909
## 640 47.5000000
## 641 52.9411765
## 642 59.3750000
## 643 16.6666667
## 644 87.5000000
## 645 52.5925926
## 646 75.0000000
## 647 66.6666667
## 648 77.7777778
## 649 78.5714286
## 650 38.8888889
## 651 44.8275862
## 652 100.0000000
## 653 40.0000000
## 654 70.0000000
## 655 37.2093023
## 656 46.6666667
## 657 100.0000000
## 658 100.0000000
## 659 32.4324324
## 660 86.6666667
## 661 100.0000000
## 662 73.3333333
## 663 55.5555556
## 664 60.7142857
## 665 48.8888889
## 666 33.3333333
## 667 52.1739130
## 668 36.3636364
## 669 40.0000000
## 670 100.0000000
## 671 25.8064516
## 672 12.2448980
## 673 95.0000000
## 674 28.5714286
## 675 100.0000000
## 676 100.0000000
## 677 51.9230769
## 678 42.0000000
## 679 2.7914286
## 680 18.1855333
## 681 58.3941606
## 682 Inf
## 683 Inf
## 684 Inf
## 685 7.0652174
## 686 64.0232108
## 687 61.9718310
## 688 Inf
## 689 Inf
## 690 Inf
## 691 Inf
## 692 Inf
## 693 Inf
## 694 Inf
## 695 Inf
## 696 Inf
## 697 Inf
## 698 Inf
## 699 Inf
## 700 Inf
## 701 Inf
## 702 Inf
## 703 Inf
## 704 Inf
## 705 Inf
## 706 Inf
## 707 62.6506024
## 708 85.2941176
## 709 79.7872340
## 710 8.0000000
## 711 40.0000000
## 712 13.6363636
## 713 84.6153846
## 714 Inf
## [ reached 'max' / getOption("max.print") -- omitted 308 rows ]
## id Author Pub_Year pubmedid EpiCurve
## 1 2 Akihara 2005 15841336 Y
## 2 75 CDC 1993 8246858 Y
## 3 83 CDC 2002 12530708 Y
## 4 116 Dingle 2004 15364974 N
## 5 117 Dingle 2004 15364974 N
## 6 118 Dingle 2004 15364974 N
## 7 119 Dingle 2004 15364974 N
## 8 120 Dingle 2004 15364974 N
## 9 121 Dingle 2004 15364974 N
## 10 122 Dingle 2004 15364974 N
## 11 123 Dingle 2004 15364974 N
## 12 124 Dingle 2004 15364974 N
## 13 125 Dingle 2004 15364974 N
## 14 126 Dingle 2004 15364974 N
## 15 131 Dingle 2004 15364974 N
## 16 132 Dingle 2004 15364974 N
## 17 139 Dowell 1995 7769284 Y
## 18 147 Farkas 2002 12116006 N
## 19 149 Ferreira 2008 18098155 Y
## 20 165 Girish 2002 12116011 N
## 21 166 Goller 2004 15108754 N
## 22 201 Hamano 2005 16121370 N
## 23 275 Iritani 2000 10878058 N
## 24 364 Kageyama 2004 15243049 N
## 25 403 Le Guyader 2004 15541804 N
## 26 410 Love 2002 12211579 Y
## 27 412 Lynn 2004 15014560 Y
## 28 418 Lysen 2009 19494060 N
## 29 419 Lysen 2009 19494060 N
## 30 420 Lysen 2009 19494060 N
## 31 421 Lysen 2009 19494060 N
## 32 422 Lysen 2009 19494060 N
## 33 424 Lysen 2009 19494060 N
## 34 426 Lysen 2009 19494060 N
## 35 427 Lysen 2009 19494060 N
## 36 432 Lysen 2009 19494060 N
## 37 445 Lysen 2009 19494060 N
## 38 446 Lysen 2009 19494060 N
## 39 447 Lysen 2009 19494060 N
## 40 464 Lysen 2009 19494060 N
## 41 465 Lysen 2009 19494060 N
## 42 466 Lysen 2009 19494060 N
## 43 471 Lysen 2009 19494060 N
## 44 472 Lysen 2009 19494060 N
## 45 482 Mattner 2006 16460549 N
## 46 543 O'Neill 2001 11511325 N
## 47 549 O'Neill 2001 11511325 N
## 48 622 Reuter 2002 19345441 N
## 49 631 Reuter 2002 12226827 N
## 50 647 Sala 2009 18667107 N
## 51 750 Verbelen 2004 15065694 Y
## 52 795 White 2002 12210438 N
## 53 796 White 2002 12210438 N
## 54 901 Gaulin 1999 10694160
## 55 11 Baert 2009 19134230 N
## 56 66 Calderon-Margalit 2005 15724708 Y
## 57 71 Cauchi 1996 8732863 N
## 58 72 Cauchi 1996 8732863 N
## 59 81 CDC 2002 12064451 N
## 60 92 CDC 2006 16617287 Y
## 61 104 Chatterjee 2004 15095203 N
## 62 110 Cooper 2005 15796276 Y
## 63 112 Cunha 2008 18621444 N
## 64 135 Dingle 2004 15364974 N
## 65 136 Dingle 2004 15364974 N
## 66 137 Dingle 2004 15364974 N
## 67 151 Fretz 2003 14517725 Y
## 68 159 Fretz 2005 15962549 Y
## 69 175 Halperin 2005 16231127 N
## 70 177 Halperin 2005 16231127 N
## 71 190 Hamano 2005 16121370 N
## 72 205 Hamano 2005 16121370 N
## 73 224 Hamano 2005 16121370 N
## 74 255 Iritani 2000 10878058 N
## 75 271 Iritani 2000 10878058 N
## 76 273 Iritani 2000 10878058 N
## 77 281 Iritani 2000 10878058 N
## 78 303 Iritani 2008 18495859 N
## 79 304 Iritani 2008 18495859 N
## 80 306 Iritani 2008 18495859 N
## 81 309 Iritani 2008 18495859 N
## 82 311 Iritani 2008 18495859 N
## 83 313 Iritani 2008 18495859 N
## 84 314 Iritani 2008 18495859 N
## 85 316 Iritani 2008 18495859 N
## 86 317 Iritani 2008 18495859 N
## 87 397 Koo 2009 19245344 Y
## 88 402 Le Guyader 2003 12927712 N
## 89 413 Lysen 2009 19494060 N
## 90 423 Lysen 2009 19494060 N
## 91 425 Lysen 2009 19494060 N
## 92 442 Lysen 2009 19494060 N
## 93 443 Lysen 2009 19494060 N
## 94 448 Lysen 2009 19494060 N
## 95 449 Lysen 2009 19494060 N
## 96 456 Lysen 2009 19494060 N
## 97 457 Lysen 2009 19494060 N
## 98 458 Lysen 2009 19494060 N
## 99 459 Lysen 2009 19494060 N
## 100 460 Lysen 2009 19494060 N
## 101 480 Martinelli 2007 17868612 Y
## 102 503 McEvoy 1996 8990576 Y
## 103 521 kagawa-Okamoto 2009 19168964 N
## 104 524 kagawa-Okamoto 2009 19168964 N
## 105 537 Nygard 2003 14720394 N
## 106 545 O'Neill 2001 11511325 N
## 107 546 O'Neill 2001 11511325 N
## 108 547 O'Neill 2001 11511325 N
## 109 548 O'Neill 2001 11511325 N
## 110 620 Prato 2004 15383150 Y
## 111 624 Reuter 2002 12226827 N
## 112 640 Russo 1997 9324510 Y
## 113 641 Russo 1997 9324510 Y
## 114 646 Sala 2005 15724726 Y
## 115 653 Schreier 2000 10795514 N
## 116 664 Schreier 2000 10795514 N
## 117 665 Schreier 2000 10795514 N
## 118 666 Schreier 2000 10795514 N
## 119 667 Schreier 2000 10795514 N
## 120 668 Schreier 2000 10795514 N
## 121 699 Shieh 2000 10804149 N
## 122 732 Tseng 2007 17133557 N
## 123 733 Tseng 2007 17133557 N
## 124 798 White 2002 12210438 N
## 125 800 White 2002 12210438 N
## 126 803 White 2002 12210438 N
## 127 841 Yu 2007 17893314 Y
## 128 851 Borchardt 2011 20199588 Y
## 129 884 Miyoshi 2010 20093770 Y
## 130 1 Akihara 2005 15841336 Y
## 131 20 Boccia 2002 12023910 Y
## 132 36 Boxman 2009 19205471 N
## 133 47 Boxman 2009 19722414 N
## 134 49 Brugha 1999 10098798 Y
## 135 63 Bull 2005 16022784 N
## 136 69 Cauchi 1996 8732863 N
## 137 98 Chatterjee 2004 15095203 N
## 138 103 Chatterjee 2004 15095203 N
## 139 105 Chatterjee 2004 15095203 N
## 140 108 Cheng 2009 19592137 N
## 141 144 Falkenhorst 2005 16788235 N
## 142 145 Falkenhorst 2005 16788235 N
## 143 146 Falkenhorst 2005 16788235 N
## 144 148 Farkas 2002 12116006 N
## 145 164 Gilbride 2009 19193019 Y
## 146 178 Halperin 2005 16231127 N
## 147 179 Halperin 2005 16231127 N
## 148 235 Iritani 2000 10878058 N
## 149 236 Iritani 2000 10878058 N
## 150 415 Lysen 2009 19494060 N
## 151 416 Lysen 2009 19494060 N
## 152 417 Lysen 2009 19494060 N
## 153 428 Lysen 2009 19494060 N
## 154 429 Lysen 2009 19494060 N
## 155 430 Lysen 2009 19494060 N
## 156 431 Lysen 2009 19494060 N
## 157 444 Lysen 2009 19494060 N
## 158 450 Lysen 2009 19494060 N
## 159 451 Lysen 2009 19494060 N
## 160 461 Lysen 2009 19494060 N
## 161 462 Lysen 2009 19494060 N
## 162 463 Lysen 2009 19494060 N
## 163 468 Lysen 2009 19494060 N
## 164 469 Lysen 2009 19494060 N
## 165 470 Lysen 2009 19494060 N
## 166 474 Malek 2009 19025489 Y
## 167 483 Maunula 2004 15310176 N
## 168 508 Migliorati 2008 18325266 Y
## 169 625 Reuter 2002 12226827 N
## 170 626 Reuter 2002 12226827 N
## 171 648 Sartorius 2007 17454896 Y
## 172 790 Webby 2007 17366444 Y
## 173 799 White 2002 12210438 N
## 174 879 Morillo 2011 21537761 N
## 175 19 Berg 2000 10804152 Y
## 176 21 Boxman 2009 19205471 N
## 177 46 Boxman 2009 19205471 N
## 178 48 Brown 2001 11467799 Y
## 179 64 Bull 2005 16022784 N
## 180 97 Chatterjee 2004 15095203 N
## 181 99 Chatterjee 2004 15095203 N
## 182 100 Chatterjee 2004 15095203 N
## 183 101 Chatterjee 2004 15095203 N
## 184 102 Chatterjee 2004 15095203 N
## 185 114 David 2007 17883318 Y
## 186 127 Dingle 2004 15364974 N
## 187 128 Dingle 2004 15364974 N
## 188 129 Dingle 2004 15364974 N
## 189 130 Dingle 2004 15364974 N
## 190 133 Dingle 2004 15364974 N
## 191 134 Dingle 2004 15364974 N
## 192 141 Doyle 2004 15075483 Y
## 193 142 Evans 2002 12403111 N
## 194 155 Fretz 2005 15962549 Y
## 195 157 Fretz 2005 15962549 Y
## 196 158 Fretz 2005 15962549 Y
## 197 170 Green 1995 7775939 N
## 198 171 Green 1995 7775939 N
## 199 176 Halperin 2005 16231127 N
## 200 182 Hamano 2005 16121370 N
## 201 183 Hamano 2005 16121370 N
## 202 188 Hamano 2005 16121370 N
## 203 191 Hamano 2005 16121370 N
## 204 192 Hamano 2005 16121370 N
## 205 193 Hamano 2005 16121370 N
## 206 198 Hamano 2005 16121370 N
## 207 203 Hamano 2005 16121370 N
## 208 206 Hamano 2005 16121370 N
## 209 207 Hamano 2005 16121370 N
## 210 209 Hamano 2005 16121370 N
## 211 217 Hamano 2005 16121370 N
## 212 218 Hamano 2005 16121370 N
## 213 219 Hamano 2005 16121370 N
## 214 227 Hewitt 2007 17965205 Y
## 215 238 Iritani 2000 10878058 N
## 216 241 Iritani 2000 10878058 N
## 217 242 Iritani 2000 10878058 N
## 218 245 Iritani 2000 10878058 N
## 219 248 Iritani 2000 10878058 N
## 220 251 Iritani 2000 10878058 N
## 221 258 Iritani 2000 10878058 N
## 222 259 Iritani 2000 10878058 N
## 223 260 Iritani 2000 10878058 N
## 224 261 Iritani 2000 10878058 N
## 225 264 Iritani 2000 10878058 N
## 226 265 Iritani 2000 10878058 N
## 227 266 Iritani 2000 10878058 N
## 228 267 Iritani 2000 10878058 N
## 229 268 Iritani 2000 10878058 N
## 230 276 Iritani 2000 10878058 N
## 231 277 Iritani 2000 10878058 N
## 232 280 Iritani 2000 10878058 N
## 233 282 Iritani 2002 11748669 N
## 234 283 Iritani 2002 11748669 N
## 235 287 Iritani 2002 11748669 N
## 236 291 Iritani 2002 11748669 N
## 237 389 Khan 1994 8150941 N
## 238 390 Khan 2003 14529638 Y
## 239 391 Kilgore 1996 8603955 Y
## 240 400 Kuusi 2002 12211580 Y
## 241 404 Le Guyader 2006 17088365 N
## 242 405 Le Guyader 2008 18842942 N
## 243 411 Lynn 2004 15014560 Y
## 244 414 Lysen 2009 19494060 N
## 245 433 Lysen 2009 19494060 N
## 246 434 Lysen 2009 19494060 N
## 247 435 Lysen 2009 19494060 N
## 248 436 Lysen 2009 19494060 N
## 249 437 Lysen 2009 19494060 N
## 250 438 Lysen 2009 19494060 N
## 251 439 Lysen 2009 19494060 N
## 252 440 Lysen 2009 19494060 N
## 253 441 Lysen 2009 19494060 N
## 254 452 Lysen 2009 19494060 N
## 255 453 Lysen 2009 19494060 N
## 256 454 Lysen 2009 19494060 N
## 257 455 Lysen 2009 19494060 N
## 258 467 Lysen 2009 19494060 N
## 259 500 McCall 2002 12434696 Y
## 260 502 McDonnell 1997 8996048 Y
## 261 510 Miller 2002 12549523 Y
## 262 514 kagawa-Okamoto 2009 19168964 N
## 263 515 kagawa-Okamoto 2009 19168964 N
## 264 516 kagawa-Okamoto 2009 19168964 N
## 265 517 kagawa-Okamoto 2009 19168964 N
## 266 518 kagawa-Okamoto 2009 19168964 N
## 267 519 kagawa-Okamoto 2009 19168964 N
## 268 520 kagawa-Okamoto 2009 19168964 N
## 269 522 kagawa-Okamoto 2009 19168964 N
## 270 523 kagawa-Okamoto 2009 19168964 N
## 271 525 varro 2005 15796277 Y
## 272 544 O'Neill 2001 11511325 N
## 273 551 O'Neill 2001 11511325 N
## 274 554 Oogane 2008 18806360 N
## 275 611 Papadopoulos 2006 16680229 Y
## 276 621 Rao 2009 19619058 Y
## 277 623 Reuter 2002 12226827 N
## 278 643 Sakon 2005 16116265 Y
## 279 644 Sakon 2005 16116265 Y
## 280 645 Sakon 2005 16116265 Y
## 281 654 Schreier 2000 10795514 N
## 282 655 Schreier 2000 10795514 N
## 283 656 Schreier 2000 10795514 N
## 284 657 Schreier 2000 10795514 N
## 285 658 Schreier 2000 10795514 N
## 286 659 Schreier 2000 10795514 N
## 287 660 Schreier 2000 10795514 N
## 288 661 Schreier 2000 10795514 N
## 289 662 Schreier 2000 10795514 N
## 290 663 Schreier 2000 10795514 N
## 291 669 Schvoerer 1999 10549314 N
## 292 723 Simon 2006 16716968 Y
## 293 725 Stafford 1997 9375446 Y
## 294 791 Weber 2005 16276961
## 295 793 White 2002 12210438 N
## 296 794 White 2002 12210438 N
## 297 797 White 2002 12210438 N
## 298 801 White 2002 12210438 N
## 299 802 White 2002 12210438 N
## 300 50 Buesa 2002 12149342 N
## 301 51 Buesa 2002 12149342 N
## 302 52 Buesa 2002 12149342 N
## 303 53 Buesa 2002 12149342 N
## 304 54 Buesa 2002 12149342 N
## 305 55 Buesa 2002 12149342 N
## 306 56 Buesa 2002 12149342 N
## 307 57 Buesa 2002 12149342 N
## 308 58 Buesa 2002 12149342 N
## 309 59 Buesa 2002 12149342 N
## 310 60 Buesa 2002 12149342 N
## 311 61 Buesa 2002 12149342 N
## 312 62 Buesa 2002 12149342 N
## 313 724 St. Clair 2008 18721067 N
## 314 727 Tan 2008 18461617 N
## 315 728 Tan 2008 18461617 N
## 316 852 Cheesbrough 1997 9152829 N
## 317 866 Christensen 1998 NA N
## 318 867 Friesema 2009 19796988 N
## 319 868 Friesema 2009 19796988 N
## 320 869 Friesema 2009 19796988 N
## 321 870 Friesema 2009 19796988 N
## 322 874 Kimura 2011 20429969 Y
## 323 875 Kirby 2010 20637439 N
## TDComment AHComment Trans1
## 1 Unspecified
## 2 Foodborne
## 3 Unspecified
## 4 Unspecified
## 5 Unspecified
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 Unspecified
## 10 Unspecified
## 11 Unspecified
## 12 Unspecified
## 13 Unspecified
## 14 Unspecified
## 15 Unspecified
## 16 Unspecified
## 17 Not sure Foodborne
## 18 Foodborne
## 19 Unspecified
## 20 Foodborne
## 21 Unspecified
## 22 Person to Person
## 23 Unknown
## 24 Unspecified
## 25 Foodborne
## 26 Foodborne
## 27 Unspecified
## 28 Foodborne
## 29 Unspecified
## 30 Foodborne
## 31 Foodborne
## 32 Foodborne
## 33 Waterborne
## 34 Foodborne
## 35 Waterborne
## 36 Foodborne
## 37 Foodborne
## 38 Foodborne
## 39 Foodborne
## 40 Unspecified
## 41 Foodborne
## 42 Foodborne
## 43 Foodborne
## 44 Foodborne
## 45 Person to Person
## 46 Unspecified
## 47 Unspecified
## 48 Foodborne
## 49 Person to Person
## 50 Foodborne
## 51 Person to Person
## 52 Unspecified
## 53 Unspecified
## 54 Not found in folder of articles Foodborne
## 55 Foodborne
## 56 probably not usable Environmental
## 57 Unspecified
## 58 Person to Person
## 59 Person to Person
## 60 Foodborne
## 61 Foodborne
## 62 Unspecified
## 63 Unspecified
## 64 Unspecified
## 65 Unspecified
## 66 Unspecified
## 67 confirmed Person to Person
## 68 Person to Person
## 69 Unspecified
## 70 Unspecified
## 71 Foodborne
## 72 Person to Person
## 73 Person to Person
## 74 Unknown
## 75 Foodborne
## 76 Unknown
## 77 Unknown
## 78 Unknown
## 79 Foodborne
## 80 Person to Person
## 81 Person to Person
## 82 Person to Person
## 83 Person to Person
## 84 Person to Person
## 85 Person to Person
## 86 Person to Person
## 87 Person to Person
## 88 Foodborne
## 89 Unspecified
## 90 Waterborne
## 91 Foodborne
## 92 Foodborne
## 93 Foodborne
## 94 Foodborne
## 95 Unspecified
## 96 Foodborne
## 97 Foodborne
## 98 Foodborne
## 99 Foodborne
## 100 Foodborne
## 101 Not sure Waterborne
## 102 Person to Person
## 103 Foodborne
## 104 Foodborne
## 105 Waterborne
## 106 Unspecified
## 107 Unspecified
## 108 Unspecified
## 109 Unspecified
## 110 Foodborne
## 111 Waterborne
## 112 Person to Person
## 113 Person to Person
## 114 Foodborne
## 115 Unspecified
## 116 Unspecified
## 117 Unspecified
## 118 Unspecified
## 119 Unspecified
## 120 Unspecified
## 121 Foodborne
## 122 Foodborne
## 123 Foodborne
## 124 Unspecified
## 125 Unspecified
## 126 Unspecified
## 127 Unspecified
## 128 Waterborne
## 129 Unknown
## 130 confirmed Unspecified
## 131 Waterborne
## 132 Foodborne
## 133 Person to Person
## 134 Waterborne
## 135 Unspecified
## 136 Unspecified
## 137 Unknown
## 138 Person to Person
## 139 Person to Person
## 140 Person to Person
## 141 Foodborne
## 142 Foodborne
## 143 Foodborne
## 144 Person to Person
## 145 Unspecified
## 146 Unspecified
## 147 Unspecified
## 148 Unknown
## 149 Unknown
## 150 Waterborne
## 151 Foodborne
## 152 Waterborne
## 153 Foodborne
## 154 Foodborne
## 155 Foodborne
## 156 Foodborne
## 157 Foodborne
## 158 Foodborne
## 159 Waterborne
## 160 Waterborne
## 161 Unspecified
## 162 Foodborne
## 163 Waterborne
## 164 Waterborne
## 165 Waterborne
## 166 Foodborne
## 167 Waterborne
## 168 Waterborne
## 169 Unspecified
## 170 Person to Person
## 171 Waterborne
## 172 Foodborne
## 173 Unspecified
## 174 Unspecified
## 175 Foodborne
## 176 Foodborne
## 177 Foodborne
## 178 Waterborne
## 179 Unspecified
## 180 Waterborne
## 181 Person to Person
## 182 Foodborne
## 183 Person to Person
## 184 Person to Person
## 185 Foodborne
## 186 Unspecified
## 187 Unspecified
## 188 Unspecified
## 189 Unspecified
## 190 Unspecified
## 191 Unspecified
## 192 Foodborne
## 193 Environmental
## 194 Waterborne
## 195 Person to Person
## 196 Person to Person
## 197 Person to Person
## 198 Person to Person
## 199 Unspecified
## 200 Unspecified
## 201 Foodborne
## 202 Unspecified
## 203 Unspecified
## 204 Unspecified
## 205 Foodborne
## 206 Person to Person
## 207 Unspecified
## 208 Person to Person
## 209 Unspecified
## 210 Unspecified
## 211 Person to Person
## 212 Person to Person
## 213 Person to Person
## 214 Waterborne
## 215 Unknown
## 216 Foodborne
## 217 Unknown
## 218 Unknown
## 219 Foodborne
## 220 Person to Person
## 221 Foodborne
## 222 Foodborne
## 223 Unknown
## 224 Foodborne
## 225 Foodborne
## 226 Foodborne
## 227 Foodborne
## 228 Foodborne
## 229 Foodborne
## 230 Unknown
## 231 Unknown
## 232 Unknown
## 233 Foodborne
## 234 Foodborne
## 235 Unknown
## 236 Unknown
## 237 Waterborne
## 238 Person to Person
## 239 Foodborne
## 240 Person to Person
## 241 Foodborne
## 242 Foodborne
## 243 Not sure Unspecified
## 244 Waterborne
## 245 Foodborne
## 246 Foodborne
## 247 Foodborne
## 248 Foodborne
## 249 Foodborne
## 250 Foodborne
## 251 Foodborne
## 252 Foodborne
## 253 Unspecified
## 254 Unspecified
## 255 Foodborne
## 256 Foodborne
## 257 Unspecified
## 258 Foodborne
## 259 Person to Person
## 260 Unspecified
## 261 Person to Person
## 262 Foodborne
## 263 Foodborne
## 264 Foodborne
## 265 Foodborne
## 266 Foodborne
## 267 Foodborne
## 268 Foodborne
## 269 Foodborne
## 270 Foodborne
## 271 Person to Person
## 272 Unspecified
## 273 Unspecified
## 274 Foodborne
## 275 Not sure Waterborne
## 276 Person to Person
## 277 Unspecified
## 278 Person to Person
## 279 Person to Person
## 280 Unspecified
## 281 Unspecified
## 282 Unspecified
## 283 Unspecified
## 284 Unspecified
## 285 Unspecified
## 286 Unspecified
## 287 Unspecified
## 288 Unspecified
## 289 Unspecified
## 290 Unspecified
## 291 Waterborne
## 292 Unknown
## 293 Foodborne
## 294 Not found in folder of articles Person to Person
## 295 Unspecified
## 296 Unspecified
## 297 Unspecified
## 298 Unspecified
## 299 Unspecified
## 300 Unspecified
## 301 Unspecified
## 302 Unspecified
## 303 Unspecified
## 304 Unspecified
## 305 Unspecified
## 306 Unspecified
## 307 Unspecified
## 308 Unspecified
## 309 Unspecified
## 310 Unspecified
## 311 Unspecified
## 312 Unspecified
## 313 Unspecified
## 314 Foodborne
## 315 Foodborne
## 316 Unspecified
## 317 Not found on Pubmed Foodborne
## 318 Unspecified
## 319 Unspecified
## 320 Unspecified
## 321 Unspecified
## 322 Environmental
## 323 Unspecified
## Trans1_O Trans2 Trans2_O Trans3 Trans3_O Risk1
## 1 0 (not applicable) 0 (not applicable) 0 0
## 2 0 (not applicable) 0 (not applicable) 0 0
## 3 0 (not applicable) 0 (not applicable) 0 0
## 4 0 (not applicable) 0 (not applicable) 0 0
## 5 0 (not applicable) 0 (not applicable) 0 0
## 6 0 (not applicable) 0 (not applicable) 0 0
## 7 0 (not applicable) 0 (not applicable) 0 0
## 8 0 (not applicable) 0 (not applicable) 0 0
## 9 0 (not applicable) 0 (not applicable) 0 0
## 10 0 (not applicable) 0 (not applicable) 0 0
## 11 0 (not applicable) 0 (not applicable) 0 0
## 12 0 (not applicable) 0 (not applicable) 0 0
## 13 0 (not applicable) 0 (not applicable) 0 0
## 14 0 (not applicable) 0 (not applicable) 0 0
## 15 0 (not applicable) 0 (not applicable) 0 0
## 16 0 (not applicable) 0 (not applicable) 0 0
## 17 0 (not applicable) 0 (not applicable) 0 0
## 18 0 (not applicable) 0 (not applicable) 0 0
## 19 0 (not applicable) 0 (not applicable) 0 0
## 20 0 (not applicable) 0 (not applicable) 0 0
## 21 0 (not applicable) 0 (not applicable) 0 0
## 22 0 (not applicable) 0 (not applicable) 0 0
## 23 0 (not applicable) 0 (not applicable) 0 0
## 24 0 (not applicable) 0 (not applicable) 0 0
## 25 0 (not applicable) 0 (not applicable) 0 0
## 26 0 Person to Person 0 Environmental 0 0
## 27 0 (not applicable) 0 (not applicable) 0 0
## 28 0 (not applicable) 0 (not applicable) 0 0
## 29 0 (not applicable) 0 (not applicable) 0 0
## 30 0 (not applicable) 0 (not applicable) 0 0
## 31 0 (not applicable) 0 (not applicable) 0 0
## 32 0 (not applicable) 0 (not applicable) 0 0
## 33 0 (not applicable) 0 (not applicable) 0 0
## 34 0 (not applicable) 0 (not applicable) 0 0
## 35 0 (not applicable) 0 (not applicable) 0 0
## 36 0 (not applicable) 0 (not applicable) 0 0
## 37 0 (not applicable) 0 (not applicable) 0 0
## 38 0 (not applicable) 0 (not applicable) 0 0
## 39 0 (not applicable) 0 (not applicable) 0 0
## 40 0 (not applicable) 0 (not applicable) 0 0
## 41 0 (not applicable) 0 (not applicable) 0 0
## 42 0 (not applicable) 0 (not applicable) 0 0
## 43 0 (not applicable) 0 (not applicable) 0 0
## 44 0 (not applicable) 0 (not applicable) 0 0
## 45 0 (not applicable) 0 (not applicable) 0 0
## 46 0 (not applicable) 0 (not applicable) 0 0
## 47 0 (not applicable) 0 (not applicable) 0 0
## 48 0 (not applicable) 0 (not applicable) 0 0
## 49 0 (not applicable) 0 (not applicable) 0 0
## 50 0 (not applicable) 0 (not applicable) 0 0
## 51 0 (not applicable) 0 (not applicable) 0 0
## 52 0 (not applicable) 0 (not applicable) 0 0
## 53 0 (not applicable) 0 (not applicable) 0 0
## 54 0 (not applicable) 0 (not applicable) 0 0
## 55 0 (not applicable) 0 (not applicable) 0 0
## 56 0 Person to Person 0 (not applicable) 0 0
## 57 0 (not applicable) 0 (not applicable) 0 0
## 58 0 (not applicable) 0 (not applicable) 0 0
## 59 0 (not applicable) 0 (not applicable) 0 0
## 60 0 (not applicable) 0 (not applicable) 0 0
## 61 0 (not applicable) 0 (not applicable) 0 0
## 62 0 (not applicable) 0 (not applicable) 0 0
## 63 0 (not applicable) 0 (not applicable) 0 0
## 64 0 (not applicable) 0 (not applicable) 0 0
## 65 0 (not applicable) 0 (not applicable) 0 0
## 66 0 (not applicable) 0 (not applicable) 0 0
## 67 0 (not applicable) 0 (not applicable) 0 0
## 68 0 (not applicable) 0 (not applicable) 0 0
## 69 0 (not applicable) 0 (not applicable) 0 0
## 70 0 (not applicable) 0 (not applicable) 0 0
## 71 0 (not applicable) 0 (not applicable) 0 0
## 72 0 (not applicable) 0 (not applicable) 0 0
## 73 0 (not applicable) 0 (not applicable) 0 0
## 74 0 (not applicable) 0 (not applicable) 0 0
## 75 0 (not applicable) 0 (not applicable) 0 0
## 76 0 (not applicable) 0 (not applicable) 0 0
## 77 0 (not applicable) 0 (not applicable) 0 0
## 78 0 (not applicable) 0 (not applicable) 0 0
## 79 0 (not applicable) 0 (not applicable) 0 0
## 80 0 (not applicable) 0 (not applicable) 0 0
## 81 0 (not applicable) 0 (not applicable) 0 0
## 82 0 (not applicable) 0 (not applicable) 0 0
## 83 0 (not applicable) 0 (not applicable) 0 0
## 84 0 (not applicable) 0 (not applicable) 0 0
## 85 0 (not applicable) 0 (not applicable) 0 0
## 86 0 (not applicable) 0 (not applicable) 0 0
## 87 0 Environmental 0 (not applicable) 0 0
## 88 0 (not applicable) 0 (not applicable) 0 0
## 89 0 (not applicable) 0 (not applicable) 0 0
## 90 0 (not applicable) 0 (not applicable) 0 0
## 91 0 (not applicable) 0 (not applicable) 0 0
## 92 0 (not applicable) 0 (not applicable) 0 0
## 93 0 (not applicable) 0 (not applicable) 0 0
## 94 0 (not applicable) 0 (not applicable) 0 0
## 95 0 (not applicable) 0 (not applicable) 0 0
## 96 0 (not applicable) 0 (not applicable) 0 0
## 97 0 (not applicable) 0 (not applicable) 0 0
## 98 0 (not applicable) 0 (not applicable) 0 0
## 99 0 (not applicable) 0 (not applicable) 0 0
## 100 0 (not applicable) 0 (not applicable) 0 0
## 101 0 (not applicable) 0 (not applicable) 0 0
## 102 0 (not applicable) 0 (not applicable) 0 0
## 103 0 (not applicable) 0 (not applicable) 0 0
## 104 0 (not applicable) 0 (not applicable) 0 0
## 105 0 Person to Person 0 Environmental 0 0
## 106 0 (not applicable) 0 (not applicable) 0 0
## 107 0 (not applicable) 0 (not applicable) 0 0
## 108 0 (not applicable) 0 (not applicable) 0 0
## 109 0 (not applicable) 0 (not applicable) 0 0
## 110 0 Person to Person 0 (not applicable) 0 0
## 111 0 (not applicable) 0 (not applicable) 0 0
## 112 0 (not applicable) 0 (not applicable) 0 0
## 113 0 (not applicable) 0 (not applicable) 0 0
## 114 0 (not applicable) 0 (not applicable) 0 0
## 115 0 (not applicable) 0 (not applicable) 0 0
## 116 0 (not applicable) 0 (not applicable) 0 0
## 117 0 (not applicable) 0 (not applicable) 0 0
## 118 0 (not applicable) 0 (not applicable) 0 0
## 119 0 (not applicable) 0 (not applicable) 0 0
## 120 0 (not applicable) 0 (not applicable) 0 0
## 121 0 (not applicable) 0 (not applicable) 0 0
## 122 0 (not applicable) 0 (not applicable) 0 0
## 123 0 (not applicable) 0 (not applicable) 0 0
## 124 0 (not applicable) 0 (not applicable) 0 0
## 125 0 (not applicable) 0 (not applicable) 0 0
## 126 0 (not applicable) 0 (not applicable) 0 0
## 127 0 (not applicable) 0 (not applicable) 0 0
## 128 0 Foodborne 0 (not applicable) 0 0
## 129 0 (not applicable) 0 (not applicable) 0 0
## 130 0 (not applicable) 0 (not applicable) 0 0
## 131 0 Person to Person 0 (not applicable) 0 0
## 132 0 (not applicable) 0 (not applicable) 0 0
## 133 0 Environmental 0 Foodborne 0 0
## 134 0 Foodborne 0 (not applicable) 0 0
## 135 0 (not applicable) 0 (not applicable) 0 0
## 136 0 (not applicable) 0 (not applicable) 0 0
## 137 0 (not applicable) 0 (not applicable) 0 0
## 138 0 (not applicable) 0 (not applicable) 0 0
## 139 0 (not applicable) 0 (not applicable) 0 0
## 140 0 (not applicable) 0 (not applicable) 0 0
## 141 0 (not applicable) 0 (not applicable) 0 0
## 142 0 (not applicable) 0 (not applicable) 0 0
## 143 0 (not applicable) 0 (not applicable) 0 0
## 144 0 (not applicable) 0 (not applicable) 0 0
## 145 0 (not applicable) 0 (not applicable) 0 0
## 146 0 (not applicable) 0 (not applicable) 0 0
## 147 0 (not applicable) 0 (not applicable) 0 0
## 148 0 (not applicable) 0 (not applicable) 0 0
## 149 0 (not applicable) 0 (not applicable) 0 0
## 150 0 (not applicable) 0 (not applicable) 0 0
## 151 0 (not applicable) 0 (not applicable) 0 0
## 152 0 (not applicable) 0 (not applicable) 0 0
## 153 0 (not applicable) 0 (not applicable) 0 0
## 154 0 (not applicable) 0 (not applicable) 0 0
## 155 0 (not applicable) 0 (not applicable) 0 0
## 156 0 (not applicable) 0 (not applicable) 0 0
## 157 0 (not applicable) 0 (not applicable) 0 0
## 158 0 (not applicable) 0 (not applicable) 0 0
## 159 0 (not applicable) 0 (not applicable) 0 0
## 160 0 (not applicable) 0 (not applicable) 0 0
## 161 0 (not applicable) 0 (not applicable) 0 0
## 162 0 (not applicable) 0 (not applicable) 0 0
## 163 0 (not applicable) 0 (not applicable) 0 0
## 164 0 (not applicable) 0 (not applicable) 0 0
## 165 0 (not applicable) 0 (not applicable) 0 0
## 166 0 Environmental 0 (not applicable) 0 0
## 167 0 (not applicable) 0 (not applicable) 0 0
## 168 0 Environmental 0 (not applicable) 0 0
## 169 0 (not applicable) 0 (not applicable) 0 0
## 170 0 (not applicable) 0 (not applicable) 0 0
## 171 0 Person to Person 0 (not applicable) 0 0
## 172 0 (not applicable) 0 (not applicable) 0 0
## 173 0 (not applicable) 0 (not applicable) 0 0
## 174 0 (not applicable) 0 (not applicable) 0 0
## 175 0 (not applicable) 0 (not applicable) 0 0
## 176 0 (not applicable) 0 (not applicable) 0 0
## 177 0 (not applicable) 0 (not applicable) 0 0
## 178 0 (not applicable) 0 (not applicable) 0 0
## 179 0 (not applicable) 0 (not applicable) 0 0
## 180 0 (not applicable) 0 (not applicable) 0 0
## 181 0 (not applicable) 0 (not applicable) 0 0
## 182 0 (not applicable) 0 (not applicable) 0 0
## 183 0 (not applicable) 0 (not applicable) 0 0
## 184 0 (not applicable) 0 (not applicable) 0 0
## 185 0 (not applicable) 0 (not applicable) 0 0
## 186 0 (not applicable) 0 (not applicable) 0 0
## 187 0 (not applicable) 0 (not applicable) 0 0
## 188 0 (not applicable) 0 (not applicable) 0 0
## 189 0 (not applicable) 0 (not applicable) 0 0
## 190 0 (not applicable) 0 (not applicable) 0 0
## 191 0 (not applicable) 0 (not applicable) 0 0
## 192 0 (not applicable) 0 (not applicable) 0 0
## 193 0 Person to Person 0 (not applicable) 0 0
## 194 0 (not applicable) 0 (not applicable) 0 0
## 195 0 (not applicable) 0 (not applicable) 0 0
## 196 0 (not applicable) 0 (not applicable) 0 0
## 197 0 (not applicable) 0 (not applicable) 0 0
## 198 0 (not applicable) 0 (not applicable) 0 0
## 199 0 (not applicable) 0 (not applicable) 0 0
## 200 0 (not applicable) 0 (not applicable) 0 0
## 201 0 (not applicable) 0 (not applicable) 0 0
## 202 0 (not applicable) 0 (not applicable) 0 0
## 203 0 (not applicable) 0 (not applicable) 0 0
## 204 0 (not applicable) 0 (not applicable) 0 0
## 205 0 (not applicable) 0 (not applicable) 0 0
## 206 0 (not applicable) 0 (not applicable) 0 0
## 207 0 (not applicable) 0 (not applicable) 0 0
## 208 0 (not applicable) 0 (not applicable) 0 0
## 209 0 (not applicable) 0 (not applicable) 0 0
## 210 0 (not applicable) 0 (not applicable) 0 0
## 211 0 (not applicable) 0 (not applicable) 0 0
## 212 0 (not applicable) 0 (not applicable) 0 0
## 213 0 (not applicable) 0 (not applicable) 0 0
## 214 0 (not applicable) 0 (not applicable) 0 0
## 215 0 (not applicable) 0 (not applicable) 0 0
## 216 0 (not applicable) 0 (not applicable) 0 0
## 217 0 (not applicable) 0 (not applicable) 0 0
## 218 0 (not applicable) 0 (not applicable) 0 0
## 219 0 (not applicable) 0 (not applicable) 0 0
## 220 0 (not applicable) 0 (not applicable) 0 0
## 221 0 (not applicable) 0 (not applicable) 0 0
## 222 0 (not applicable) 0 (not applicable) 0 0
## 223 0 (not applicable) 0 (not applicable) 0 0
## 224 0 (not applicable) 0 (not applicable) 0 0
## 225 0 (not applicable) 0 (not applicable) 0 0
## 226 0 (not applicable) 0 (not applicable) 0 0
## 227 0 (not applicable) 0 (not applicable) 0 0
## 228 0 (not applicable) 0 (not applicable) 0 0
## 229 0 (not applicable) 0 (not applicable) 0 0
## 230 0 (not applicable) 0 (not applicable) 0 0
## 231 0 (not applicable) 0 (not applicable) 0 0
## 232 0 (not applicable) 0 (not applicable) 0 0
## 233 0 (not applicable) 0 (not applicable) 0 0
## 234 0 (not applicable) 0 (not applicable) 0 0
## 235 0 (not applicable) 0 (not applicable) 0 0
## 236 0 (not applicable) 0 (not applicable) 0 0
## 237 0 Environmental 0 Person to Person 0 0
## 238 0 (not applicable) 0 (not applicable) 0 0
## 239 0 (not applicable) 0 (not applicable) 0 0
## 240 0 Environmental 0 (not applicable) 0 0
## 241 0 (not applicable) 0 (not applicable) 0 0
## 242 0 (not applicable) 0 (not applicable) 0 0
## 243 0 (not applicable) 0 (not applicable) 0 0
## 244 0 (not applicable) 0 (not applicable) 0 0
## 245 0 (not applicable) 0 (not applicable) 0 0
## 246 0 (not applicable) 0 (not applicable) 0 0
## 247 0 (not applicable) 0 (not applicable) 0 0
## 248 0 (not applicable) 0 (not applicable) 0 0
## 249 0 (not applicable) 0 (not applicable) 0 0
## 250 0 (not applicable) 0 (not applicable) 0 0
## 251 0 (not applicable) 0 (not applicable) 0 0
## 252 0 (not applicable) 0 (not applicable) 0 0
## 253 0 (not applicable) 0 (not applicable) 0 0
## 254 0 (not applicable) 0 (not applicable) 0 0
## 255 0 (not applicable) 0 (not applicable) 0 0
## 256 0 (not applicable) 0 (not applicable) 0 0
## 257 0 (not applicable) 0 (not applicable) 0 0
## 258 0 (not applicable) 0 (not applicable) 0 0
## 259 0 (not applicable) 0 (not applicable) 0 0
## 260 0 (not applicable) 0 (not applicable) 0 0
## 261 0 (not applicable) 0 (not applicable) 0 0
## 262 0 (not applicable) 0 (not applicable) 0 0
## 263 0 (not applicable) 0 (not applicable) 0 0
## 264 0 (not applicable) 0 (not applicable) 0 0
## 265 0 (not applicable) 0 (not applicable) 0 0
## 266 0 (not applicable) 0 (not applicable) 0 0
## 267 0 (not applicable) 0 (not applicable) 0 0
## 268 0 (not applicable) 0 (not applicable) 0 0
## 269 0 (not applicable) 0 (not applicable) 0 0
## 270 0 (not applicable) 0 (not applicable) 0 0
## 271 0 (not applicable) 0 (not applicable) 0 0
## 272 0 (not applicable) 0 (not applicable) 0 0
## 273 0 (not applicable) 0 (not applicable) 0 0
## 274 0 (not applicable) 0 (not applicable) 0 0
## 275 0 (not applicable) 0 (not applicable) 0 0
## 276 0 (not applicable) 0 (not applicable) 0 0
## 277 0 (not applicable) 0 (not applicable) 0 0
## 278 0 (not applicable) 0 (not applicable) 0 0
## 279 0 (not applicable) 0 (not applicable) 0 0
## 280 0 (not applicable) 0 (not applicable) 0 0
## 281 0 (not applicable) 0 (not applicable) 0 0
## 282 0 (not applicable) 0 (not applicable) 0 0
## 283 0 (not applicable) 0 (not applicable) 0 0
## 284 0 (not applicable) 0 (not applicable) 0 0
## 285 0 (not applicable) 0 (not applicable) 0 0
## 286 0 (not applicable) 0 (not applicable) 0 0
## 287 0 (not applicable) 0 (not applicable) 0 0
## 288 0 (not applicable) 0 (not applicable) 0 0
## 289 0 (not applicable) 0 (not applicable) 0 0
## 290 0 (not applicable) 0 (not applicable) 0 0
## 291 0 (not applicable) 0 (not applicable) 0 0
## 292 0 (not applicable) 0 (not applicable) 0 0
## 293 0 (not applicable) 0 (not applicable) 0 0
## 294 0 Environmental 0 (not applicable) 0 0
## 295 0 (not applicable) 0 (not applicable) 0 0
## 296 0 (not applicable) 0 (not applicable) 0 0
## 297 0 (not applicable) 0 (not applicable) 0 0
## 298 0 (not applicable) 0 (not applicable) 0 0
## 299 0 (not applicable) 0 (not applicable) 0 0
## 300 0 (not applicable) 0 (not applicable) 0 0
## 301 0 (not applicable) 0 (not applicable) 0 0
## 302 0 (not applicable) 0 (not applicable) 0 0
## 303 0 (not applicable) 0 (not applicable) 0 0
## 304 0 (not applicable) 0 (not applicable) 0 0
## 305 0 (not applicable) 0 (not applicable) 0 0
## 306 0 (not applicable) 0 (not applicable) 0 0
## 307 0 (not applicable) 0 (not applicable) 0 0
## 308 0 (not applicable) 0 (not applicable) 0 0
## 309 0 (not applicable) 0 (not applicable) 0 0
## 310 0 (not applicable) 0 (not applicable) 0 0
## 311 0 (not applicable) 0 (not applicable) 0 0
## 312 0 (not applicable) 0 (not applicable) 0 0
## 313 0 (not applicable) 0 (not applicable) 0 0
## 314 0 (not applicable) 0 (not applicable) 0 0
## 315 0 (not applicable) 0 (not applicable) 0 0
## 316 0 Environmental 0 (not applicable) 0 0
## 317 0 (not applicable) 0 (not applicable) 0 0
## 318 0 (not applicable) 0 (not applicable) 0 0
## 319 0 (not applicable) 0 (not applicable) 0 0
## 320 0 (not applicable) 0 (not applicable) 0 0
## 321 0 (not applicable) 0 (not applicable) 0 0
## 322 0 (not applicable) 0 (not applicable) 0 0
## 323 0 (not applicable) 0 (not applicable) 0 0
## Risk2 RiskAll Cases1 Cases2 CasesAll Rate1 Rate2 RateAll
## 1 NA 0 15 NA 15 NA NA 0
## 2 NA 0 180 4 184 NA NA 0
## 3 NA 0 704 NA 704 NA NA 0
## 4 NA 0 20 NA 20 NA NA 0
## 5 NA 0 14 NA 14 NA NA 0
## 6 NA 0 14 NA 14 NA NA 0
## 7 NA 0 22 NA 22 NA NA 0
## 8 NA 0 15 NA 15 NA NA 0
## 9 NA 0 25 NA 25 NA NA 0
## 10 NA 0 17 NA 17 NA NA 0
## 11 NA 0 13 NA 13 NA NA 0
## 12 NA 0 22 NA 22 NA NA 0
## 13 NA 0 11 NA 11 NA NA 0
## 14 NA 0 14 NA 14 NA NA 0
## 15 NA 0 25 NA 25 NA NA 0
## 16 NA 0 14 NA 14 NA NA 0
## 17 NA 0 130 16 146 NA NA 0
## 18 NA 0 80 NA 80 NA NA 0
## 19 NA 0 112 NA 112 NA NA 0
## 20 NA 0 130 NA 130 NA NA 0
## 21 NA 0 36 NA 36 NA NA 0
## 22 NA 0 26 NA 26 NA NA 0
## 23 NA 0 2 NA 2 NA NA 0
## 24 NA 0 21 NA 21 NA NA 0
## 25 NA 0 30 NA 30 NA NA 0
## 26 NA 0 116 NA 116 NA NA 0
## 27 NA 0 24 NA 24 NA NA 0
## 28 NA 0 70 NA 70 NA NA 0
## 29 NA 0 22 NA 22 NA NA 0
## 30 NA 0 35 NA 35 NA NA 0
## 31 NA 0 40 NA 40 NA NA 0
## 32 NA 0 15 NA 15 NA NA 0
## 33 NA 0 50 NA 50 NA NA 0
## 34 NA 0 20 NA 20 NA NA 0
## 35 NA 0 110 NA 110 NA NA 0
## 36 NA 0 50 NA 50 NA NA 0
## 37 NA 0 16 NA 16 NA NA 0
## 38 NA 0 5 NA 5 NA NA 0
## 39 NA 0 200 NA 200 NA NA 0
## 40 NA 0 50 NA 50 NA NA 0
## 41 NA 0 24 NA 24 NA NA 0
## 42 NA 0 55 NA 55 NA NA 0
## 43 NA 0 9 NA 9 NA NA 0
## 44 NA 0 21 NA 21 NA NA 0
## 45 NA 0 163 NA 163 NA NA 0
## 46 NA 0 25 NA 25 NA NA 0
## 47 NA 0 35 NA 35 NA NA 0
## 48 NA 0 80 NA 80 NA NA 0
## 49 NA 0 35 NA 35 NA NA 0
## 50 NA 0 3 NA 3 NA NA 0
## 51 NA 0 33 NA 33 NA NA 0
## 52 NA 0 11 NA 11 NA NA 0
## 53 NA 0 15 NA 15 NA NA 0
## 54 NA 0 51 NA 51 NA NA 0
## 55 NA 0 3 NA 3 NA NA 0
## 56 NA 0 279 NA 279 NA NA 0
## 57 NA 0 69 NA 69 NA NA 0
## 58 NA 0 27 NA 27 NA NA 0
## 59 NA 0 29 NA 29 NA NA 0
## 60 NA 0 28 NA 28 NA NA 0
## 61 NA 0 184 NA 184 NA NA 0
## 62 NA 0 66 NA 66 NA NA 0
## 63 NA 0 17 NA 17 NA NA 0
## 64 NA 0 16 NA 16 NA NA 0
## 65 NA 0 12 NA 12 NA NA 0
## 66 NA 0 19 NA 19 NA NA 0
## 67 NA 0 69 455 524 NA NA 0
## 68 NA 0 69 NA 69 NA NA 0
## 69 NA 0 276 NA 276 NA NA 0
## 70 NA 0 57 NA 57 NA NA 0
## 71 NA 0 7 NA 7 NA NA 0
## 72 NA 0 29 NA 29 NA NA 0
## 73 NA 0 26 NA 26 NA NA 0
## 74 NA 0 5 NA 5 NA NA 0
## 75 NA 0 4 NA 4 NA NA 0
## 76 NA 0 16 NA 16 NA NA 0
## 77 NA 0 14 NA 14 NA NA 0
## 78 NA 0 2 NA 2 NA NA 0
## 79 NA 0 2 NA 2 NA NA 0
## 80 NA 0 20 NA 20 NA NA 0
## 81 NA 0 114 NA 114 NA NA 0
## 82 NA 0 268 NA 268 NA NA 0
## 83 NA 0 154 NA 154 NA NA 0
## 84 NA 0 95 NA 95 NA NA 0
## 85 NA 0 41 NA 41 NA NA 0
## 86 NA 0 11 NA 11 NA NA 0
## 87 NA 0 29 NA 29 NA NA 0
## 88 NA 0 14 NA 14 NA NA 0
## 89 NA 0 25 NA 25 NA NA 0
## 90 NA 0 119 NA 119 NA NA 0
## 91 NA 0 41 NA 41 NA NA 0
## 92 NA 0 19 NA 19 NA NA 0
## 93 NA 0 14 NA 14 NA NA 0
## 94 NA 0 20 NA 20 NA NA 0
## 95 NA 0 16 NA 16 NA NA 0
## 96 NA 0 9 NA 9 NA NA 0
## 97 NA 0 9 NA 9 NA NA 0
## 98 NA 0 15 NA 15 NA NA 0
## 99 NA 0 10 NA 10 NA NA 0
## 100 NA 0 30 NA 30 NA NA 0
## 101 NA 0 2860 NA 2860 NA NA 0
## 102 NA 0 378 NA 378 NA NA 0
## 103 NA 0 12 NA 12 NA NA 0
## 104 NA 0 11 NA 11 NA NA 0
## 105 NA 0 200 NA 200 NA NA 0
## 106 NA 0 7 NA 7 NA NA 0
## 107 NA 0 70 NA 70 NA NA 0
## 108 NA 0 16 NA 16 NA NA 0
## 109 NA 0 30 NA 30 NA NA 0
## 110 NA 0 81 22 103 NA NA 0
## 111 NA 0 5 NA 5 NA NA 0
## 112 NA 0 60 NA 60 NA NA 0
## 113 NA 0 32 NA 32 NA NA 0
## 114 NA 0 37 3 40 NA NA 0
## 115 NA 0 47 NA 47 NA NA 0
## 116 NA 0 16 NA 16 NA NA 0
## 117 NA 0 8 NA 8 NA NA 0
## 118 NA 0 15 NA 15 NA NA 0
## 119 NA 0 79 NA 79 NA NA 0
## 120 NA 0 74 NA 74 NA NA 0
## 121 NA 0 171 NA 171 NA NA 0
## 122 NA 0 300 NA 300 NA NA 0
## 123 NA 0 30 NA 30 NA NA 0
## 124 NA 0 4 NA 4 NA NA 0
## 125 NA 0 39 NA 39 NA NA 0
## 126 NA 0 6 NA 6 NA NA 0
## 127 NA 0 82 NA 82 NA NA 0
## 128 NA 0 229 8 237 NA NA 0
## 129 NA 0 48 NA 48 NA NA 0
## 130 NA 0 5 NA 5 NA NA 0
## 131 NA 0 344 NA 344 NA NA 0
## 132 NA 0 15 NA 15 NA NA 0
## 133 NA 0 31 NA 31 NA NA 0
## 134 NA 0 134 NA 134 NA NA 0
## 135 NA 0 21 NA 21 NA NA 0
## 136 NA 0 38 NA 38 NA NA 0
## 137 NA 0 81 NA 81 NA NA 0
## 138 NA 0 23 NA 23 NA NA 0
## 139 NA 0 106 NA 106 NA NA 0
## 140 NA 0 8 NA 8 NA NA 0
## 141 NA 0 400 NA 400 NA NA 0
## 142 NA 0 40 NA 40 NA NA 0
## 143 NA 0 50 NA 50 NA NA 0
## 144 NA 0 8 NA 8 NA NA 0
## 145 NA 0 25 NA 25 NA NA 0
## 146 NA 0 12 NA 12 NA NA 0
## 147 NA 0 19 NA 19 NA NA 0
## 148 NA 0 35 NA 35 NA NA 0
## 149 NA 0 2 NA 2 NA NA 0
## 150 NA 0 74 NA 74 NA NA 0
## 151 NA 0 60 NA 60 NA NA 0
## 152 NA 0 30 NA 30 NA NA 0
## 153 NA 0 54 NA 54 NA NA 0
## 154 NA 0 63 NA 63 NA NA 0
## 155 NA 0 350 NA 350 NA NA 0
## 156 NA 0 13 NA 13 NA NA 0
## 157 NA 0 35 NA 35 NA NA 0
## 158 NA 0 18 NA 18 NA NA 0
## 159 NA 0 35 NA 35 NA NA 0
## 160 NA 0 150 NA 150 NA NA 0
## 161 NA 0 12 NA 12 NA NA 0
## 162 NA 0 9 NA 9 NA NA 0
## 163 NA 0 22 NA 22 NA NA 0
## 164 NA 0 100 NA 100 NA NA 0
## 165 NA 0 19 NA 19 NA NA 0
## 166 NA 0 137 NA 137 NA NA 0
## 167 NA 0 242 NA 242 NA NA 0
## 168 NA 0 183 NA 183 NA NA 0
## 169 NA 0 13 NA 13 NA NA 0
## 170 NA 0 8 NA 8 NA NA 0
## 171 NA 0 163 37 200 NA NA 0
## 172 NA 0 4 NA 4 NA NA 0
## 173 NA 0 20 NA 20 NA NA 0
## 174 NA 0 6390 NA 6390 NA NA 0
## 175 NA 0 75 NA 75 NA NA 0
## 176 NA 0 40 NA 40 NA NA 0
## 177 NA 0 35 NA 35 NA NA 0
## 178 NA 0 448 NA 448 NA NA 0
## 179 NA 0 71 NA 71 NA NA 0
## 180 NA 0 1450 NA 1450 NA NA 0
## 181 NA 0 41 NA 41 NA NA 0
## 182 NA 0 32150 NA 32150 NA NA 0
## 183 NA 0 187 NA 187 NA NA 0
## 184 NA 0 165 NA 165 NA NA 0
## 185 NA 0 79 NA 79 NA NA 0
## 186 NA 0 18 NA 18 NA NA 0
## 187 NA 0 25 NA 25 NA NA 0
## 188 NA 0 26 NA 26 NA NA 0
## 189 NA 0 9 NA 9 NA NA 0
## 190 NA 0 30 NA 30 NA NA 0
## 191 NA 0 48 NA 48 NA NA 0
## 192 NA 0 69 NA 69 NA NA 0
## 193 NA 0 310 NA 310 NA NA 0
## 194 NA 0 650 NA 650 NA NA 0
## 195 NA 0 28 NA 28 NA NA 0
## 196 NA 0 35 NA 35 NA NA 0
## 197 NA 0 50 NA 50 NA NA 0
## 198 NA 0 81 NA 81 NA NA 0
## 199 NA 0 40 NA 40 NA NA 0
## 200 NA 0 2 NA 2 NA NA 0
## 201 NA 0 3 NA 3 NA NA 0
## 202 NA 0 7 NA 7 NA NA 0
## 203 NA 0 4 NA 4 NA NA 0
## 204 NA 0 4 NA 4 NA NA 0
## 205 NA 0 13 NA 13 NA NA 0
## 206 NA 0 6 NA 6 NA NA 0
## 207 NA 0 19 NA 19 NA NA 0
## 208 NA 0 57 NA 57 NA NA 0
## 209 NA 0 52 NA 52 NA NA 0
## 210 NA 0 4 NA 4 NA NA 0
## 211 NA 0 51 NA 51 NA NA 0
## 212 NA 0 29 NA 29 NA NA 0
## 213 NA 0 64 NA 64 NA NA 0
## 214 NA 0 218 NA 218 NA NA 0
## 215 NA 0 6 NA 6 NA NA 0
## 216 NA 0 15 NA 15 NA NA 0
## 217 NA 0 26 NA 26 NA NA 0
## 218 NA 0 19 NA 19 NA NA 0
## 219 NA 0 4 NA 4 NA NA 0
## 220 NA 0 93 NA 93 NA NA 0
## 221 NA 0 8 NA 8 NA NA 0
## 222 NA 0 8 NA 8 NA NA 0
## 223 NA 0 20 NA 20 NA NA 0
## 224 NA 0 9 NA 9 NA NA 0
## 225 NA 0 32 NA 32 NA NA 0
## 226 NA 0 11 NA 11 NA NA 0
## 227 NA 0 4 NA 4 NA NA 0
## 228 NA 0 19 NA 19 NA NA 0
## 229 NA 0 4 NA 4 NA NA 0
## 230 NA 0 3 NA 3 NA NA 0
## 231 NA 0 2 NA 2 NA NA 0
## 232 NA 0 3 NA 3 NA NA 0
## 233 NA 0 6 NA 6 NA NA 0
## 234 NA 0 1 NA 1 NA NA 0
## 235 NA 0 7 NA 7 NA NA 0
## 236 NA 0 1 NA 1 NA NA 0
## 237 NA 0 295 NA 295 NA NA 0
## 238 NA 0 63 NA 63 NA NA 0
## 239 NA 0 188 NA 188 NA NA 0
## 240 NA 0 331 NA 331 NA NA 0
## 241 NA 0 329 NA 329 NA NA 0
## 242 NA 0 205 NA 205 NA NA 0
## 243 NA 0 41 NA 41 NA NA 0
## 244 NA 0 400 NA 400 NA NA 0
## 245 NA 0 103 NA 103 NA NA 0
## 246 NA 0 10 NA 10 NA NA 0
## 247 NA 0 20 NA 20 NA NA 0
## 248 NA 0 74 NA 74 NA NA 0
## 249 NA 0 120 NA 120 NA NA 0
## 250 NA 0 32 NA 32 NA NA 0
## 251 NA 0 6 NA 6 NA NA 0
## 252 NA 0 6 NA 6 NA NA 0
## 253 NA 0 35 NA 35 NA NA 0
## 254 NA 0 20 NA 20 NA NA 0
## 255 NA 0 48 NA 48 NA NA 0
## 256 NA 0 35 NA 35 NA NA 0
## 257 NA 0 15 NA 15 NA NA 0
## 258 NA 0 30 NA 30 NA NA 0
## 259 NA 0 58 NA 58 NA NA 0
## 260 NA 0 60 NA 60 NA NA 0
## 261 NA 0 281 13 294 NA NA 0
## 262 NA 0 5 NA 5 NA NA 0
## 263 NA 0 16 NA 16 NA NA 0
## 264 NA 0 39 NA 39 NA NA 0
## 265 NA 0 8 NA 8 NA NA 0
## 266 NA 0 5 NA 5 NA NA 0
## 267 NA 0 3 NA 3 NA NA 0
## 268 NA 0 5 NA 5 NA NA 0
## 269 NA 0 9 NA 9 NA NA 0
## 270 NA 0 19 NA 19 NA NA 0
## 271 NA 0 51 9 60 NA NA 0
## 272 NA 0 23 NA 23 NA NA 0
## 273 NA 0 485 NA 485 NA NA 0
## 274 NA 0 23 NA 23 NA NA 0
## 275 NA 0 709 NA 709 NA NA 0
## 276 NA 0 258 NA 258 NA NA 0
## 277 NA 0 5 NA 5 NA NA 0
## 278 NA 0 39 NA 39 NA NA 0
## 279 NA 0 105 NA 105 NA NA 0
## 280 NA 0 77 NA 77 NA NA 0
## 281 NA 0 66 NA 66 NA NA 0
## 282 NA 0 47 NA 47 NA NA 0
## 283 NA 0 93 NA 93 NA NA 0
## 284 NA 0 61 NA 61 NA NA 0
## 285 NA 0 39 NA 39 NA NA 0
## 286 NA 0 66 NA 66 NA NA 0
## 287 NA 0 27 NA 27 NA NA 0
## 288 NA 0 23 NA 23 NA NA 0
## 289 NA 0 28 NA 28 NA NA 0
## 290 NA 0 34 NA 34 NA NA 0
## 291 NA 0 6 NA 6 NA NA 0
## 292 NA 0 13 NA 13 NA NA 0
## 293 NA 0 97 NA 97 NA NA 0
## 294 NA 0 22 NA 22 NA NA 0
## 295 NA 0 200 NA 200 NA NA 0
## 296 NA 0 7 NA 7 NA NA 0
## 297 NA 0 3 NA 3 NA NA 0
## 298 NA 0 33 NA 33 NA NA 0
## 299 NA 0 33 NA 33 NA NA 0
## 300 NA 0 20 NA 20 NA NA 0
## 301 NA 0 32 NA 32 NA NA 0
## 302 NA 0 14 NA 14 NA NA 0
## 303 NA 0 25 NA 25 NA NA 0
## 304 NA 0 6 NA 6 NA NA 0
## 305 NA 0 21 NA 21 NA NA 0
## 306 NA 0 17 NA 17 NA NA 0
## 307 NA 0 37 NA 37 NA NA 0
## 308 NA 0 34 NA 34 NA NA 0
## 309 NA 0 75 NA 75 NA NA 0
## 310 NA 0 96 NA 96 NA NA 0
## 311 NA 0 7 NA 7 NA NA 0
## 312 NA 0 80 NA 80 NA NA 0
## 313 NA 0 114 NA 114 NA NA 0
## 314 NA 0 47 NA 47 NA NA 0
## 315 NA 0 49 NA 49 NA NA 0
## 316 NA 0 21 2 23 NA NA 0
## 317 NA 0 356 NA 356 NA NA 0
## 318 NA 0 4 NA 4 NA NA 0
## 319 NA 0 10 NA 10 NA NA 0
## 320 NA 0 25 NA 25 NA NA 0
## 321 NA 0 40 NA 40 NA NA 0
## 322 NA 0 444 NA 444 NA NA 0
## 323 NA 0 6 NA 6 NA NA 0
## Hospitalizations Deaths
## 1 0 0
## 2 3 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 1 0
## 18 0 0
## 19 NA NA
## 20 NA NA
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 0 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 NA NA
## 49 NA NA
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 NA NA
## 55 0 0
## 56 25 5
## 57 0 0
## 58 0 0
## 59 26 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 NA NA
## 64 0 0
## 65 0 0
## 66 0 0
## 67 0 1
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 0 0
## 101 NA NA
## 102 0 0
## 103 0 0
## 104 0 0
## 105 0 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 NA NA
## 112 0 0
## 113 0 0
## 114 0 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 NA NA
## 122 0 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 0 0
## 129 NA NA
## 130 0 0
## 131 5 0
## 132 0 0
## 133 0 0
## 134 NA NA
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 23 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 0 0
## 167 3 0
## 168 NA NA
## 169 NA NA
## 170 NA NA
## 171 2 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 0 0
## 194 0 0
## 195 0 0
## 196 0 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 NA NA
## 240 0 0
## 241 2 0
## 242 NA NA
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 4 1
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 18 0
## 276 0 0
## 277 NA NA
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 0 0
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 0 0
## 316 0 0
## 317 NA NA
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## Vehicle_1
## 1 0
## 2 Oysters
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 Contami ted oyster
## 18 Catered Lunch
## 19 0
## 20 sandwiches
## 21 0
## 22 0
## 23 0
## 24 0
## 25 Raspberries
## 26 Coleslaw
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 drinking water
## 34 0
## 35 drinking water
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 Infected Persons
## 46 child who vomited in nursery school sandpit
## 47 0
## 48 0
## 49 0
## 50 shellfish
## 51 nusing assistant that placed bread on trays and served food to people
## 52 0
## 53 0
## 54 salad
## 55 chinese take out
## 56 0
## 57 0
## 58 Infected patient
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 Infected Persons
## 69 0
## 70 0
## 71 Bivalve Shellfish
## 72 0
## 73 0
## 74 0
## 75 Oysters
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 Oysters
## 89 0
## 90 drinking water
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 Tap water
## 102 Infected Persons
## 103 oysters
## 104 oysters
## 105 Well Water
## 106 kitchen staff member taken ill during the preparation of the meals
## 107 0
## 108 0
## 109 index case infected in community before entering hospital
## 110 Mussels
## 111 0
## 112 0
## 113 0
## 114 Sandwiches
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 oysters
## 122 Sandwiches
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 drinking water
## 129 0
## 130 0
## 131 Tap Water
## 132 0
## 133 0
## 134 Tap Water
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 Frozen Raspberries
## 142 Frozen Raspberries
## 143 Frozen Raspberries
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 drinking water
## 151 0
## 152 Drinking water
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 Raspberries
## 162 Raspberries
## 163 0
## 164 0
## 165 drinking water
## 166 Deli meat
## 167 Contami ted Pool Water
## 168 Drinking water
## 169 0
## 170 0
## 171 Contami ted Lake Water
## 172 oysters
## 173 0
## 174 0
## 175 Oysters
## 176 0
## 177 0
## 178 Tap Water
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 Oysters
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 Oysters
## 193 Contami ted surfaces/fomites
## 194 Contami ted tap water
## 195 Infected persons
## 196 Infected Persons
## 197 diabetic man
## 198 case from previous outbreak becamse index case for this outbreak
## 199 0
## 200 0
## 201 Oyster
## 202 0
## 203 0
## 204 0
## 205 Oyster
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 Contami ted Drinking Water
## 215 0
## 216 Oysters
## 217 0
## 218 0
## 219 Oysters
## 220 0
## 221 Oysters
## 222 Oysters
## 223 0
## 224 Oysters
## 225 0
## 226 Oysters
## 227 Oysters
## 228 Oysters
## 229 Oysters
## 230 0
## 231 0
## 232 0
## 233 0
## 234 Oysters
## 235 0
## 236 0
## 237 Ice
## 238 0
## 239 Salad (bar itmes)
## 240 Contami ted surfaces/fomites
## 241 Oysters
## 242 Oysters
## 243 0
## 244 drinking water
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 Infected Persons
## 260 Oysters contami ted by lake water with overboard feces dumping
## 261 0
## 262 oysters
## 263 oysters
## 264 oysters
## 265 oysters
## 266 oysters
## 267 oysters
## 268 oysters
## 269 oysters
## 270 oysters
## 271 Infected Persons
## 272 vomitus in kitchen from staff worker
## 273 0
## 274 Pastry prepared by a specific confectionery
## 275 Well water
## 276 0
## 277 0
## 278 0
## 279 Vomit
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 Tap water
## 292 0
## 293 oysters
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 carpet
## 317 oysters
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## Veh1
## 1 Unspecified
## 2 Yes
## 3 Unspecified
## 4 Unspecified
## 5 Unspecified
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 Unspecified
## 10 Unspecified
## 11 Unspecified
## 12 Unspecified
## 13 Unspecified
## 14 Unspecified
## 15 Unspecified
## 16 Unspecified
## 17 Yes
## 18 Yes
## 19 Yes
## 20 Yes
## 21 Unspecified
## 22 Yes
## 23 Unknown
## 24 Unspecified
## 25 Yes
## 26 Yes
## 27 Unspecified
## 28 Unspecified
## 29 Unspecified
## 30 Unspecified
## 31 Unspecified
## 32 Unspecified
## 33 Yes
## 34 Unspecified
## 35 Yes
## 36 Unspecified
## 37 Unspecified
## 38 Unspecified
## 39 Unspecified
## 40 Unspecified
## 41 Unspecified
## 42 Unspecified
## 43 Unspecified
## 44 Unspecified
## 45 Yes
## 46 Yes
## 47 Unspecified
## 48 Unspecified
## 49 Yes
## 50 Yes
## 51 Yes
## 52 Unspecified
## 53 Unspecified
## 54 Yes
## 55 Yes
## 56 Yes
## 57 Unspecified
## 58 Yes
## 59 Yes
## 60 Yes
## 61 Unspecified
## 62 Unspecified
## 63 Unspecified
## 64 Unspecified
## 65 Unspecified
## 66 Unspecified
## 67 Yes
## 68 Yes
## 69 Unspecified
## 70 Unspecified
## 71 Yes
## 72 Yes
## 73 Yes
## 74 Unknown
## 75 Yes
## 76 Unknown
## 77 Unknown
## 78 Unknown
## 79 Yes
## 80 Yes
## 81 Yes
## 82 Yes
## 83 Yes
## 84 Yes
## 85 Yes
## 86 Yes
## 87 Unknown
## 88 Yes
## 89 Unspecified
## 90 Yes
## 91 Unspecified
## 92 Unspecified
## 93 Unspecified
## 94 Unspecified
## 95 Unspecified
## 96 Unspecified
## 97 Unspecified
## 98 Unspecified
## 99 Unspecified
## 100 Unspecified
## 101 Yes
## 102 Yes
## 103 Yes
## 104 Yes
## 105 Yes
## 106 Yes
## 107 Unspecified
## 108 Unspecified
## 109 Yes
## 110 Yes
## 111 Unspecified
## 112 Unknown
## 113 Yes
## 114 Yes
## 115 Unspecified
## 116 Unspecified
## 117 Unspecified
## 118 Unspecified
## 119 Unspecified
## 120 Unspecified
## 121 Yes
## 122 Yes
## 123 Yes
## 124 Unspecified
## 125 Unspecified
## 126 Unspecified
## 127 Unspecified
## 128 Yes
## 129 Unknown
## 130 Unspecified
## 131 Yes
## 132 Unspecified
## 133 Unknown
## 134 Yes
## 135 Unspecified
## 136 Unspecified
## 137 Unspecified
## 138 Unspecified
## 139 Unspecified
## 140 Yes
## 141 Yes
## 142 Yes
## 143 Yes
## 144 Yes
## 145 No
## 146 Unspecified
## 147 Unspecified
## 148 Unknown
## 149 Unknown
## 150 Yes
## 151 Unspecified
## 152 Yes
## 153 Unspecified
## 154 Unspecified
## 155 Unspecified
## 156 Unspecified
## 157 Unspecified
## 158 Unspecified
## 159 Unspecified
## 160 Unspecified
## 161 Yes
## 162 Yes
## 163 Unspecified
## 164 Unspecified
## 165 Yes
## 166 Yes
## 167 Yes
## 168 Yes
## 169 Unspecified
## 170 Yes
## 171 Yes
## 172 Yes
## 173 Unspecified
## 174 Unspecified
## 175 Yes
## 176 Unspecified
## 177 Unspecified
## 178 Yes
## 179 Unspecified
## 180 Unspecified
## 181 Unspecified
## 182 Unspecified
## 183 Unspecified
## 184 Unspecified
## 185 Yes
## 186 Unspecified
## 187 Unspecified
## 188 Unspecified
## 189 Unspecified
## 190 Unspecified
## 191 Unspecified
## 192 Yes
## 193 Yes
## 194 Yes
## 195 Yes
## 196 Yes
## 197 Yes
## 198 Yes
## 199 Unspecified
## 200 Unspecified
## 201 Yes
## 202 Unspecified
## 203 Unspecified
## 204 Unspecified
## 205 Yes
## 206 Yes
## 207 Unspecified
## 208 Yes
## 209 Unspecified
## 210 Unspecified
## 211 Yes
## 212 Yes
## 213 Yes
## 214 Yes
## 215 Unknown
## 216 Yes
## 217 Unknown
## 218 Unknown
## 219 Yes
## 220 Yes
## 221 Yes
## 222 Yes
## 223 Unknown
## 224 Yes
## 225 Yes
## 226 Yes
## 227 Yes
## 228 Yes
## 229 Yes
## 230 Unknown
## 231 Unknown
## 232 Unknown
## 233 Yes
## 234 Yes
## 235 Unknown
## 236 Unknown
## 237 Yes
## 238 Yes
## 239 Yes
## 240 Yes
## 241 Yes
## 242 Yes
## 243 Unspecified
## 244 Yes
## 245 Unspecified
## 246 Unspecified
## 247 Unspecified
## 248 Unspecified
## 249 Unspecified
## 250 Unspecified
## 251 Unspecified
## 252 Unspecified
## 253 Unspecified
## 254 Unspecified
## 255 Unspecified
## 256 Unspecified
## 257 Unspecified
## 258 Unspecified
## 259 Yes
## 260 Yes
## 261 Yes
## 262 Yes
## 263 Yes
## 264 Yes
## 265 Yes
## 266 Yes
## 267 Yes
## 268 Yes
## 269 Yes
## 270 Yes
## 271 Yes
## 272 Yes
## 273 Unspecified
## 274 Yes
## 275 Yes
## 276 Unspecified
## 277 Unspecified
## 278 Yes
## 279 Yes
## 280 Unspecified
## 281 Unspecified
## 282 Unspecified
## 283 Unspecified
## 284 Unspecified
## 285 Unspecified
## 286 Unspecified
## 287 Unspecified
## 288 Unspecified
## 289 Unspecified
## 290 Unspecified
## 291 Yes
## 292 Unknown
## 293 Yes
## 294 Yes
## 295 Unspecified
## 296 Unspecified
## 297 Unspecified
## 298 Unspecified
## 299 Unspecified
## 300 Unspecified
## 301 Unspecified
## 302 Unspecified
## 303 Unspecified
## 304 Unspecified
## 305 Unspecified
## 306 Unspecified
## 307 Unspecified
## 308 Unspecified
## 309 Unspecified
## 310 Unspecified
## 311 Unspecified
## 312 Unspecified
## 313 Unspecified
## 314 Unspecified
## 315 Unspecified
## 316 Yes
## 317 Yes
## 318 Unspecified
## 319 Unspecified
## 320 Unspecified
## 321 Unspecified
## 322 Unknown
## 323 Unspecified
## Veh1_D_1
## 1 0
## 2 Oysters
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 oysters from Grand Pass and off of LA coast
## 18 Catered Lunch
## 19 Infected Persons
## 20 Salad Sandwiches
## 21 0
## 22 Infected Persons
## 23 0
## 24 0
## 25 Raspberries
## 26 Coleslaw
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 drinking water
## 34 0
## 35 drinking water
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 Infected Persons
## 46 child who vomited in nursery school sandpit
## 47 0
## 48 0
## 49 Infected Persons
## 50 shellfish
## 51 nursing assistant was source
## 52 0
## 53 0
## 54 salad
## 55 Chinese takeaway meal
## 56 direct contact w/vomitus or feces
## 57 0
## 58 Infected patient
## 59 Infected Persons
## 60 Sub Sandwich
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 Infected Persons
## 68 Infected Persons
## 69 0
## 70 0
## 71 Bivalve Shellfish
## 72 Infected Persons
## 73 Infected Persons
## 74 0
## 75 Oysters
## 76 0
## 77 0
## 78 0
## 79 Food
## 80 Infected Persons
## 81 Infected Persons
## 82 Infected Persons
## 83 Infected Persons
## 84 Infected Persons
## 85 Infected Persons
## 86 Infected Persons
## 87 0
## 88 Oysters
## 89 0
## 90 drinking water
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 Tap water
## 102 Infected Persons
## 103 oysters
## 104 oysters
## 105 Well Water
## 106 kitchen staff member taken ill during the preparation of the meals
## 107 0
## 108 0
## 109 index case infected in community before entering hospital
## 110 Mussels
## 111 0
## 112 0
## 113 nurse from ward B who worked in ward X while symptomatic w/gastroenteritis
## 114 Sandwiches
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 oysters
## 122 Sandwiches
## 123 Foodhandler
## 124 0
## 125 0
## 126 0
## 127 0
## 128 drinking water
## 129 0
## 130 0
## 131 Tap Water
## 132 0
## 133 0
## 134 Tap Water
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 index patient was 71 yr old man
## 141 Frozen Raspberries
## 142 Frozen Raspberries
## 143 Frozen Raspberries
## 144 Infected Child
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 drinking water
## 151 0
## 152 Drinking water
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 Raspberries
## 162 Raspberries
## 163 0
## 164 0
## 165 drinking water
## 166 batch 1 of sliced deli meat
## 167 Contami ted Pool Water
## 168 Contami ted Water
## 169 0
## 170 Infecte Persons
## 171 Contami ted Lake Water
## 172 oysters
## 173 0
## 174 0
## 175 Oysters
## 176 0
## 177 0
## 178 Tap Water
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 Oysters
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 Oysters
## 193 Contami ted Surfaces and Carpet
## 194 Contami ted Drinking Water
## 195 Infected persons
## 196 Infected Persons
## 197 diabetic man
## 198 index case was woman discharged from Lymington Hospital and readmitted to Southampton General Hospital
## 199 0
## 200 0
## 201 Oyster
## 202 0
## 203 0
## 204 0
## 205 Oyster
## 206 Infected Persons
## 207 0
## 208 Infected Persons
## 209 0
## 210 0
## 211 Infected Persons
## 212 Infected Persons
## 213 Infected Persons
## 214 Contami ted Drinking Water
## 215 0
## 216 Oysters
## 217 0
## 218 0
## 219 Oysters
## 220 Infected persons
## 221 Oysters
## 222 Oysters
## 223 0
## 224 Oysters
## 225 Food
## 226 Oysters
## 227 Oysters
## 228 Oysters
## 229 Oysters
## 230 0
## 231 0
## 232 0
## 233 Food
## 234 Oysters
## 235 0
## 236 0
## 237 Ice
## 238 Infected Persons
## 239 salad
## 240 toilet seat
## 241 Oysters
## 242 Oysters
## 243 0
## 244 drinking water
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 Infected Persons
## 260 Contami ted lake water
## 261 Infected Persons
## 262 oysters
## 263 oysters
## 264 oysters
## 265 oysters
## 266 oysters
## 267 oysters
## 268 oysters
## 269 oysters
## 270 oysters
## 271 Infected Persons
## 272 vomitus in kitchen from staff worker
## 273 0
## 274 Salad
## 275 City Water Supply
## 276 0
## 277 0
## 278 Infected Persons
## 279 Vomit
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 tapwater
## 292 0
## 293 oysters
## 294 index case was 9 yr old boy
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 carpet
## 317 oysters
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## Veh2 Veh2_D_1 Veh3
## 1 No 0 No
## 2 No 0 No
## 3 No 0 No
## 4 No 0 No
## 5 No 0 No
## 6 No 0 No
## 7 No 0 No
## 8 No 0 No
## 9 No 0 No
## 10 No 0 No
## 11 No 0 No
## 12 No 0 No
## 13 No 0 No
## 14 No 0 No
## 15 No 0 No
## 16 No 0 No
## 17 No 0 No
## 18 No 0 No
## 19 No 0 No
## 20 No 0 No
## 21 No 0 No
## 22 No 0 No
## 23 No 0 No
## 24 No 0 No
## 25 Yes Whole raspberries used in cream frosting of pink cakes No
## 26 Yes Infected Persons Yes
## 27 No 0 No
## 28 No 0 No
## 29 No 0 No
## 30 No 0 No
## 31 No 0 No
## 32 No 0 No
## 33 No 0 No
## 34 No 0 No
## 35 No 0 No
## 36 No 0 No
## 37 No 0 No
## 38 No 0 No
## 39 No 0 No
## 40 No 0 No
## 41 No 0 No
## 42 No 0 No
## 43 No 0 No
## 44 No 0 No
## 45 No 0 No
## 46 No 0 No
## 47 No 0 No
## 48 No 0 No
## 49 No 0 No
## 50 No 0 No
## 51 No 0 No
## 52 No 0 No
## 53 No 0 No
## 54 No 0 No
## 55 No 0 No
## 56 Yes indirect contact w/contami ted environmental surfaces Yes
## 57 No 0 No
## 58 No 0 No
## 59 No 0 No
## 60 No 0 No
## 61 No 0 No
## 62 No 0 No
## 63 No 0 No
## 64 No 0 No
## 65 No 0 No
## 66 No 0 No
## 67 No 0 No
## 68 No 0 No
## 69 No 0 No
## 70 No 0 No
## 71 No 0 No
## 72 No 0 No
## 73 No 0 No
## 74 No 0 No
## 75 No 0 No
## 76 No 0 No
## 77 No 0 No
## 78 No 0 No
## 79 No 0 No
## 80 No 0 No
## 81 No 0 No
## 82 No 0 No
## 83 No 0 No
## 84 No 0 No
## 85 No 0 No
## 86 No 0 No
## 87 No 0 No
## 88 No 0 No
## 89 No 0 No
## 90 No 0 No
## 91 No 0 No
## 92 No 0 No
## 93 No 0 No
## 94 No 0 No
## 95 No 0 No
## 96 No 0 No
## 97 No 0 No
## 98 No 0 No
## 99 No 0 No
## 100 No 0 No
## 101 Yes Sea water No
## 102 No 0 No
## 103 No 0 No
## 104 No 0 No
## 105 Yes Infected Persons Yes
## 106 No 0 No
## 107 No 0 No
## 108 No 0 No
## 109 No 0 No
## 110 Yes Infected Persons No
## 111 No 0 No
## 112 No 0 No
## 113 No 0 No
## 114 Yes Salad No
## 115 No 0 No
## 116 No 0 No
## 117 No 0 No
## 118 No 0 No
## 119 No 0 No
## 120 No 0 No
## 121 No 0 No
## 122 Yes salad Yes
## 123 No 0 No
## 124 No 0 No
## 125 No 0 No
## 126 No 0 No
## 127 No 0 No
## 128 Yes ice Yes
## 129 No 0 No
## 130 No 0 No
## 131 No 0 No
## 132 No 0 No
## 133 No 0 No
## 134 Yes Custard No
## 135 No 0 No
## 136 No 0 No
## 137 No 0 No
## 138 No 0 No
## 139 No 0 No
## 140 Yes assisted feeding by healthcare workers No
## 141 No 0 No
## 142 No 0 No
## 143 No 0 No
## 144 No 0 No
## 145 No 0 No
## 146 No 0 No
## 147 No 0 No
## 148 No 0 No
## 149 No 0 No
## 150 No 0 No
## 151 No 0 No
## 152 No 0 No
## 153 No 0 No
## 154 No 0 No
## 155 No 0 No
## 156 No 0 No
## 157 No 0 No
## 158 No 0 No
## 159 No 0 No
## 160 No 0 No
## 161 No 0 No
## 162 No 0 No
## 163 No 0 No
## 164 No 0 No
## 165 No 0 No
## 166 Yes meat slicer No
## 167 Yes nearby latrine with feces on the floor No
## 168 Yes contami ted toilets No
## 169 No 0 No
## 170 No 0 No
## 171 Yes Infected Persons No
## 172 No 0 No
## 173 No 0 No
## 174 No 0 No
## 175 No 0 No
## 176 No 0 No
## 177 No 0 No
## 178 No 0 No
## 179 No 0 No
## 180 No 0 No
## 181 No 0 No
## 182 No 0 No
## 183 No 0 No
## 184 No 0 No
## 185 No 0 No
## 186 No 0 No
## 187 No 0 No
## 188 No 0 No
## 189 No 0 No
## 190 No 0 No
## 191 No 0 No
## 192 No 0 No
## 193 Yes vomit No
## 194 No 0 No
## 195 No 0 No
## 196 No 0 No
## 197 No 0 No
## 198 No 0 No
## 199 No 0 No
## 200 No 0 No
## 201 No 0 No
## 202 No 0 No
## 203 No 0 No
## 204 No 0 No
## 205 No 0 No
## 206 No 0 No
## 207 No 0 No
## 208 No 0 No
## 209 No 0 No
## 210 No 0 No
## 211 No 0 No
## 212 No 0 No
## 213 No 0 No
## 214 No 0 No
## 215 No 0 No
## 216 No 0 No
## 217 No 0 No
## 218 No 0 No
## 219 No 0 No
## 220 No 0 No
## 221 No 0 No
## 222 No 0 No
## 223 No 0 No
## 224 No 0 No
## 225 No 0 No
## 226 No 0 No
## 227 No 0 No
## 228 No 0 No
## 229 No 0 No
## 230 No 0 No
## 231 No 0 No
## 232 No 0 No
## 233 No 0 No
## 234 No 0 No
## 235 No 0 No
## 236 No 0 No
## 237 Yes Contami ted Surfaces No
## 238 No 0 No
## 239 No 0 No
## 240 Yes bathroom door handle Yes
## 241 No 0 No
## 242 Yes Flooding event near oyster beds of sewage No
## 243 No 0 No
## 244 No 0 No
## 245 No 0 No
## 246 No 0 No
## 247 No 0 No
## 248 No 0 No
## 249 No 0 No
## 250 No 0 No
## 251 No 0 No
## 252 No 0 No
## 253 No 0 No
## 254 No 0 No
## 255 No 0 No
## 256 No 0 No
## 257 No 0 No
## 258 No 0 No
## 259 No 0 No
## 260 No 0 No
## 261 Yes Aerosolized droplets No
## 262 No 0 No
## 263 No 0 No
## 264 No 0 No
## 265 No 0 No
## 266 No 0 No
## 267 No 0 No
## 268 No 0 No
## 269 No 0 No
## 270 No 0 No
## 271 No 0 No
## 272 No 0 No
## 273 No 0 No
## 274 Yes salad preserved at elementary school A No
## 275 No 0 No
## 276 No 0 No
## 277 No 0 No
## 278 No 0 No
## 279 No 0 No
## 280 No 0 No
## 281 No 0 No
## 282 No 0 No
## 283 No 0 No
## 284 No 0 No
## 285 No 0 No
## 286 No 0 No
## 287 No 0 No
## 288 No 0 No
## 289 No 0 No
## 290 No 0 No
## 291 No 0 No
## 292 No 0 No
## 293 No 0 No
## 294 No 0 No
## 295 No 0 No
## 296 No 0 No
## 297 No 0 No
## 298 No 0 No
## 299 No 0 No
## 300 No 0 No
## 301 No 0 No
## 302 No 0 No
## 303 No 0 No
## 304 No 0 No
## 305 No 0 No
## 306 No 0 No
## 307 No 0 No
## 308 No 0 No
## 309 No 0 No
## 310 No 0 No
## 311 No 0 No
## 312 No 0 No
## 313 No 0 No
## 314 No 0 No
## 315 No 0 No
## 316 No 0 No
## 317 No 0 No
## 318 No 0 No
## 319 No 0 No
## 320 No 0 No
## 321 No 0 No
## 322 No 0 No
## 323 No 0 No
## Veh3_D_1 PCRSect OBYear Hemisphere season MeanI1
## 1 0 Capsid 1999 Northern Fall 0
## 2 0 Unspecified 1993 Northern Fall 0
## 3 0 Unspecified 2002 Northern Fall 0
## 4 0 Both 2002 Northern Fall 0
## 5 0 Both 2002 Northern Fall 0
## 6 0 Both 2002 Northern Fall 0
## 7 0 Both 2002 Northern Fall 0
## 8 0 Both 2002 Northern Fall 0
## 9 0 Both 2002 Northern Fall 0
## 10 0 Both 2002 Northern Fall 0
## 11 0 Both 2002 Northern Fall 0
## 12 0 Both 2002 Northern Fall 0
## 13 0 Both 2002 Northern Fall 0
## 14 0 Both 2002 Northern Fall 0
## 15 0 Both 2002 Northern Fall 0
## 16 0 Both 2002 Northern Fall 0
## 17 0 Unspecified 1993 Northern Fall 34
## 18 0 Both 1998 Northern Fall 0
## 19 0 Both 2005 Southern Fall 0
## 20 0 Polymerase 1999 Northern Fall 0
## 21 0 Unspecified 2003 Southern Fall 0
## 22 0 Both 2001 Northern Fall 0
## 23 0 Both 1998 Northern Fall 0
## 24 0 Both 1999 Northern Fall 0
## 25 0 Both 2001 Northern Fall 0
## 26 Contami ted Surfaces Unspecified 2000 Northern Fall 0
## 27 0 Unspecified 2002 Southern Fall 0
## 28 0 Both 2002 Northern Fall 0
## 29 0 Both 2002 Northern Fall 0
## 30 0 Both 2002 Northern Fall 0
## 31 0 Capsid 2002 Northern Fall 0
## 32 0 Polymerase 2002 Northern Fall 0
## 33 0 Both 2002 Northern Fall 0
## 34 0 Both 2002 Northern Fall 0
## 35 0 Both 2002 Northern Fall 0
## 36 0 Both 2003 Northern Fall 0
## 37 0 Both 2004 Northern Fall 0
## 38 0 Both 2004 Northern Fall 0
## 39 0 Both 2004 Northern Fall 0
## 40 0 Capsid 2006 Northern Fall 0
## 41 0 Capsid 2006 Northern Fall 0
## 42 0 Capsid 2006 Northern Fall 0
## 43 0 Capsid 2006 Northern Fall 0
## 44 0 Capsid 2006 Northern Fall 0
## 45 0 Unspecified 2002 Northern Fall 0
## 46 0 Polymerase 1998 Northern Fall 0
## 47 0 Polymerase 1999 Northern Fall 0
## 48 0 Polymerase 1998 Northern Fall 0
## 49 0 Polymerase 2000 Northern Fall 0
## 50 0 Unspecified 2005 Northern Fall 16
## 51 0 Polymerase 2002 Northern Fall 0
## 52 0 Both 1998 Southern Fall 0
## 53 0 Both 1998 Southern Fall 0
## 54 0 Unspecified 1998 Northern Fall 38
## 55 0 Unspecified 2007 Northern Spring 0
## 56 staff Unspecified 2002 Northern Spring 0
## 57 0 Polymerase 1994 Southern Spring 0
## 58 0 Polymerase 1994 Southern Spring 0
## 59 0 Polymerase 2002 Northern Spring 0
## 60 0 Unspecified 2005 Northern Spring 0
## 61 0 Polymerase 1999 Northern Spring 0
## 62 0 Unspecified 2002 Southern Spring 0
## 63 0 Unspecified 2007 Northern Spring 0
## 64 0 Both 2003 Northern Spring 0
## 65 0 Both 2003 Northern Spring 0
## 66 0 Both 2003 Northern Spring 0
## 67 0 Polymerase 2002 Northern Spring 0
## 68 0 Polymerase 2003 Northern Spring 0
## 69 0 Polymerase 2002 Northern Spring 0
## 70 0 Polymerase 2004 Northern Spring 0
## 71 0 Both 1999 Northern Spring 0
## 72 0 Both 2002 Northern Spring 0
## 73 0 Both 2004 Northern Spring 0
## 74 0 Both 1997 Northern Spring 0
## 75 0 Both 1998 Northern Spring 0
## 76 0 Both 1998 Northern Spring 0
## 77 0 Both 1999 Northern Spring 0
## 78 0 Both 2004 Northern Spring 0
## 79 0 Both 2004 Northern Spring 0
## 80 0 Both 2004 Northern Spring 0
## 81 0 Both 2004 Northern Spring 0
## 82 0 Both 2004 Northern Spring 0
## 83 0 Both 2004 Northern Spring 0
## 84 0 Both 2004 Northern Spring 0
## 85 0 Both 2004 Northern Spring 0
## 86 0 Both 2004 Northern Spring 0
## 87 0 Capsid 2008 Northern Spring 0
## 88 0 Both 2000 Northern Spring 0
## 89 0 Capsid 2002 Northern Spring 0
## 90 0 Both 2002 Northern Spring 0
## 91 0 Polymerase 2002 Northern Spring 0
## 92 0 Both 2004 Northern Spring 0
## 93 0 Both 2004 Northern Spring 0
## 94 0 Both 2005 Northern Spring 0
## 95 0 Both 2005 Northern Spring 0
## 96 0 Capsid 2006 Northern Spring 0
## 97 0 Capsid 2006 Northern Spring 0
## 98 0 Capsid 2006 Northern Spring 0
## 99 0 Capsid 2006 Northern Spring 0
## 100 0 Capsid 2006 Northern Spring 0
## 101 0 Polymerase 2006 Northern Spring 0
## 102 0 Unspecified 1995 Northern Spring 0
## 103 0 Capsid 2003 Northern Spring 0
## 104 0 Capsid 2006 Northern Spring 0
## 105 Contaminted Surfaces Polymerase 2001 Northern Spring 0
## 106 0 Polymerase 1999 Northern Spring 0
## 107 0 Polymerase 1999 Northern Spring 0
## 108 0 Polymerase 1999 Northern Spring 0
## 109 0 Polymerase 1999 Northern Spring 0
## 110 0 Polymerase 2002 Northern Spring 0
## 111 0 Polymerase 1999 Northern Spring 0
## 112 0 Unspecified 1995 Southern Spring 0
## 113 0 Unspecified 1995 Southern Spring 0
## 114 0 Unspecified 2002 Northern Spring 0
## 115 0 Both 1997 Northern Spring 0
## 116 0 Both 1998 Northern Spring 0
## 117 0 Both 1998 Northern Spring 0
## 118 0 Both 1998 Northern Spring 0
## 119 0 Both 1998 Northern Spring 0
## 120 0 Both 1998 Northern Spring 0
## 121 0 Both 1998 Northern Spring 0
## 122 Foodhandler Polymerase 1995 Northern Spring 0
## 123 0 Both 1995 Northern Spring 0
## 124 0 Both 1998 Southern Spring 0
## 125 0 Both 1999 Southern Spring 0
## 126 0 Both 2000 Southern Spring 0
## 127 0 Unspecified 2005 Northern Spring 0
## 128 house salad Polymerase 2007 Northern Spring 0
## 129 0 Both 2009 Northern Spring 0
## 130 0 Capsid 1999 Northern Summer 0
## 131 0 Polymerase 2000 Northern Summer 0
## 132 0 Both 2006 Northern Summer 0
## 133 0 Polymerase 2007 Northern Summer 0
## 134 0 Both 1994 Northern Summer 0
## 135 0 Both 2002 Southern Summer 0
## 136 0 Polymerase 1994 Southern Summer 0
## 137 0 Polymerase 1998 Northern Summer 0
## 138 0 Polymerase 1999 Northern Summer 0
## 139 0 Polymerase 1999 Northern Summer 0
## 140 0 Unspecified 2006 Northern Summer 0
## 141 0 Unspecified 2005 Northern Summer 0
## 142 0 Unspecified 2005 Northern Summer 0
## 143 0 Unspecified 2005 Northern Summer 0
## 144 0 Both 1999 Northern Summer 0
## 145 0 Unspecified 2006 Northern Summer 0
## 146 0 Polymerase 2004 Northern Summer 0
## 147 0 Polymerase 2004 Northern Summer 0
## 148 0 Both 1996 Northern Summer 0
## 149 0 Both 1996 Northern Summer 0
## 150 0 Capsid 2002 Northern Summer 0
## 151 0 Both 2002 Northern Summer 0
## 152 0 Both 2002 Northern Summer 0
## 153 0 Both 2003 Northern Summer 0
## 154 0 Both 2003 Northern Summer 0
## 155 0 Both 2003 Northern Summer 0
## 156 0 Both 2003 Northern Summer 0
## 157 0 Both 2004 Northern Summer 0
## 158 0 Both 2005 Northern Summer 0
## 159 0 Both 2005 Northern Summer 0
## 160 0 Capsid 2006 Northern Summer 0
## 161 0 Capsid 2006 Northern Summer 0
## 162 0 Capsid 2006 Northern Summer 0
## 163 0 Capsid 2006 Northern Summer 0
## 164 0 Capsid 2006 Northern Summer 0
## 165 0 Capsid 2006 Northern Summer 0
## 166 0 Both 2005 Northern Summer 0
## 167 0 Polymerase 2001 Northern Summer 0
## 168 0 Polymerase 2003 Northern Summer 0
## 169 0 Polymerase 1999 Northern Summer 0
## 170 0 Polymerase 1999 Northern Summer 0
## 171 0 Unspecified 2004 Northern Summer 48
## 172 0 Polymerase 2004 Southern Summer 0
## 173 0 Both 1999 Southern Summer 0
## 174 0 Unspecified 2010 Southern Summer 0
## 175 0 Unspecified 1996 Northern Winter 0
## 176 0 Both 2006 Northern Winter 0
## 177 0 Both 2006 Northern Winter 0
## 178 0 Unspecified 1998 Northern Winter 0
## 179 0 Both 2003 Southern Winter 0
## 180 0 Polymerase 1998 Northern Winter 0
## 181 0 Polymerase 1998 Northern Winter 0
## 182 0 Polymerase 1998 Northern Winter 0
## 183 0 Polymerase 1998 Northern Winter 0
## 184 0 Polymerase 1999 Northern Winter 0
## 185 0 Capsid 2004 Northern Winter 0
## 186 0 Both 2002 Northern Winter 0
## 187 0 Both 2003 Northern Winter 0
## 188 0 Both 2003 Northern Winter 0
## 189 0 Both 2003 Northern Winter 0
## 190 0 Both 2002 Northern Winter 0
## 191 0 Both 2003 Northern Winter 0
## 192 0 Unspecified 2002 Northern Winter 0
## 193 0 Unspecified 1999 Northern Winter 0
## 194 0 Polymerase 2001 Northern Winter 0
## 195 0 Polymerase 2003 Northern Winter 0
## 196 0 Polymerase 2003 Northern Winter 0
## 197 0 Polymerase 1994 Northern Winter 0
## 198 0 Polymerase 1994 Northern Winter 0
## 199 0 Polymerase 2003 Northern Winter 0
## 200 0 Both 1997 Northern Winter 0
## 201 0 Both 1997 Northern Winter 0
## 202 0 Both 1999 Northern Winter 0
## 203 0 Both 2000 Northern Winter 0
## 204 0 Both 2000 Northern Winter 0
## 205 0 Both 2000 Northern Winter 0
## 206 0 Both 2001 Northern Winter 0
## 207 0 Both 2001 Northern Winter 0
## 208 0 Both 2002 Northern Winter 0
## 209 0 Both 2002 Northern Winter 0
## 210 0 Both 2003 Northern Winter 0
## 211 0 Both 2003 Northern Winter 0
## 212 0 Both 2003 Northern Winter 0
## 213 0 Both 2004 Northern Winter 0
## 214 0 Polymerase 2006 Southern Winter 0
## 215 0 Both 1997 Northern Winter 0
## 216 0 Both 1997 Northern Winter 0
## 217 0 Both 1997 Northern Winter 0
## 218 0 Both 1997 Northern Winter 0
## 219 0 Both 1997 Northern Winter 0
## 220 0 Both 1997 Northern Winter 0
## 221 0 Both 1998 Northern Winter 0
## 222 0 Both 1998 Northern Winter 0
## 223 0 Both 1998 Northern Winter 0
## 224 0 Both 1998 Northern Winter 0
## 225 0 Both 1998 Northern Winter 0
## 226 0 Both 1998 Northern Winter 0
## 227 0 Both 1998 Northern Winter 0
## 228 0 Both 1998 Northern Winter 0
## 229 0 Both 1998 Northern Winter 0
## 230 0 Both 1998 Northern Winter 0
## 231 0 Both 1999 Northern Winter 0
## 232 0 Both 1999 Northern Winter 0
## 233 0 Both 1999 Northern Winter 0
## 234 0 Both 1999 Northern Winter 0
## 235 0 Both 2000 Northern Winter 0
## 236 0 Both 2000 Northern Winter 0
## 237 0 Polymerase 1992 Northern Winter 0
## 238 0 Polymerase 2001 Northern Winter 0
## 239 0 Unspecified 1994 Northern Winter 0
## 240 physiotherapy instrument Unspecified 1999 Northern Winter 0
## 241 0 Both 2002 Northern Winter 0
## 242 0 Both 2006 Northern Winter 0
## 243 0 Unspecified 2000 Southern Winter 0
## 244 0 Both 2002 Northern Winter 0
## 245 0 Both 2003 Northern Winter 0
## 246 0 Both 2003 Northern Winter 0
## 247 0 Both 2004 Northern Winter 0
## 248 0 Both 2004 Northern Winter 0
## 249 0 Both 2004 Northern Winter 0
## 250 0 Both 2004 Northern Winter 0
## 251 0 Both 2004 Northern Winter 0
## 252 0 Both 2004 Northern Winter 0
## 253 0 Capsid 2004 Northern Winter 0
## 254 0 Capsid 2005 Northern Winter 0
## 255 0 Capsid 2006 Northern Winter 0
## 256 0 Capsid 2006 Northern Winter 0
## 257 0 Capsid 2006 Northern Winter 0
## 258 0 Capsid 2006 Northern Winter 0
## 259 0 Unspecified 2001 Northern Winter 0
## 260 0 Polymerase 1994 Northern Winter 0
## 261 0 Unspecified 2002 Southern Winter 0
## 262 0 Capsid 2002 Northern Winter 0
## 263 0 Capsid 2002 Northern Winter 0
## 264 0 Capsid 2002 Northern Winter 0
## 265 0 Capsid 2002 Northern Winter 0
## 266 0 Capsid 2002 Northern Winter 0
## 267 0 Capsid 2003 Northern Winter 0
## 268 0 Capsid 2003 Northern Winter 0
## 269 0 Capsid 2004 Northern Winter 0
## 270 0 Capsid 2006 Northern Winter 0
## 271 0 Unspecified 2001 Northern Winter 0
## 272 0 Polymerase 1999 Northern Winter 0
## 273 0 Polymerase 2000 Northern Winter 0
## 274 0 Capsid 2007 Northern Winter 0
## 275 0 Unspecified 2005 Northern Winter 0
## 276 0 Unspecified 2007 Northern Winter 0
## 277 0 Polymerase 1999 Northern Winter 0
## 278 0 Unspecified 2004 Northern Winter 0
## 279 0 Unspecified 2004 Northern Winter 0
## 280 0 Unspecified 2004 Northern Winter 0
## 281 0 Both 1998 Northern Winter 0
## 282 0 Both 1998 Northern Winter 0
## 283 0 Both 1998 Northern Winter 0
## 284 0 Both 1998 Northern Winter 0
## 285 0 Both 1998 Northern Winter 0
## 286 0 Both 1998 Northern Winter 0
## 287 0 Both 1998 Northern Winter 0
## 288 0 Both 1998 Northern Winter 0
## 289 0 Both 1998 Northern Winter 0
## 290 0 Both 1998 Northern Winter 0
## 291 0 Polymerase 1999 Northern Winter 0
## 292 0 Unspecified 2004 Northern Winter 0
## 293 0 Unspecified 1996 Southern Winter 0
## 294 0 Both 2004 Northern Winter 0
## 295 0 Both 1997 Southern Winter 0
## 296 0 Both 1997 Southern Winter 0
## 297 0 Both 1998 Southern Winter 0
## 298 0 Both 2000 Southern Winter 0
## 299 0 Both 2000 Southern Winter 0
## 300 0 Both 2001 Northern 0
## 301 0 Both 2001 Northern 0
## 302 0 Both 2001 Northern 0
## 303 0 Both 2001 Northern 0
## 304 0 Both 2001 Northern 0
## 305 0 Both 2001 Northern 0
## 306 0 Both 2001 Northern 0
## 307 0 Both 2001 Northern 0
## 308 0 Both 2001 Northern 0
## 309 0 Both 2001 Northern 0
## 310 0 Both 2001 Northern 0
## 311 0 Both 2001 Northern 0
## 312 0 Both 2001 Northern 0
## 313 0 Unspecified 2007 Northern 0
## 314 0 Polymerase 2003 Northern 0
## 315 0 Polymerase 2006 Northern 0
## 316 0 Unspecified 0 Unspecified 0
## 317 0 Unspecified 1996 Northern 0
## 318 0 Unspecified 0 Northern 0
## 319 0 Unspecified 0 Northern 0
## 320 0 Unspecified 0 Northern 0
## 321 0 Unspecified 0 Northern 0
## 322 0 Capsid 2006 Northern Winter 36
## 323 0 Polymerase 2003 Northern 0
## MedianI1 Range_S_I1 Range_L_I1 MeanD1 MedianD1 Range_S_D1 Range_L_D1
## 1 0 0 0 0 0 0 0
## 2 34 0 0 0 37 0 0
## 3 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0
## 17 0 31 39 47 0 32 59
## 18 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0
## 20 0 12 24 0 0 0 0
## 21 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0
## 45 0 0 0 0 24 24 168
## 46 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0
## 50 17 14 19 24 0 0 0
## 51 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0
## 54 0 6 85 0 0 24 48
## 55 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0
## 57 0 24 48 0 0 24 72
## 58 0 24 48 0 0 24 72
## 59 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0
## 102 0 0 0 0 0 24 120
## 103 0 0 0 0 0 0 0
## 104 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0
## 113 0 0 0 0 0 0 0
## 114 27 15 37 0 0 0 0
## 115 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0
## 121 0 18 48 0 0 0 0
## 122 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0
## 128 36 8 72 0 48 24 168
## 129 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0
## 136 0 0 0 0 0 24 36
## 137 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0
## 159 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0
## 166 0 0 0 0 24 5 144
## 167 31 0 0 0 32 0 0
## 168 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0
## 171 48 1 168 0 0 0 0
## 172 34 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0
## 185 0 0 0 0 0 0 0
## 186 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0
## 189 0 0 0 0 0 0 0
## 190 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0
## 192 34 2 68 0 0 0 0
## 193 0 0 0 0 0 12 24
## 194 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0
## 234 0 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0
## 236 0 0 0 0 0 0 0
## 237 0 0 0 41 0 0 0
## 238 0 0 0 0 0 0 0
## 239 0 0 0 36 0 24 168
## 240 0 0 0 0 0 0 0
## 241 0 0 0 0 0 0 0
## 242 0 0 0 0 0 0 0
## 243 0 0 0 0 0 0 0
## 244 0 0 0 0 0 0 0
## 245 0 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0
## 247 0 0 0 0 0 0 0
## 248 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0
## 251 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0
## 253 0 0 0 0 0 0 0
## 254 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 0
## 256 0 0 0 0 0 0 0
## 257 0 0 0 0 0 0 0
## 258 0 0 0 0 0 0 0
## 259 0 0 0 0 0 0 0
## 260 0 0 0 0 0 0 0
## 261 0 0 0 0 0 0 0
## 262 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0
## 265 0 0 0 0 0 0 0
## 266 0 0 0 0 0 0 0
## 267 0 0 0 0 0 0 0
## 268 0 0 0 0 0 0 0
## 269 0 0 0 0 0 0 0
## 270 0 0 0 0 0 0 0
## 271 0 0 0 0 48 0 0
## 272 0 0 0 0 0 0 0
## 273 0 0 0 0 0 0 0
## 274 0 0 0 0 0 0 0
## 275 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 0
## 279 0 0 0 0 0 0 0
## 280 0 0 0 0 0 0 0
## 281 0 0 0 0 0 0 0
## 282 0 0 0 0 0 0 0
## 283 0 0 0 0 0 0 0
## 284 0 0 0 0 0 0 0
## 285 0 0 0 0 0 0 0
## 286 0 0 0 0 0 0 0
## 287 0 0 0 0 0 0 0
## 288 0 0 0 0 0 0 0
## 289 0 0 0 0 0 0 0
## 290 0 0 0 0 0 0 0
## 291 0 0 0 0 0 48 72
## 292 0 0 0 0 0 0 0
## 293 35 5 60 0 48 6 240
## 294 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0
## 298 0 0 0 0 0 0 0
## 299 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0
## 301 0 0 0 0 0 0 0
## 302 0 0 0 0 0 0 0
## 303 0 0 0 0 0 0 0
## 304 0 0 0 0 0 0 0
## 305 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0
## 307 0 0 0 0 0 0 0
## 308 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0
## 310 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0
## 312 0 0 0 0 0 0 0
## 313 0 0 0 0 0 0 0
## 314 0 0 0 0 0 0 0
## 315 0 0 0 0 0 0 0
## 316 0 0 0 0 0 0 0
## 317 0 12 48 0 0 0 0
## 318 0 0 0 0 0 0 0
## 319 0 0 0 0 0 0 0
## 320 0 0 0 0 0 0 0
## 321 0 0 0 0 0 0 0
## 322 0 0 0 0 0 0 0
## 323 0 0 0 0 0 0 0
## MeanA1 MedianA1 Range_Y_A1 Range_O_A1 Action1
## 1 NA NA 0.75 2.000 Unspecified
## 2 NA NA 0 0.000 Yes
## 3 NA NA 0 0.000 Yes
## 4 NA NA 0 0.000 Unspecified
## 5 NA NA 0 0.000 Unspecified
## 6 NA NA 0 0.000 Unspecified
## 7 NA NA 0 0.000 Unspecified
## 8 NA NA 0 0.000 Unspecified
## 9 NA NA 0 0.000 Unspecified
## 10 NA NA 0 0.000 Unspecified
## 11 NA NA 0 0.000 Unspecified
## 12 NA NA 0 0.000 Unspecified
## 13 NA NA 0 0.000 Unspecified
## 14 NA NA 0 0.000 Unspecified
## 15 NA NA 0 0.000 Unspecified
## 16 NA NA 0 0.000 Unspecified
## 17 NA NA 0 0.000 Yes
## 18 NA NA 0 0.000 Unspecified
## 19 NA NA 0 0.000 Unspecified
## 20 NA NA 18 28.000 Unspecified
## 21 NA NA 0 0.000 Unspecified
## 22 NA NA 15 18.000 Unspecified
## 23 NA NA 0 0.000 Unspecified
## 24 NA NA 0 0.000 Unspecified
## 25 NA NA 0 0.000 Unspecified
## 26 NA NA 0 0.000 Yes
## 27 NA NA 0 0.000 Yes
## 28 NA NA 0 0.000 Unspecified
## 29 NA NA 0 0.000 Unspecified
## 30 NA NA 0 0.000 Unspecified
## 31 NA NA 0 0.000 Unspecified
## 32 NA NA 0 0.000 Unspecified
## 33 NA NA 0 0.000 Unspecified
## 34 NA NA 0 0.000 Unspecified
## 35 NA NA 0 0.000 Unspecified
## 36 NA NA 0 0.000 Unspecified
## 37 NA NA 0 0.000 Unspecified
## 38 NA NA 0 0.000 Unspecified
## 39 NA NA 0 0.000 Unspecified
## 40 NA NA 0 0.000 Unspecified
## 41 NA NA 0 0.000 Unspecified
## 42 NA NA 0 0.000 Unspecified
## 43 NA NA 0 0.000 Unspecified
## 44 NA NA 0 0.000 Unspecified
## 45 NA NA 0 0.000 Yes
## 46 NA NA 0 0.000 Unspecified
## 47 NA NA 0 0.000 Unspecified
## 48 NA NA 0 0.000 Unspecified
## 49 NA NA 0 0.000 Unspecified
## 50 NA 47 43 54.000 Yes
## 51 NA NA 0 0.000 Yes
## 52 NA NA 0 0.000 Unspecified
## 53 NA NA 0 0.000 Unspecified
## 54 NA NA 0 0.000 Unspecified
## 55 NA NA 0 0.000 Unspecified
## 56 NA NA 0 0.000 Yes
## 57 NA NA 0 0.000 Unspecified
## 58 NA NA 0 0.000 Unspecified
## 59 NA NA 0 0.000 Yes
## 60 NA NA 0 0.000 Yes
## 61 NA NA 0 0.000 Unspecified
## 62 NA NA 0 0.000 Yes
## 63 NA NA 0 0.000 Yes
## 64 NA NA 0 0.000 Unspecified
## 65 NA NA 0 0.000 Unspecified
## 66 NA NA 0 0.000 Unspecified
## 67 NA NA 0 0.000 Unspecified
## 68 NA NA 0 0.000 Unspecified
## 69 NA NA 0 0.000 Unspecified
## 70 NA NA 0 0.000 Unspecified
## 71 NA NA 22 26.000 Unspecified
## 72 NA NA 10 11.000 Unspecified
## 73 NA NA 7 10.000 Unspecified
## 74 NA NA 0 0.000 Unspecified
## 75 NA NA 0 0.000 Unspecified
## 76 NA NA 0 0.000 Unspecified
## 77 NA NA 0 0.000 Unspecified
## 78 NA NA 0 0.000 Unspecified
## 79 NA NA 0 0.000 Unspecified
## 80 NA NA 0 0.000 Unspecified
## 81 NA NA 0 0.000 Unspecified
## 82 NA NA 0 0.000 Unspecified
## 83 NA NA 0 0.000 Unspecified
## 84 NA NA 0 0.000 Unspecified
## 85 NA NA 0 0.000 Unspecified
## 86 NA NA 0 0.000 Unspecified
## 87 NA NA 0 0.000 Yes
## 88 NA NA 0 0.000 Unspecified
## 89 NA NA 0 0.000 Unspecified
## 90 NA NA 0 0.000 Unspecified
## 91 NA NA 0 0.000 Unspecified
## 92 NA NA 0 0.000 Unspecified
## 93 NA NA 0 0.000 Unspecified
## 94 NA NA 0 0.000 Unspecified
## 95 NA NA 0 0.000 Unspecified
## 96 NA NA 0 0.000 Unspecified
## 97 NA NA 0 0.000 Unspecified
## 98 NA NA 0 0.000 Unspecified
## 99 NA NA 0 0.000 Unspecified
## 100 NA NA 0 0.000 Unspecified
## 101 25 NA 0 0.000 Yes
## 102 NA NA 0 0.000 Yes
## 103 NA NA 0 0.000 Unspecified
## 104 NA NA 0 0.000 Unspecified
## 105 NA NA 0 0.000 Yes
## 106 NA NA 0 0.000 Unspecified
## 107 NA NA 0 0.000 Yes
## 108 NA NA 0 0.000 Unspecified
## 109 NA NA 0 0.000 Unspecified
## 110 NA NA 0 0.000 Unspecified
## 111 NA NA 0 0.000 Unspecified
## 112 NA NA 0 0.000 Yes
## 113 81 NA 67 91.000 Yes
## 114 NA NA 0 0.000 Yes
## 115 NA NA 0 0.000 Unspecified
## 116 NA NA 0 0.000 Unspecified
## 117 NA NA 0 0.000 Unspecified
## 118 NA NA 0 0.000 Unspecified
## 119 NA NA 0 0.000 Unspecified
## 120 NA NA 0 0.000 Unspecified
## 121 NA NA 0 0.000 Yes
## 122 NA NA 17 67.000 Unspecified
## 123 NA NA 17 43.000 Unspecified
## 124 NA NA 0 0.000 Unspecified
## 125 NA NA 0 0.000 Unspecified
## 126 NA NA 0 0.000 Unspecified
## 127 19 NA 18 23.000 Unspecified
## 128 NA 6 5 92.000 Yes
## 129 NA NA 0 0.000 Unspecified
## 130 NA NA 0.167 0.833 Unspecified
## 131 NA NA 0 0.000 Yes
## 132 NA NA 0 0.000 Unspecified
## 133 NA NA 0 0.000 Yes
## 134 NA NA 0 0.000 Yes
## 135 NA NA 0 0.000 Unspecified
## 136 NA NA 0 0.000 Unspecified
## 137 NA NA 0 0.000 Unspecified
## 138 NA NA 0 0.000 Unspecified
## 139 NA NA 0 0.000 Unspecified
## 140 NA NA 0 0.000 Yes
## 141 NA 85 41 102.000 Yes
## 142 NA NA 0 0.000 Yes
## 143 NA NA 0 0.000 Yes
## 144 NA NA 0 0.000 Unspecified
## 145 NA NA 0 0.000 Yes
## 146 NA NA 0 0.000 Unspecified
## 147 NA NA 0 0.000 Unspecified
## 148 NA NA 0 0.000 Unspecified
## 149 NA NA 0 0.000 Unspecified
## 150 NA NA 0 0.000 Unspecified
## 151 NA NA 0 0.000 Unspecified
## 152 NA NA 0 0.000 Unspecified
## 153 NA NA 0 0.000 Unspecified
## 154 NA NA 0 0.000 Unspecified
## 155 NA NA 0 0.000 Unspecified
## 156 NA NA 0 0.000 Unspecified
## 157 NA NA 0 0.000 Unspecified
## 158 NA NA 0 0.000 Unspecified
## 159 NA NA 0 0.000 Unspecified
## 160 NA NA 0 0.000 Unspecified
## 161 NA NA 0 0.000 Unspecified
## 162 NA NA 0 0.000 Unspecified
## 163 NA NA 0 0.000 Unspecified
## 164 NA NA 0 0.000 Unspecified
## 165 NA NA 0 0.000 Unspecified
## 166 NA NA 0 0.000 Yes
## 167 NA 9 0.75 73.000 Yes
## 168 NA NA 0 0.000 Unspecified
## 169 NA NA 0 0.000 Unspecified
## 170 NA NA 0 0.000 Unspecified
## 171 19 12 0 0.000 Yes
## 172 NA NA 0 0.000 Yes
## 173 NA NA 0 0.000 Unspecified
## 174 NA 2 0 0.000 Unspecified
## 175 NA NA 0 0.000 Yes
## 176 NA NA 0 0.000 Unspecified
## 177 NA NA 0 0.000 Unspecified
## 178 NA NA 0 0.000 Yes
## 179 NA NA 0 0.000 Unspecified
## 180 NA NA 0 0.000 Unspecified
## 181 NA NA 0 0.000 Unspecified
## 182 NA NA 0 0.000 Unspecified
## 183 NA NA 0 0.000 Unspecified
## 184 NA NA 0 0.000 Unspecified
## 185 43 NA 23 68.000 Yes
## 186 NA NA 0 0.000 Unspecified
## 187 NA NA 0 0.000 Unspecified
## 188 NA NA 0 0.000 Unspecified
## 189 NA NA 0 0.000 Unspecified
## 190 NA NA 0 0.000 Unspecified
## 191 NA NA 0 0.000 Unspecified
## 192 NA NA 0 0.000 Unspecified
## 193 NA NA 0 0.000 Yes
## 194 NA NA 0 0.000 Unspecified
## 195 NA NA 0 0.000 Unspecified
## 196 NA NA 0 0.000 Unspecified
## 197 NA NA 0 0.000 Unspecified
## 198 NA NA 0 0.000 Unspecified
## 199 NA NA 0 0.000 Unspecified
## 200 NA NA 38 44.000 Unspecified
## 201 NA NA 20 26.000 Unspecified
## 202 NA NA 16 39.000 Unspecified
## 203 NA NA 17 48.000 Unspecified
## 204 NA NA 11 38.000 Unspecified
## 205 NA NA 24 45.000 Unspecified
## 206 NA NA 7 8.000 Unspecified
## 207 NA NA 24 35.000 Unspecified
## 208 NA NA 20 80.000 Unspecified
## 209 NA NA 16 54.000 Unspecified
## 210 NA NA 13 14.000 Unspecified
## 211 NA NA 1 5.000 Unspecified
## 212 NA NA 1 41.000 Unspecified
## 213 NA NA 20 103.000 Unspecified
## 214 NA NA 0 0.000 Yes
## 215 NA NA 0 0.000 Unspecified
## 216 NA NA 0 0.000 Unspecified
## 217 NA NA 0 0.000 Unspecified
## 218 NA NA 0 0.000 Unspecified
## 219 NA NA 0 0.000 Unspecified
## 220 NA NA 0 0.000 Unspecified
## 221 NA NA 0 0.000 Unspecified
## 222 NA NA 0 0.000 Unspecified
## 223 NA NA 0 0.000 Unspecified
## 224 NA NA 0 0.000 Unspecified
## 225 NA NA 0 0.000 Unspecified
## 226 NA NA 0 0.000 Unspecified
## 227 NA NA 0 0.000 Unspecified
## 228 NA NA 0 0.000 Unspecified
## 229 NA NA 0 0.000 Unspecified
## 230 NA NA 0 0.000 Unspecified
## 231 NA NA 0 0.000 Unspecified
## 232 NA NA 0 0.000 Unspecified
## 233 NA NA 0 0.000 Unspecified
## 234 NA NA 0 0.000 Unspecified
## 235 NA NA 0 0.000 Unspecified
## 236 NA NA 0 0.000 Unspecified
## 237 NA NA 0 0.000 Yes
## 238 NA NA 0 0.000 Yes
## 239 NA 18 16 28.000 Yes
## 240 NA NA 0 0.000 Yes
## 241 NA NA 0 0.000 Yes
## 242 NA NA 0 0.000 Yes
## 243 NA NA 0 0.000 Yes
## 244 NA NA 0 0.000 Unspecified
## 245 NA NA 0 0.000 Unspecified
## 246 NA NA 0 0.000 Unspecified
## 247 NA NA 0 0.000 Unspecified
## 248 NA NA 0 0.000 Unspecified
## 249 NA NA 0 0.000 Unspecified
## 250 NA NA 0 0.000 Unspecified
## 251 NA NA 0 0.000 Unspecified
## 252 NA NA 0 0.000 Unspecified
## 253 NA NA 0 0.000 Unspecified
## 254 NA NA 0 0.000 Unspecified
## 255 NA NA 0 0.000 Unspecified
## 256 NA NA 0 0.000 Unspecified
## 257 NA NA 0 0.000 Unspecified
## 258 NA NA 0 0.000 Unspecified
## 259 NA NA 0 0.000 Yes
## 260 NA NA 0 0.000 Yes
## 261 NA NA 0 0.000 Yes
## 262 NA NA 0 0.000 Unspecified
## 263 NA NA 0 0.000 Unspecified
## 264 NA NA 0 0.000 Unspecified
## 265 NA NA 0 0.000 Unspecified
## 266 NA NA 0 0.000 Unspecified
## 267 NA NA 0 0.000 Unspecified
## 268 NA NA 0 0.000 Unspecified
## 269 NA NA 0 0.000 Unspecified
## 270 NA NA 0 0.000 Unspecified
## 271 NA NA 0 0.000 Yes
## 272 NA NA 0 0.000 Unspecified
## 273 NA NA 0 0.000 Unspecified
## 274 NA NA 0 0.000 Unspecified
## 275 24 NA 0 0.000 Yes
## 276 NA NA 0 0.000 Yes
## 277 NA NA 0 0.000 Unspecified
## 278 NA NA 0 0.000 Unspecified
## 279 NA NA 0 0.000 Yes
## 280 NA NA 0 0.000 Unspecified
## 281 NA NA 0 0.000 Unspecified
## 282 NA NA 0 0.000 Unspecified
## 283 NA NA 0 0.000 Unspecified
## 284 NA NA 0 0.000 Unspecified
## 285 NA NA 0 0.000 Unspecified
## 286 NA NA 0 0.000 Unspecified
## 287 NA NA 0 0.000 Unspecified
## 288 NA NA 0 0.000 Unspecified
## 289 NA NA 0 0.000 Unspecified
## 290 NA NA 0 0.000 Unspecified
## 291 NA NA 0 0.000 Yes
## 292 NA 4 0 0.000 Yes
## 293 NA NA 13 83.000 Yes
## 294 NA NA 0 0.000 Yes
## 295 NA NA 0 0.000 Unspecified
## 296 NA NA 0 0.000 Unspecified
## 297 NA NA 0 0.000 Unspecified
## 298 NA NA 0 0.000 Unspecified
## 299 NA NA 0 0.000 Unspecified
## 300 NA NA 0 0.000 Unspecified
## 301 NA NA 0 0.000 Unspecified
## 302 NA NA 0 0.000 Unspecified
## 303 NA NA 0 0.000 Unspecified
## 304 NA NA 0 0.000 Unspecified
## 305 NA NA 0 0.000 Unspecified
## 306 NA NA 0 0.000 Unspecified
## 307 NA NA 0 0.000 Unspecified
## 308 NA NA 0 0.000 Unspecified
## 309 NA NA 0 0.000 Unspecified
## 310 NA NA 0 0.000 Unspecified
## 311 NA NA 0 0.000 Unspecified
## 312 NA NA 0 0.000 Unspecified
## 313 NA NA 0 0.000 Unspecified
## 314 NA NA 0 0.000 Unspecified
## 315 NA NA 0 0.000 Unspecified
## 316 NA NA 0 0.000 Yes
## 317 NA NA 0 0.000 Unspecified
## 318 NA NA 0 0.000 Unspecified
## 319 NA NA 0 0.000 Unspecified
## 320 NA NA 0 0.000 Unspecified
## 321 NA NA 0 0.000 Unspecified
## 322 NA NA 0 0.000 Yes
## 323 33 29 2 55.000 No
## Action2_1
## 1 0
## 2 Harvest area closed, oysters were recalled, warning issued to consumers
## 3 Dissinfection of ship, quarentine, cancelation of further voyages for 10 days
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 recall and destroying some oysters harvested from LA coast from Nov 9-12, although most are still accounted for
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 Sick policy implimented, hand hygiene emphasized, hotel was closed for 8 hours for extensive cleaning
## 27 Strict staffing policy, hand hygiene emphasized, ward closed and cleaned
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 in cardiology dept, educatio l interventions concerning the prevention of transmission of NoV
## 46 0
## 47 0
## 48 0
## 49 0
## 50 Restaurant was closed
## 51 handrubbing with a hydroalcolic gel, surfaces washed with a solution of glucoprotamine, washbowls washed with hypochlorite
## 52 0
## 53 0
## 54 0
## 55 0
## 56 staff wore gloves and aprons, discarding gloves and apron after treating each patient, isolating the affected from the u ffected, and using disposable plates and cutlery for the duration of the outbreak
## 57 0
## 58 0
## 59 The field hospital was closed to all but patients with gasteroenteritis
## 60 Restaurant was cleaned, closed, then professio lly cleaned
## 61 0
## 62 Infection control measured applied, staff educated on transmission, ward were cleaned, patients were cohorted
## 63 Quarantine of infected patients, surfaces cleaned with bleach solution
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 new admissions to psychiatric ward were halted, healthcare workers to not report to work until at least 72h after the resolution of symptoms, careful surveillance for new cases, disinfection of patientsÂ\220 rooms, strict hand hygiene practice
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 Water system was chlori ted
## 102 Infected rooms were steam cleaned, sanitation inspections improved practices
## 103 0
## 104 0
## 105 Facilities closed for one week, water was boiled before use, surfaces were sanitized
## 106 0
## 107 Hospital was closed to new admissions
## 108 0
## 109 0
## 110 0
## 111 0
## 112 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 113 infection control consultants; visitors limited to family, no admission or discharge w/limited resident movement, ill staff return to work if symptom-free for 48 h, gloves & hand washing, dedicated cleaning & food staff, soiled linens placed in skip
## 114 Sick policy implimented, hand hygine emphasized
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Tomales Bay closed to shellfish harvesting, voluntary recall of potentially contami ted oysters initiated
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 voluntary closure of restaurant
## 129 0
## 130 0
## 131 Chlori tion of water, using a clean moble water supply, conducted an investigation of piping
## 132 0
## 133 restaurant was closed 2 days after all staff got sick with gastroenteritis
## 134 Infected staff advised to stay off work for 48 hours
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 infection control team closed ward, thorough environmental cleaning, use of alcohol-based rub & hand washing, symptomatic patients fed w/ sogastric tube or percutaneous endoscopic gastrotomy
## 141 Raspberries were recalled
## 142 Product was recalled
## 143 Product was recalled
## 144 0
## 145 contact precautions (hand washing, gloves, gowns) as well as masks those cleaning vomitus or feces, discouraged ill patients from leaving room, restrict ill visitors, ill staff took leave til asymptomatic for 48 h
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 processing plant began a log to track employee illnesses, instituted use of NoV-approved sanitizer for product contact surfaces, hand-washing, plastic gloves when handling ready-to-eat product
## 167 Pool was closed, drained and then chlori ted, drained again and closed for the season
## 168 0
## 169 0
## 170 0
## 171 Public advised not to swim in lakes
## 172 oysters from implicated batch harvested in Japan in Feb 2003 was voluntarily withdrawn from the market in 2 states after epidemiological & traceback evidence became available, and widespread in Australia when microbiological evidence was confirmed
## 173 0
## 174 0
## 175 prohibit oyster harvesting within one mile of oil rig, implement stricter regulation of sewage treatment systems on oil facilities, require toilets on harvest boats, have regular inspection and water acceptance station at docks
## 176 0
## 177 0
## 178 Hotel was closed, water was superchlori ted, superheated, and flushed follwing investigation
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 Public anouncements, revising oyster harvesting regulations, coordi ted with harvesters
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 clean with hypochlorite solution, steam clean
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 Sick policy implimented, hand hygiene sig ge, emergency chlori tion, thorough cleaning
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 Ship was cleaned, ice was discarded, water was purified, ship docked for a week to clean
## 238 Extensive cleaning and disinfection, patients no longer transfered
## 239 closed dining hall
## 240 Surfaces, Rooms, and Equipment were disinfected, hand hygine was emphasized, sick patients told to remain in their rooms
## 241 Harvesters were asked to depurate oysters for 2 days prior to sale
## 242 Depurification times implimented, oysters were recalled, oyster beds shut down for 3 weeks
## 243 Strict staffing policy, ward was closed, areas were disinfected
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 Ward closed to admissions, staffing policy implimented, infection control measures and deep cleaning
## 260 records indicated increased absentees from school clerks, antidiarrheal medicines
## 261 Infection control measures, staff sick policy, no admissions or transfers, isolate cases
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 Sick policy, hand hygiene, disinfection
## 272 0
## 273 0
## 274 0
## 275 Use of water supply forbidden, water was super chlori ted, encouraged hand washing and protective equipment
## 276 isolated ill patients, canceled congregate activities, diverted patients to alter te hospitals, removed alcohol-based hand hygiene products, encouraged handwashing w/soap, used chlorine disinfectant, ill staff stay home til asympomatic for 48h
## 277 0
## 278 0
## 279 Cleaning solution switched to hypochlorous acid
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 heat shock and chlorine treatment of the water network was instituted
## 292 hand cleansing agent changed to one w/certified activity against NV, which contains 95% (v/v) ethanol, use of masks when having symptomatic patient contact, cohorting patients
## 293 Terranora oysters were removed from retail and wholesale outlets, harvesting of oysters was prohibited from the river for several months until water quality met recommended standards and a comprehensive ongoing quality assurance program was in place
## 294 entire unit was closed to admissions & treated as isolation room; ill staff given sick leave & not allowed to work until asymptomatic for 2 days; entire unit disinfected w/hypochlorite; hand hygiene w/soap & water
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 cleaning of ward, double wiping of horizontal surfaces, dry vacuuming of capets and soft furnishings and changing curtains
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 Disinfection of restaurants, kitchens, and toilets performed and main kitchen in hotel restaurant closed
## 323 0
## Secondary MeanI2 MedianI2 Range_S_I2 Range_L_I2 MeanD2 MedianD2
## 1 No 0 0 0 0 0 0
## 2 Yes 0 0 0 0 0 0
## 3 No 0 0 0 0 0 0
## 4 No 0 0 0 0 0 0
## 5 No 0 0 0 0 0 0
## 6 No 0 0 0 0 0 0
## 7 No 0 0 0 0 0 0
## 8 No 0 0 0 0 0 0
## 9 No 0 0 0 0 0 0
## 10 No 0 0 0 0 0 0
## 11 No 0 0 0 0 0 0
## 12 No 0 0 0 0 0 0
## 13 No 0 0 0 0 0 0
## 14 No 0 0 0 0 0 0
## 15 No 0 0 0 0 0 0
## 16 No 0 0 0 0 0 0
## 17 Yes 0 0 0 0 0 0
## 18 No 0 0 0 0 0 0
## 19 No 0 0 0 0 0 0
## 20 No 0 0 0 0 0 0
## 21 No 0 0 0 0 0 0
## 22 No 0 0 0 0 0 0
## 23 No 0 0 0 0 0 0
## 24 No 0 0 0 0 0 0
## 25 No 0 0 0 0 0 0
## 26 No 0 0 0 0 0 0
## 27 No 0 0 0 0 0 0
## 28 No 0 0 0 0 0 0
## 29 No 0 0 0 0 0 0
## 30 No 0 0 0 0 0 0
## 31 No 0 0 0 0 0 0
## 32 No 0 0 0 0 0 0
## 33 No 0 0 0 0 0 0
## 34 No 0 0 0 0 0 0
## 35 No 0 0 0 0 0 0
## 36 No 0 0 0 0 0 0
## 37 No 0 0 0 0 0 0
## 38 No 0 0 0 0 0 0
## 39 No 0 0 0 0 0 0
## 40 No 0 0 0 0 0 0
## 41 No 0 0 0 0 0 0
## 42 No 0 0 0 0 0 0
## 43 No 0 0 0 0 0 0
## 44 No 0 0 0 0 0 0
## 45 No 0 0 0 0 0 0
## 46 No 0 0 0 0 0 0
## 47 No 0 0 0 0 0 0
## 48 No 0 0 0 0 0 0
## 49 No 0 0 0 0 0 0
## 50 No 0 0 0 0 0 0
## 51 No 0 0 0 0 0 0
## 52 No 0 0 0 0 0 0
## 53 No 0 0 0 0 0 0
## 54 No 0 0 0 0 0 0
## 55 No 0 0 0 0 0 0
## 56 No 0 0 0 0 0 0
## 57 Yes 0 0 24 48 0 0
## 58 No 0 0 0 0 0 0
## 59 No 0 0 0 0 0 0
## 60 No 0 0 0 0 0 0
## 61 No 0 0 0 0 0 0
## 62 No 0 0 0 0 0 0
## 63 No 0 0 0 0 0 0
## 64 No 0 0 0 0 0 0
## 65 No 0 0 0 0 0 0
## 66 No 0 0 0 0 0 0
## 67 Yes 0 0 0 0 0 0
## 68 No 0 0 0 0 0 0
## 69 No 0 0 0 0 0 0
## 70 No 0 0 0 0 0 0
## 71 No 0 0 0 0 0 0
## 72 No 0 0 0 0 0 0
## 73 No 0 0 0 0 0 0
## 74 No 0 0 0 0 0 0
## 75 No 0 0 0 0 0 0
## 76 No 0 0 0 0 0 0
## 77 No 0 0 0 0 0 0
## 78 No 0 0 0 0 0 0
## 79 No 0 0 0 0 0 0
## 80 No 0 0 0 0 0 0
## 81 No 0 0 0 0 0 0
## 82 No 0 0 0 0 0 0
## 83 No 0 0 0 0 0 0
## 84 No 0 0 0 0 0 0
## 85 No 0 0 0 0 0 0
## 86 No 0 0 0 0 0 0
## 87 No 0 0 0 0 0 0
## 88 No 0 0 0 0 0 0
## 89 No 0 0 0 0 0 0
## 90 No 0 0 0 0 0 0
## 91 No 0 0 0 0 0 0
## 92 No 0 0 0 0 0 0
## 93 No 0 0 0 0 0 0
## 94 No 0 0 0 0 0 0
## 95 No 0 0 0 0 0 0
## 96 No 0 0 0 0 0 0
## 97 No 0 0 0 0 0 0
## 98 No 0 0 0 0 0 0
## 99 No 0 0 0 0 0 0
## 100 No 0 0 0 0 0 0
## 101 No 0 0 0 0 0 0
## 102 No 0 0 0 0 0 0
## 103 No 0 0 0 0 0 0
## 104 No 0 0 0 0 0 0
## 105 No 0 0 0 0 0 0
## 106 No 0 0 0 0 0 0
## 107 No 0 0 0 0 0 0
## 108 No 0 0 0 0 0 0
## 109 No 0 0 0 0 0 0
## 110 Yes 0 0 0 0 0 0
## 111 No 0 0 0 0 0 0
## 112 No 0 0 0 0 0 0
## 113 No 0 0 0 0 0 0
## 114 Yes 0 0 0 0 0 0
## 115 No 0 0 0 0 0 0
## 116 No 0 0 0 0 0 0
## 117 No 0 0 0 0 0 0
## 118 No 0 0 0 0 0 0
## 119 No 0 0 0 0 0 0
## 120 No 0 0 0 0 0 0
## 121 No 0 0 0 0 0 0
## 122 No 0 0 0 0 0 0
## 123 No 0 0 0 0 0 0
## 124 No 0 0 0 0 0 0
## 125 No 0 0 0 0 0 0
## 126 No 0 0 0 0 0 0
## 127 No 0 0 0 0 0 0
## 128 Yes 0 0 0 0 0 0
## 129 No 0 0 0 0 0 0
## 130 No 0 0 0 0 0 0
## 131 No 0 0 0 0 0 0
## 132 No 0 0 0 0 0 0
## 133 No 0 0 0 0 0 0
## 134 No 0 0 0 0 0 0
## 135 No 0 0 0 0 0 0
## 136 No 0 0 0 0 0 0
## 137 No 0 0 0 0 0 0
## 138 No 0 0 0 0 0 0
## 139 No 0 0 0 0 0 0
## 140 No 0 0 0 0 0 0
## 141 No 0 0 0 0 0 0
## 142 No 0 0 0 0 0 0
## 143 No 0 0 0 0 0 0
## 144 No 0 0 0 0 0 0
## 145 No 0 0 0 0 0 0
## 146 No 0 0 0 0 0 0
## 147 No 0 0 0 0 0 0
## 148 No 0 0 0 0 0 0
## 149 No 0 0 0 0 0 0
## 150 No 0 0 0 0 0 0
## 151 No 0 0 0 0 0 0
## 152 No 0 0 0 0 0 0
## 153 No 0 0 0 0 0 0
## 154 No 0 0 0 0 0 0
## 155 No 0 0 0 0 0 0
## 156 No 0 0 0 0 0 0
## 157 No 0 0 0 0 0 0
## 158 No 0 0 0 0 0 0
## 159 No 0 0 0 0 0 0
## 160 No 0 0 0 0 0 0
## 161 No 0 0 0 0 0 0
## 162 No 0 0 0 0 0 0
## 163 No 0 0 0 0 0 0
## 164 No 0 0 0 0 0 0
## 165 No 0 0 0 0 0 0
## 166 No 0 0 0 0 0 0
## 167 No 0 0 0 0 0 0
## 168 No 0 0 0 0 0 0
## 169 No 0 0 0 0 0 0
## 170 No 0 0 0 0 0 0
## 171 Yes 0 0 0 0 0 0
## 172 No 0 0 0 0 0 0
## 173 No 0 0 0 0 0 0
## 174 No 0 0 0 0 0 0
## 175 No 0 0 0 0 0 0
## 176 No 0 0 0 0 0 0
## 177 No 0 0 0 0 0 0
## 178 No 0 0 0 0 0 0
## 179 No 0 0 0 0 0 0
## 180 No 0 0 0 0 0 0
## 181 No 0 0 0 0 0 0
## 182 No 0 0 0 0 0 0
## 183 No 0 0 0 0 0 0
## 184 No 0 0 0 0 0 0
## 185 No 0 0 0 0 0 0
## 186 No 0 0 0 0 0 0
## 187 No 0 0 0 0 0 0
## 188 No 0 0 0 0 0 0
## 189 No 0 0 0 0 0 0
## 190 No 0 0 0 0 0 0
## 191 No 0 0 0 0 0 0
## 192 No 0 0 0 0 0 0
## 193 No 0 0 0 0 0 0
## 194 No 0 0 0 0 0 0
## 195 No 0 0 0 0 0 0
## 196 No 0 0 0 0 0 0
## 197 No 0 0 0 0 0 0
## 198 No 0 0 0 0 0 0
## 199 No 0 0 0 0 0 0
## 200 No 0 0 0 0 0 0
## 201 No 0 0 0 0 0 0
## 202 No 0 0 0 0 0 0
## 203 No 0 0 0 0 0 0
## 204 No 0 0 0 0 0 0
## 205 No 0 0 0 0 0 0
## 206 No 0 0 0 0 0 0
## 207 No 0 0 0 0 0 0
## 208 No 0 0 0 0 0 0
## 209 No 0 0 0 0 0 0
## 210 No 0 0 0 0 0 0
## 211 No 0 0 0 0 0 0
## 212 No 0 0 0 0 0 0
## 213 No 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 No 0 0 0 0 0 0
## 216 No 0 0 0 0 0 0
## 217 No 0 0 0 0 0 0
## 218 No 0 0 0 0 0 0
## 219 No 0 0 0 0 0 0
## 220 No 0 0 0 0 0 0
## 221 No 0 0 0 0 0 0
## 222 No 0 0 0 0 0 0
## 223 No 0 0 0 0 0 0
## 224 No 0 0 0 0 0 0
## 225 No 0 0 0 0 0 0
## 226 No 0 0 0 0 0 0
## 227 No 0 0 0 0 0 0
## 228 No 0 0 0 0 0 0
## 229 No 0 0 0 0 0 0
## 230 No 0 0 0 0 0 0
## 231 No 0 0 0 0 0 0
## 232 No 0 0 0 0 0 0
## 233 No 0 0 0 0 0 0
## 234 No 0 0 0 0 0 0
## 235 No 0 0 0 0 0 0
## 236 No 0 0 0 0 0 0
## 237 No 0 0 0 0 0 0
## 238 No 0 0 0 0 0 0
## 239 No 0 0 0 0 0 0
## 240 No 0 0 0 0 0 0
## 241 No 0 0 0 0 0 0
## 242 No 0 0 0 0 0 0
## 243 No 0 0 0 0 0 0
## 244 No 0 0 0 0 0 0
## 245 No 0 0 0 0 0 0
## 246 No 0 0 0 0 0 0
## 247 No 0 0 0 0 0 0
## 248 No 0 0 0 0 0 0
## 249 No 0 0 0 0 0 0
## 250 No 0 0 0 0 0 0
## 251 No 0 0 0 0 0 0
## 252 No 0 0 0 0 0 0
## 253 No 0 0 0 0 0 0
## 254 No 0 0 0 0 0 0
## 255 No 0 0 0 0 0 0
## 256 No 0 0 0 0 0 0
## 257 No 0 0 0 0 0 0
## 258 No 0 0 0 0 0 0
## 259 No 0 0 0 0 0 0
## 260 No 0 0 0 0 0 0
## 261 Yes 0 0 0 0 0 0
## 262 No 0 0 0 0 0 0
## 263 No 0 0 0 0 0 0
## 264 No 0 0 0 0 0 0
## 265 No 0 0 0 0 0 0
## 266 No 0 0 0 0 0 0
## 267 No 0 0 0 0 0 0
## 268 No 0 0 0 0 0 0
## 269 No 0 0 0 0 0 0
## 270 No 0 0 0 0 0 0
## 271 Yes 0 48 24 168 0 0
## 272 No 0 0 0 0 0 0
## 273 No 0 0 0 0 0 0
## 274 No 0 0 0 0 0 0
## 275 No 0 0 0 0 0 0
## 276 No 0 0 0 0 0 0
## 277 No 0 0 0 0 0 0
## 278 No 0 0 0 0 0 0
## 279 No 0 0 0 0 0 0
## 280 No 0 0 0 0 0 0
## 281 No 0 0 0 0 0 0
## 282 No 0 0 0 0 0 0
## 283 No 0 0 0 0 0 0
## 284 No 0 0 0 0 0 0
## 285 No 0 0 0 0 0 0
## 286 No 0 0 0 0 0 0
## 287 No 0 0 0 0 0 0
## 288 No 0 0 0 0 0 0
## 289 No 0 0 0 0 0 0
## 290 No 0 0 0 0 0 0
## 291 No 0 0 0 0 0 0
## 292 No 0 0 0 0 0 0
## 293 No 0 0 0 0 0 0
## 294 No 0 0 0 0 0 0
## 295 No 0 0 0 0 0 0
## 296 No 0 0 0 0 0 0
## 297 No 0 0 0 0 0 0
## 298 No 0 0 0 0 0 0
## 299 No 0 0 0 0 0 0
## 300 No 0 0 0 0 0 0
## 301 No 0 0 0 0 0 0
## 302 No 0 0 0 0 0 0
## 303 No 0 0 0 0 0 0
## 304 No 0 0 0 0 0 0
## 305 No 0 0 0 0 0 0
## 306 No 0 0 0 0 0 0
## 307 No 0 0 0 0 0 0
## 308 No 0 0 0 0 0 0
## 309 No 0 0 0 0 0 0
## 310 No 0 0 0 0 0 0
## 311 No 0 0 0 0 0 0
## 312 No 0 0 0 0 0 0
## 313 No 0 0 0 0 0 0
## 314 No 0 0 0 0 0 0
## 315 No 0 0 0 0 0 0
## 316 Yes 42 0 36 48 0 0
## 317 No 0 0 0 0 0 0
## 318 No 0 0 0 0 0 0
## 319 No 0 0 0 0 0 0
## 320 No 0 0 0 0 0 0
## 321 No 0 0 0 0 0 0
## 322 No 0 0 0 0 0 0
## 323 No 0 0 0 0 0 0
## Range_S_D2 Range_L_D2 Mea.2 Media.2 Range_Y_A2 Range_O_A2
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 24 72 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 0 0 0 0 0 0
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 0 0 0 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 0 0 0 0 0 0
## 104 0 0 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 0 0 0 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 0 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 0 0 0 0
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 0 0 0 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 0 0 0 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 0 0 0 0
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 0 0 0 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 0 0 0 0 0 0
## 242 0 0 0 0 0 0
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 0 0 0 0 0 0
## 247 0 0 0 0 0 0
## 248 0 0 0 0 0 0
## 249 0 0 0 0 0 0
## 250 0 0 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 0 0 0 0 0 0
## 263 0 0 0 0 0 0
## 264 0 0 0 0 0 0
## 265 0 0 0 0 0 0
## 266 0 0 0 0 0 0
## 267 0 0 0 0 0 0
## 268 0 0 0 0 0 0
## 269 0 0 0 0 0 0
## 270 0 0 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 0 0 0 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 0 0 0 0 0 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 0 0 0 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 0 0 0 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 55 0 46 63
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 0 0 0 0 0 0
## Comments_1
## 1 Outbreak took place during a study on gasteroenteritus in a day care center. Same paper as outbreak # 2
## 2 Multistate outbreak caused by oysters from LA, cases are listed as "at least 180", investigation ongoing at date of publication
## 3 Outbreak 2 of 5, attack rate applys to passagers from cruise 1, cases includes passengers and crew from all 3 voyages
## 4 Outbreak 1 of 22, limited information available
## 5 Outbreak 2 of 22, limited information available
## 6 Outbreak 3 of 22, limited information available
## 7 Outbreak 4 of 22, limited information available
## 8 Outbreak 5 of 22, limited information available
## 9 Outbreak 6 of 22, limited information available
## 10 Outbreak 7 of 22, limited information available
## 11 Outbreak 8 of 22, limited information available
## 12 Outbreak 9 of 22, limited information available
## 13 Outbreak 10 of 22, limited information available
## 14 Outbreak 11 of 22, limited information available
## 15 Outbreak 16 of 22, limited information available
## 16 Outbreak 17 of 22, limited information available
## 17 multi-state NV outbreak due to contami ted oysters off coast of LA; secondary cases noted 1-2 wks following for family members of cases who had not eaten oysters
## 18 Outbreak 1 of 2, took place at two daycare centers and one elementry school who used the same lunch catering company
## 19 Outbreak in daycare lead to community outbreaks in local area, state of Rio de Janeiro, Brazil
## 20 Outbreak among nurses in a hostel at a going away party for an employee, sick from salad sandwiches
## 21 Letter, not a full article, very limited information
## 22 Outbreak 23 of 46
## 23 Outbreak 41 of 47, limited information
## 24 42 of 66
## 25 Outbreak due to raspberries, different strain found in raspberries than infected persons
## 26 outbreak among three groups at a hotel in Virginia
## 27 Outbreak 2 of 2
## 28 #6 of 73 outbreaks listed in Table 1
## 29 #7 of 73 outbreaks listed in Table 1
## 30 #8 of 73 outbreaks listed in Table 1
## 31 #9 of 73 outbreaks listed in Table 1
## 32 #10 of 73 outbreaks listed in Table 1
## 33 #12 of 73 outbreaks listed in Table 1
## 34 #15 of 73 outbreaks listed in Table 1
## 35 #17 of 73 outbreaks listed in Table 1
## 36 #30 of 73 outbreaks listed in Table 1
## 37 #44 of 73 outbreaks listed in Table 1
## 38 #45 of 73 outbreaks listed in Table 1
## 39 #46 of 73 outbreaks listed in Table 1
## 40 #65 of 73 outbreaks listed in Table 1
## 41 #66 of 73 outbreaks listed in Table 1
## 42 #67 of 73 outbreaks listed in Table 1
## 43 #72 of 73 outbreaks listed in Table 1
## 44 #73 of 73 outbreaks listed in Table 1
## 45 Several patients died, several patients also relapsed after 48 hours symptom free
## 46 3 of 30
## 47 15 of 30
## 48 1 of 14
## 49 10 of 14
## 50 Mean age was calculated from ages present in article
## 51 GII outbreak in Belgian hospital w/nursing assistant as source, which spread to patients, staff, and other hospital workers; strain related to Camberwell virus (92% nucleotide identity)
## 52 outbreak 3 in Table 1
## 53 outbreak 4 in Table 1
## 54 information available for guests in group A; case numbers from group A + foodhandlers (staff)
## 55 outbreak 6 in Table 1; outbreaks in Table 2 were not included b/c they were referenced from other papers
## 56 largest outbreak in nursing homes (6 total) in Israel which took place for 3 wks, infecting both staff and residents
## 57 Third of four outbreaks meeting inclusion criteria in an article, cases are both staff and patients, secondary cases in hospital, contracted from a nursing home patient
## 58 Second outbreak from Frankston, limited information available
## 59 Outbreak with secondary transmission among british military perso l, very unusual presentation, severe cases
## 60 Community Cases in an article containing 3 outbreaks, 90% of community cases from same restaruant
## 61 Outbreak 8 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 62 Outbreak in three wards of a long term care facility in Australia, norovirus confirmed on two of three wards
## 63 Outbreak in on a hospital ward in NY, limited information available in letter to the editor, co-infection with C. Difficile
## 64 Outbreak 20 of 22, limited information available
## 65 Outbreak 21 of 22, limited information available
## 66 Outbreak 22 of 22, limited information available
## 67 Cases include staff and patients, secondary cases are from both the nursing homes and hospital in France
## 68 Outbreak 3 of three from fourth part of article, 21 cases from hospital and 48 from nursing home
## 69 Outbreak 1 of 5 in article, limited information
## 70 Outbreak 3 of 5 in article, limited information
## 71 Outbreak 11 of 46
## 72 Outbreak 27 out of 46
## 73 Outbreak 46 of 46
## 74 Outbreak 21 of 47, limited information
## 75 Outbreak 37 fo 47, limited information
## 76 Outbreak 39 of 47, limited information
## 77 Outbreak 47 of 47, limited information
## 78 Outbreak 5 of 19, limited information
## 79 Outbreak 6 of 19, limited information
## 80 Outbreak 8 of 19, limited information
## 81 Outbreak 11 of 19, limited information
## 82 Outbreak 13 of 19, limited information
## 83 Outbreak 15 of 19, limited information
## 84 Outbreak 16 of 19, limited information
## 85 Outbreak 18 of 19, limited information
## 86 Outbreak 19 of 19, limited information
## 87 outbreak at hospital origi lly thought to be caused by C. difficile w 2 clusters of cases
## 88 Limited information available
## 89 #1 of 73 outbreaks in Table 1
## 90 #11 of 73 outbreaks listed in Table 1
## 91 #14 of 73 outbreaks listed in Table 1
## 92 #40 of 73 outbreaks listed in Table 1
## 93 #42 of 73 outbreaks listed in Table 1
## 94 #47 of 73 outbreaks listed in Table 1
## 95 #48 of 73 outbreaks listed in Table 1
## 96 #57 of 73 outbreaks listed in Table 1
## 97 #58 of 73 outbreaks listed in Table 1
## 98 #59 of 73 outbreaks listed in Table 1
## 99 #60 of 73 outbreaks listed in Table 1
## 100 #61 of 73 outbreaks listed in Table 1
## 101 Large waterborne outbreak in Italy, Rotavirus (+) in 48% of samples, more than norovirus
## 102 Outbreak on a cruise ship in Med Sea 1996
## 103 outbreak code 8 listed in Table 1 from Japan caused by oysters
## 104 outbreak code 11 listed in Table 1 from Japan caused by oysters
## 105 Outbreak at a camp and conference center in Sweden, wells were enventually replacted by municipal water supply
## 106 6 of 30
## 107 7 of 30
## 108 10 of 30
## 109 11 of 30
## 110 Number of primary cases is secondary cases subtracted from total cases. Same math used for 2ndary at risk number
## 111 3 of 14
## 112 PCR results are not discussed in detail; there was a second outbreak in an acute ward in a separate building (see record 31)
## 113 this outbreak occurred in ward X of Alfred Hospital w/the suspected source being a nurse who had worked in ward B in a separate building which had also had a NV outbreak (see record 8)
## 114 Outbreak at a cafeteria in a hospital
## 115 outbreak desig ted HSS/3/97/DEU in Table 1
## 116 outbreak desig ted BRA/3/98/DEU in Table 1
## 117 outbreak desig ted BLN/3/98/DEU in Table 1
## 118 outbreak desig ted RP/3/98/DEU in Table 1
## 119 outbreak desig ted HSS/3/98/DEU in Table 1
## 120 outbreak desig ted SAX/4/98/DEU in Table 1
## 121 outbreak consisting of 44 clusters through eating implicated oysters thought to be contami ted through either waste discharge from boaters or faulty septic systems near the bay
## 122 outbreak desig ted CA in Table 1
## 123 outbreak desig ted CL in Table 1
## 124 outbreak 6 in Table 1
## 125 outbreak 8 in Table 1
## 126 outbreak 11 in Table 1
## 127 outbreak occurred at Worcester Polytechnic Institute, medical records & question ires were used to assess inclusion criteria including symptoms of usea, vomiting, diarrhea, and abdomi l pain
## 128 steak also implicated as vehicle; primary case data (incubation, duration, age) from patrons (n=211)
## 129 There was another outbreak in the same school district with SV present, NV was not tested for. Not sure how outbreaks may have been related
## 130 Outbreak from a longitudi l study on diarrheal illnesses in infants in daycare. All infants in this outbreak had co-infection with astrovirus
## 131 Outbreak at a summer resort in Southern Italy. Fecal contami tion of water supply, 24 day outbreak period
## 132 VWA outbreak no. 67218 in Table 1
## 133 3 unrelated groups of people who ate at a restaurant got sick with gastroenteritis as well as all staff, which spread in many modes due to unsanitary procedures of staff and ill persons working
## 134 Outbreak due to contami ted water at bakery, bakers became sick, custard made with contami ted water infected satalite stores in communities
## 135 Outbreak 1 of 2 from article, Recombi te NoV with polymerase region from cluster 2
## 136 First of four outbreaks meetin our criteria described in article, very limited information available
## 137 Outbreak 2 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 138 Outbreak 7 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 139 Outbreak 9 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 140 outbreak in Tung Wah hospital was controlled by use of alcohol-based hand rub
## 141 Outbreak 2 of 4, all from frozen raspberries
## 142 Outbreak 3 of 4, all from frozen raspberries
## 143 Outbreak 4 of 4, all from frozen raspberries
## 144 Outbreak 2 of 2, index case was a 2-year old, families were together at a meal
## 145 outbreak caused by index case at Univ of Alberta Hospital was controlled, but difficult b/c i bility to restrict psychiatric patients to their rooms and to maintain isolation precautions
## 146 Outbreak 4 of 5 in article, limited information
## 147 Outbreak 5 of 5 in article, limited information
## 148 Outbreak 1 of 47, limited information
## 149 Oubtreak 2 of 47, limited information
## 150 #3 of 73 outbreaks listed in Table 1
## 151 #4 of 73 outbreaks listed in Table 1
## 152 #5 of 73 outbreaks listed in Table 1
## 153 #26 of 73 outbreaks listed in Table 1
## 154 #27 of 73 outbreaks listed in Table 1
## 155 #28 of 73 outbreaks listed in Table 1
## 156 #29 of 73 outbreaks listed in Table 1
## 157 #43 of 73 outbreaks listed in Table 1
## 158 #49 of 73 outbreaks listed in Table 1
## 159 #50 of 73 outbreaks listed in Table 1
## 160 #62 of 73 outbreaks listed in Table 1
## 161 #63 of 73 outbreaks listed in Table 1
## 162 #64 of 73 outbreaks listed in Table 1
## 163 #69 of 73 outbreaks listed in Table 1
## 164 #70 of 73 outbreaks listed in Table 1
## 165 #71 of 73 outbreaks listed in Table 1
## 166 outbreak during 13 of 91 rafting trips from different companies, but the ill rafters had eaten ready-to-eat meat product infected by ill worker at processing company who had sliced the meat w/bare hands
## 167 Outreak due to contami ted pool water at a community pool in Finland
## 168 Outbreak due to fecal contami tion in drinking water
## 169 4 of 14
## 170 5 of 14
## 171 Large outbreak at a lake in sweden, number of cases are those used in the case control study
## 172 outbreak occurred in 2 hotels from oyster eating raw and cooked oysters; No contact details were available for other attendees at the 2 hotels b/c contact details for patrons were not recorded
## 173 outbreak 7 in Table 1
## 174 0
## 175 Limited info available, 2nd outbreak of 3 described in a review article, other 2 outbreaks recorded in origi l article
## 176 VWA outbreak no. 63808 in Table 1
## 177 outbreak No X. in Table
## 178 Outbreak at a Bermuda Hotel. Fecal contami tion of water by broken and outdated plumbing system
## 179 Second of 2 outbreaks from article, Recombi te NoV strain, polymerase region encodes for no known cluster
## 180 Outbreak 1 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 181 Outbreak 3 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 182 Outbreak 4 of 9 in article, limited information available. Outbreak continues from Dec. 1998 to July of 1999, huge number of infected persons
## 183 Outbreak 5 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 184 Outbreak 6 of 9 in article, limited information available. Strains were sequenced but it is not possible to tell which sequence corrisponds to which outbreak
## 185 Many strains here, three month ourtbreak from raw oysters in British Columbia, could not trace back oysters to a specific harvest site
## 186 Outbreak 12 of 22, limited information available
## 187 Outbreak 13 of 22, limited information available
## 188 Outbreak 14 of 22, limited information available
## 189 Outbreak 15 of 22, limited information available
## 190 Outbreak 18 of 22, limited information available
## 191 Outbreak 19 of 22, limited information available
## 192 Outbreak 2 of 3 in article, oysters from contami ted oyster beds from storm sewer overflow
## 193 Point source environmental contami tion, dose response according to how close to index case, persisted in environment for days
## 194 Second outbreak description in article, untreated water from purification plant responsible
## 195 Outbreak 1 of three from fourth part of article, this outbreak not actually confirmed by RTPCR but epi-evidence would suggest NoV is responsible
## 196 Outbreak 2 of three from fourth part of article, 29 cases from hospital and 6 from nursing home
## 197 infection from index case (diabetic man) and spread due to staffing shortage necessitating cohort female and male wards; secondary spread mentioned caused by aerosolism of vomitus
## 198 this outbreak is related to outbreak ID4 in Lymington Hospital which occurred 9 days prior to this outbreak and was caused by the same Lymington virus strain
## 199 Outbreak 2 of 5 in article, limited information
## 200 Outbreak 3 of 46
## 201 Outbreak 4 of 46
## 202 Outbreak 9 of 46
## 203 Outbreak 12 of 46
## 204 Outbreak 13 of 46
## 205 Outbreak 14 of 46
## 206 Outbreak 20 of 46
## 207 Outbreak 25 of 46
## 208 Outbreak 28 fo 46
## 209 Outbreak 29 of 36
## 210 Outbreak 31 of 46
## 211 Outbreak 39 of 46
## 212 Outbreak 40 of 46
## 213 Outbreak 41 of 46
## 214 Outbreak at a New Zealand Ski Resort, due to sewage flow in to drinking water supply
## 215 Outbreak 4 of 47, limited information
## 216 Outbreak 7 of 47, limited information
## 217 Outbreak 8 of 47, limited information
## 218 Outbreak 11 of 47, limited information
## 219 Outbreak 14 of 47, limited information
## 220 Outbreak 17 of 47, limited information
## 221 Outbreak 24 of 47, limited information
## 222 Outbreak 25 of 47, limited information
## 223 Outbreak 26 of 47, limited information
## 224 Outbreak 27 of 47, limited information
## 225 Outbreak 30 of 47, limited information
## 226 Outbreak 31 of 47, limited information
## 227 Outbreak 32 of 47, limited information
## 228 Outbreak 33 fo 47, limited information
## 229 Outbreak 34 of 47, limited information
## 230 Outbreak 42 of 47, limited information
## 231 Outbreak 43 of 47, limited information
## 232 Outbreak 46 of 47, limited information
## 233 Outbreak 1 of 17, limited information
## 234 Outbreak 2 of 17, limited information
## 235 Outbreak 6 of 17, limited information
## 236 Outbreak 10 of 47, limited information
## 237 Outbreak aboard two consecutive cruises
## 238 Outbreak in Swiss hospital, infection control measures were limited because of staff shortage
## 239 cases were mostly freshmen at a university in Cambridge, MA and a sick chef who worked one day after onset of symptoms was suspected as the source of outbreak, mentioned secondary cases but did not give any information
## 240 Outbreak at a rehabilitation center, prolonged over three months
## 241 Multi-country outbreak due to contami ted oysters, flooding contributed to the contami tion of oyster beds
## 242 Stool samples were positive for multiple NoV's and multiple viruses
## 243 Outbreak 1 of 2, post-operative ward
## 244 #2 of 72 outbreaks listed in Table 1
## 245 #31 of 73 outbreaks listed in Table 1
## 246 #32 of 73 outbreaks listed in Table 1
## 247 #33 of 73 outbreaks listed in Table 1
## 248 #34 of 73 outbreaks listed in Table 1
## 249 #35 of 73 outbreaks listed in Table 1
## 250 #36 of 73 outbreaks listed in Table 1
## 251 #37 of 73 outbreaks listed in Table 1
## 252 #38 of 73 outbreaks listed in Table 1
## 253 #39 of 73 outbreaks listed in Table 1
## 254 #53 of 73 outbreaks listed in Table 1
## 255 #54 of 73 outbreaks listed in Table 1
## 256 #55 of 73 outbreaks listed in Table 1
## 257 #56 of 73 outbreaks listed in Table 1
## 258 #68 of 73 outbreaks listed in Table 1
## 259 Outbreak in an elderly care ward in Ireland
## 260 outbreak B in 2 communities surrounding Apalachicola Bay among people who ate oysters; described as spreading from children to rest of household in 1-2 days
## 261 Outbreak at three facilities, all linked via sick patient transfers
## 262 outbreak code 1 in Table 1 from Japan caused by oysters
## 263 outbreak code 2 in Table 1 from Japan caused by oysters
## 264 outbreak code 3 listed inTable 1 from Japan caused by oysters
## 265 outbreak code 4 in Table 1 from Japan caused by oysters
## 266 outbreak code 5 listed in Table 1 from Japan caused by oysters
## 267 outbreak code 6 listed in Table 1 from Japan caused by oysters
## 268 outbreak code 7 listed in Table 1 from Japan caused by oysters
## 269 outbreak code 9 listed in Table 1 from Japan caused by oysters
## 270 outbreak code 10 listed in Table 1 from Japan caused by oysters
## 271 Outbreak in a Spanish hospital, most cases were elderly
## 272 4 of 30
## 273 27 of 31
## 274 Outbreak from pastry in a school lunch in Japan
## 275 Waterborne outbreak in a community in Greece
## 276 outbreak occurred in staff workers before patients
## 277 2 of 14
## 278 1 of 3, limited information
## 279 2 of 3, large outbreak in a nursing home
## 280 3 of 3, limited information available
## 281 outbreak desig ted SA/1/98/DEU in Table 1
## 282 outbreak desig ted BAV/1/98/DEU in Table 1
## 283 outbreak desig ted BAV/2.1/98/DEU in Table 1
## 284 outbreak desig ted BAV/2.2/98/DEU in Table 1
## 285 outbreak desig ted SA/2/98/DEU in Table 1
## 286 outbreak desig ted BRA/2.1/98/DEU in Table 1
## 287 outbreak desig ted BRA/2.2/98/DEU in Table 1
## 288 outbreak desig ted BRA/2.3/98/DEU in Table 1
## 289 outbreak desig ted NRW/2/98/DEU in Table 1
## 290 outbreak desig ted HSS/2/98/DEU in Table 1
## 291 outbreak occurred on first floor of hospital ward in France caused by contami ted tapwater sources
## 292 11 patients and 2 visitors were affected in outbreak, patients were infected w/same virus subtype, declared 20 total people infected in entirety of 2004
## 293 outbreak occurred in South Wales, Queensland affecting people in different functions where they ate or had contact w/oysters harvested from Terranora Broadwater area at Tweed Heads
## 294 outbreak in pediatric psychiatric unit at UNC hospital w/9 yr old autistic child w/mood disorders as index case--wore diapers & demonstrated a behavior problem of frequent fecal smearing on envionmental surfaces
## 295 outbreak 1 from Table 1
## 296 outbreak 2 in Table 1
## 297 outbreak 5 in Table 1
## 298 outbreak 9 in Table 1
## 299 outbreak 10 in Table 1
## 300 First outbreak of 13 in a chart
## 301 second of 13 oubreaks in table
## 302 3rd of 13 outbreaks in table
## 303 4th of 13 outbreaks in table
## 304 5th of 13 outbreaks in table
## 305 6th of 13 outbreaks in table
## 306 7th of 13 outbreaks in table
## 307 8th of 13 outbreaks in table
## 308 9th of 13 outbreaks in table
## 309 10th of 13 outbreaks in table
## 310 11th of 13 outbreaks in table
## 311 12th of 13 outbreaks in table
## 312 13th of 13 outbreaks in table
## 313 outbreak occurred at military training facility in SC; this paper considers ABO type susceptibility
## 314 foodborne outbreak at elementary school in Jiangsu Province, Chi
## 315 outbreak occurred in village in Shanxi Province, Chi
## 316 12 days before the men removed the carpet, the last case was ill with NoV and was believed to be the source of contami tion
## 317 0
## 318 outbreak 1 of 4
## 319 outbreak 2 of 4
## 320 outbreak 3 of 4; cluster b
## 321 outbreak 4 of 4
## 322 mean incubation period obtained for 198 guest cases
## 323 0
## Path1
## 1 No
## 2 Unspecified
## 3 Unspecified
## 4 Unspecified
## 5 Unspecified
## 6 Unspecified
## 7 Unspecified
## 8 Unspecified
## 9 Unspecified
## 10 Unspecified
## 11 Unspecified
## 12 Unspecified
## 13 Unspecified
## 14 Unspecified
## 15 Unspecified
## 16 Unspecified
## 17 No
## 18 No
## 19 Yes
## 20 No
## 21 Unspecified
## 22 Unspecified
## 23 Unspecified
## 24 Unspecified
## 25 Unspecified
## 26 No
## 27 No
## 28 Unspecified
## 29 Unspecified
## 30 Unspecified
## 31 Unspecified
## 32 Unspecified
## 33 Unspecified
## 34 Unspecified
## 35 Unspecified
## 36 Unspecified
## 37 Unspecified
## 38 Unspecified
## 39 Unspecified
## 40 Unspecified
## 41 Unspecified
## 42 Unspecified
## 43 Unspecified
## 44 Unspecified
## 45 Yes
## 46 Unspecified
## 47 Unspecified
## 48 Yes
## 49 No
## 50 Yes
## 51 No
## 52 Unspecified
## 53 Unspecified
## 54 No
## 55 Unspecified
## 56 Yes
## 57 Unspecified
## 58 Unspecified
## 59 No
## 60 Yes
## 61 No
## 62 No
## 63 Yes
## 64 Unspecified
## 65 Unspecified
## 66 Unspecified
## 67 No
## 68 Unspecified
## 69 No
## 70 No
## 71 Unspecified
## 72 Unspecified
## 73 Unspecified
## 74 Unspecified
## 75 Unspecified
## 76 Unspecified
## 77 Unspecified
## 78 Unspecified
## 79 Unspecified
## 80 Unspecified
## 81 Unspecified
## 82 Unspecified
## 83 Unspecified
## 84 Unspecified
## 85 Unspecified
## 86 Unspecified
## 87 Yes
## 88 No
## 89 Unspecified
## 90 Unspecified
## 91 Unspecified
## 92 Unspecified
## 93 Unspecified
## 94 Unspecified
## 95 Unspecified
## 96 Unspecified
## 97 Unspecified
## 98 Unspecified
## 99 Unspecified
## 100 Unspecified
## 101 Yes
## 102 No
## 103 Yes
## 104 No
## 105 No
## 106 Unspecified
## 107 Unspecified
## 108 Unspecified
## 109 Unspecified
## 110 No
## 111 Yes
## 112 No
## 113 No
## 114 Unspecified
## 115 No
## 116 No
## 117 No
## 118 No
## 119 No
## 120 No
## 121 Yes
## 122 No
## 123 Unspecified
## 124 Unspecified
## 125 Unspecified
## 126 Unspecified
## 127 No
## 128 Yes
## 129 Yes
## 130 Yes
## 131 Yes
## 132 Unspecified
## 133 Unspecified
## 134 Yes
## 135 Unspecified
## 136 Unspecified
## 137 No
## 138 No
## 139 No
## 140 Unspecified
## 141 No
## 142 No
## 143 No
## 144 Unknown
## 145 No
## 146 No
## 147 No
## 148 Unspecified
## 149 Unspecified
## 150 Unspecified
## 151 Unspecified
## 152 Unspecified
## 153 Unspecified
## 154 Unspecified
## 155 Unspecified
## 156 Unspecified
## 157 Unspecified
## 158 Unspecified
## 159 Unspecified
## 160 Unspecified
## 161 Unspecified
## 162 Unspecified
## 163 Unspecified
## 164 Unspecified
## 165 Unspecified
## 166 Unspecified
## 167 Yes
## 168 Yes
## 169 No
## 170 No
## 171 Yes
## 172 Unspecified
## 173 Unspecified
## 174 Unspecified
## 175 Unspecified
## 176 Unspecified
## 177 Unspecified
## 178 No
## 179 Unspecified
## 180 No
## 181 No
## 182 No
## 183 No
## 184 No
## 185 No
## 186 Unspecified
## 187 Unspecified
## 188 Unspecified
## 189 Unspecified
## 190 Unspecified
## 191 Unspecified
## 192 No
## 193 No
## 194 Unspecified
## 195 Unspecified
## 196 Unspecified
## 197 No
## 198 No
## 199 No
## 200 Unspecified
## 201 Unspecified
## 202 Unspecified
## 203 Unspecified
## 204 Unspecified
## 205 Unspecified
## 206 Unspecified
## 207 Unspecified
## 208 Unspecified
## 209 Unspecified
## 210 Unspecified
## 211 Unspecified
## 212 Unspecified
## 213 Unspecified
## 214 Yes
## 215 Unspecified
## 216 Unspecified
## 217 Unspecified
## 218 Unspecified
## 219 Unspecified
## 220 Unspecified
## 221 Unspecified
## 222 Unspecified
## 223 Unspecified
## 224 Unspecified
## 225 Unspecified
## 226 Unspecified
## 227 Unspecified
## 228 Unspecified
## 229 Unspecified
## 230 Unspecified
## 231 Unspecified
## 232 Unspecified
## 233 Unspecified
## 234 Unspecified
## 235 Unspecified
## 236 Unspecified
## 237 Unspecified
## 238 No
## 239 Yes
## 240 No
## 241 No
## 242 Yes
## 243 Yes
## 244 Unspecified
## 245 Unspecified
## 246 Unspecified
## 247 Unspecified
## 248 Unspecified
## 249 Unspecified
## 250 Unspecified
## 251 Unspecified
## 252 Unspecified
## 253 Unspecified
## 254 Unspecified
## 255 Unspecified
## 256 Unspecified
## 257 Unspecified
## 258 Unspecified
## 259 Unspecified
## 260 No
## 261 No
## 262 Yes
## 263 Yes
## 264 No
## 265 No
## 266 Yes
## 267 Yes
## 268 Yes
## 269 Yes
## 270 No
## 271 No
## 272 Unspecified
## 273 Unspecified
## 274 Unspecified
## 275 No
## 276 Unspecified
## 277 Yes
## 278 Unspecified
## 279 Unspecified
## 280 Unspecified
## 281 No
## 282 No
## 283 No
## 284 No
## 285 No
## 286 No
## 287 No
## 288 No
## 289 No
## 290 No
## 291 No
## 292 Unspecified
## 293 No
## 294 No
## 295 Unspecified
## 296 Unspecified
## 297 Unspecified
## 298 Unspecified
## 299 Unspecified
## 300 Unspecified
## 301 Unspecified
## 302 Unspecified
## 303 Unspecified
## 304 Unspecified
## 305 Unspecified
## 306 Unspecified
## 307 Unspecified
## 308 Unspecified
## 309 Unspecified
## 310 Unspecified
## 311 Unspecified
## 312 Unspecified
## 313 Unspecified
## 314 Unspecified
## 315 No
## 316 Unspecified
## 317 Yes
## 318 Unspecified
## 319 Unspecified
## 320 Unspecified
## 321 Unspecified
## 322 No
## 323 Unspecified
## Path2_1
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 Astrovirus, Adenovirus
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 Clostridium difficile, adenovirus
## 46 0
## 47 0
## 48 Campylobacter species
## 49 0
## 50 Vibrio parahaemolyticus
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 E. Coli
## 57 0
## 58 0
## 59 0
## 60 C. Jejuni
## 61 0
## 62 0
## 63 C. difficile
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 C. difficile
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 Rotavirus G9
## 102 0
## 103 kobuvirus, astrovirus
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 enteroviruses
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Enterovirus
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 Campylobacter; Salmonella enterica subspecies enterica
## 129 SV G1/2
## 130 Astrovirus
## 131 C. Perfringens
## 132 0
## 133 0
## 134 Escherichia coli, faecal streptococci, Salmonella mbandaka, Campylobacter, Staphylococcus aureus,
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 Astrovirus
## 168 Campylobacter, Rotavirus
## 169 0
## 170 0
## 171 Campylobacter
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 rotavirus, cryptosporidium, campylobacter
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 Yersinia fredricksinii (commensual floar of humans)
## 240 0
## 241 0
## 242 Aichi Virus, Astrovirus, Enterovirus, and Rotavirus
## 243 Clostridium difficile
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 sapovirus
## 263 kobuvirus
## 264 0
## 265 0
## 266 kobuvirus, sapovirus
## 267 sapovirus, kobuvirus
## 268 kobuvirus
## 269 kobuvirus
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 astrovirus
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 unknown human enterovirus
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## Country Category State
## 1 Japan Daycare 0
## 2 USA Other LA, MD, MS, NC
## 3 USA Leisure WA, FL
## 4 Other Hospital 0
## 5 Other Hospital 0
## 6 Other Hospital 0
## 7 Other Hospital 0
## 8 Other Hospital 0
## 9 Other Hospital 0
## 10 Other Hospital 0
## 11 Other Hospital 0
## 12 Other Hospital 0
## 13 Other Hospital 0
## 14 Other Hospital 0
## 15 Other Hospital 0
## 16 Other Hospital 0
## 17 USA Foodservice MD, TX, NC, PA, MS
## 18 Other Foodservice 0
## 19 Other Daycare 0
## 20 Other Foodservice 0
## 21 Other Nursing Home 0
## 22 Japan School 0
## 23 Japan Unknown 0
## 24 Japan School 0
## 25 Other Unspecified 0
## 26 USA Leisure VA
## 27 Other Hospital 0
## 28 Other Foodservice 0
## 29 Other Other 0
## 30 Other Foodservice 0
## 31 Other Foodservice 0
## 32 Other Foodservice 0
## 33 Other Unspecified 0
## 34 Other Foodservice 0
## 35 Other Unspecified 0
## 36 Other Foodservice 0
## 37 Other Foodservice 0
## 38 Other Foodservice 0
## 39 Other Foodservice 0
## 40 Other Nursing Home 0
## 41 Other Foodservice 0
## 42 Other Foodservice 0
## 43 Other Foodservice 0
## 44 Other Foodservice 0
## 45 Other Hospital 0
## 46 Other School 0
## 47 Other Nursing Home 0
## 48 Other Daycare 0
## 49 Other Nursing Home 0
## 50 Other Foodservice 0
## 51 Other Hospital 0
## 52 Other Hospital 0
## 53 Other Hospital 0
## 54 Other Foodservice 0
## 55 Other Foodservice 0
## 56 Other Nursing Home 0
## 57 Other Nursing Home 0
## 58 Other Hospital 0
## 59 Other Military 0
## 60 USA Foodservice MI
## 61 USA Foodservice NY
## 62 Other Nursing Home 0
## 63 USA Hospital NY
## 64 Other Hospital 0
## 65 Other Hospital 0
## 66 Other Hospital 0
## 67 Multiple Nursing Home 0
## 68 Other Nursing Home 0
## 69 Other Nursing Home 0
## 70 Other Military 0
## 71 Japan Foodservice 0
## 72 Japan School 0
## 73 Japan School 0
## 74 Japan Unknown 0
## 75 Japan Unknown 0
## 76 Japan Unknown 0
## 77 Japan School 0
## 78 Japan Other 0
## 79 Japan Foodservice 0
## 80 Japan School 0
## 81 Japan School 0
## 82 Japan School 0
## 83 Japan School 0
## 84 Japan School 0
## 85 Japan School 0
## 86 Japan School 0
## 87 USA Hospital TX
## 88 Other Unknown 0
## 89 Other Leisure 0
## 90 Other Unspecified 0
## 91 Other Foodservice 0
## 92 Other Foodservice 0
## 93 Other Foodservice 0
## 94 Other Foodservice 0
## 95 Other Other 0
## 96 Other Foodservice 0
## 97 Other Foodservice 0
## 98 Other Foodservice 0
## 99 Other Foodservice 0
## 100 Other Foodservice 0
## 101 Other Other 0
## 102 Other Leisure 0
## 103 Japan Foodservice 0
## 104 Japan Foodservice 0
## 105 Other Leisure 0
## 106 Other Foodservice 0
## 107 Other Hospital 0
## 108 Other Hospital 0
## 109 Other Hospital 0
## 110 Other Other 0
## 111 Other Nursing Home 0
## 112 Other Hospital 0
## 113 Other Hospital 0
## 114 Other Foodservice 0
## 115 Other Nursing Home 0
## 116 Other Hospital 0
## 117 Other Hospital 0
## 118 Other Hospital 0
## 119 Other Other Medical Setting 0
## 120 Other Hospital 0
## 121 USA Unknown CA
## 122 USA Foodservice NC
## 123 USA Foodservice NC
## 124 Other Daycare 0
## 125 Other Leisure 0
## 126 Other Other 0
## 127 USA School MA
## 128 USA Foodservice WI
## 129 Japan School 0
## 130 Japan Daycare 0
## 131 Other Leisure 0
## 132 Other Foodservice 0
## 133 Other Foodservice 0
## 134 Other Foodservice 0
## 135 Other Hospital 0
## 136 Other Nursing Home 0
## 137 USA Leisure NY
## 138 USA Leisure NY
## 139 USA Leisure NY
## 140 Other Hospital 0
## 141 Other Foodservice 0
## 142 Other Foodservice 0
## 143 Other Nursing Home 0
## 144 Other Other 0
## 145 Other Hospital 0
## 146 Other Military 0
## 147 Other Military 0
## 148 Japan School 0
## 149 Japan Unknown 0
## 150 Other Unspecified 0
## 151 Other Foodservice 0
## 152 Other Unspecified 0
## 153 Other Foodservice 0
## 154 Other Foodservice 0
## 155 Other Foodservice 0
## 156 Other Foodservice 0
## 157 Other Foodservice 0
## 158 Other Foodservice 0
## 159 Other Leisure 0
## 160 Other Leisure 0
## 161 Other School 0
## 162 Other Foodservice 0
## 163 Other Leisure 0
## 164 Other Leisure 0
## 165 Other Unspecified 0
## 166 USA Leisure AZ
## 167 Other Leisure 0
## 168 Other Leisure 0
## 169 Other Nursing Home 0
## 170 Other Other 0
## 171 Other Leisure 0
## 172 Other Foodservice 0
## 173 Other Nursing Home 0
## 174 Other Unspecified 0
## 175 USA Unknown LA
## 176 Other Foodservice 0
## 177 Other Foodservice 0
## 178 Other Leisure 0
## 179 Other Nursing Home 0
## 180 USA Leisure NY
## 181 USA Nursing Home NY
## 182 USA Foodservice NY
## 183 USA Nursing Home NY
## 184 USA Nursing Home NY
## 185 Other Unknown 0
## 186 Other Hospital 0
## 187 Other Hospital 0
## 188 Other Hospital 0
## 189 Other Hospital 0
## 190 Other Hospital 0
## 191 Other Hospital 0
## 192 Other Foodservice 0
## 193 Other Other 0
## 194 Other Other 0
## 195 Other Hospital 0
## 196 Other Hospital 0
## 197 Other Hospital 0
## 198 Other Hospital 0
## 199 Other Military 0
## 200 Japan Other 0
## 201 Japan Foodservice 0
## 202 Japan Other 0
## 203 Japan Other 0
## 204 Japan Other 0
## 205 Japan Foodservice 0
## 206 Japan School 0
## 207 Japan Foodservice 0
## 208 Japan Nursing Home 0
## 209 Japan Foodservice 0
## 210 Japan Foodservice 0
## 211 Japan Daycare 0
## 212 Japan Daycare 0
## 213 Japan Nursing Home 0
## 214 Other Leisure 0
## 215 Japan Foodservice 0
## 216 Japan Foodservice 0
## 217 Japan School 0
## 218 Japan Nursing Home 0
## 219 Japan Foodservice 0
## 220 Japan Other Medical Setting 0
## 221 Japan Unknown 0
## 222 Japan Unknown 0
## 223 Japan Unknown 0
## 224 Japan Unknown 0
## 225 Japan Foodservice 0
## 226 Japan Unknown 0
## 227 Japan Unknown 0
## 228 Japan Unknown 0
## 229 Japan Unknown 0
## 230 Japan Unknown 0
## 231 Japan Unknown 0
## 232 Japan Unknown 0
## 233 Japan Foodservice 0
## 234 Japan Unknown 0
## 235 Japan Unknown 0
## 236 Japan Unknown 0
## 237 USA Leisure HI
## 238 Other Hospital 0
## 239 USA School MA
## 240 Other Other Medical Setting 0
## 241 Multiple Other 0
## 242 Other Other 0
## 243 Other Hospital 0
## 244 Other Unspecified 0
## 245 Other Foodservice 0
## 246 Other Foodservice 0
## 247 Other Foodservice 0
## 248 Other Foodservice 0
## 249 Other Foodservice 0
## 250 Other Foodservice 0
## 251 Other Foodservice 0
## 252 Other Foodservice 0
## 253 Other Other 0
## 254 Other Other 0
## 255 Other Foodservice 0
## 256 Other Foodservice 0
## 257 Other Other 0
## 258 Other Foodservice 0
## 259 Other Hospital 0
## 260 USA Other FL
## 261 Other Nursing Home 0
## 262 Japan Other 0
## 263 Japan Foodservice 0
## 264 Japan Foodservice 0
## 265 Japan Other 0
## 266 Japan Other 0
## 267 Japan Foodservice 0
## 268 Japan Foodservice 0
## 269 Japan Other 0
## 270 Japan Foodservice 0
## 271 Other Hospital 0
## 272 Other Leisure 0
## 273 Other Leisure 0
## 274 Japan Foodservice 0
## 275 Other Other 0
## 276 USA Hospital NC
## 277 Other Hospital 0
## 278 Japan Nursing Home 0
## 279 Japan Nursing Home 0
## 280 Japan Nursing Home 0
## 281 Other Nursing Home 0
## 282 Other Nursing Home 0
## 283 Other Nursing Home 0
## 284 Other Hospital 0
## 285 Other Other 0
## 286 Other Hospital 0
## 287 Other Nursing Home 0
## 288 Other Nursing Home 0
## 289 Other Nursing Home 0
## 290 Other Other Medical Setting 0
## 291 Other Hospital 0
## 292 Other Hospital 0
## 293 Other Other 0
## 294 USA Hospital NC
## 295 Other Hospital 0
## 296 Other Daycare 0
## 297 Other Daycare 0
## 298 Other Hospital 0
## 299 Other Other 0
## 300 Other Other 0
## 301 Other School 0
## 302 Other Nursing Home 0
## 303 Other Nursing Home 0
## 304 Other Foodservice 0
## 305 Other Leisure 0
## 306 Other School 0
## 307 Other School 0
## 308 Other Nursing Home 0
## 309 Other School 0
## 310 Other School 0
## 311 Other Other 0
## 312 Other School 0
## 313 USA Military SC
## 314 Other School 0
## 315 Other Other 0
## 316 Unspecified Other 0
## 317 Other Unspecified 0
## 318 Other Nursing Home 0
## 319 Other Nursing Home 0
## 320 Other Nursing Home 0
## 321 Other Nursing Home 0
## 322 Unspecified Leisure 0
## 323 Unspecified Other 0
## Setting_1
## 1 Daycare Center
## 2 Many, family dinner to large festival
## 3 Cruise Ship
## 4 Hospital A, ward 7 E
## 5 Hospital A, ward 7B
## 6 Hospital A, ward 7A
## 7 Hospital A, ward 7A
## 8 Hospital A, ward 7D
## 9 Hospital A, ward 7C
## 10 Hosptial A, ward 7F
## 11 Hospital A, ward 7C
## 12 Hospital A, ward 7E
## 13 Hospital A, ward 7D
## 14 Hospital A, ward 7A
## 15 Hospital B, ward L
## 16 Hospital B, ward E
## 17 annual festival, oyster roast, banquet, restaurant, church supper
## 18 Child Care and Elementry School
## 19 Daycare
## 20 Going away party
## 21 Aged Care Facility
## 22 High School Dorm
## 23 0
## 24 School
## 25 0
## 26 Hotel
## 27 Hospital
## 28 restaurant
## 29 private home
## 30 restaurant
## 31 restaurant
## 32 restaurant
## 33 0
## 34 restaurant
## 35 0
## 36 restaurant
## 37 restaurant
## 38 restaurant
## 39 restaurant
## 40 nursing home
## 41 restaurant
## 42 catering
## 43 restaurant
## 44 restaurant
## 45 University Hospital
## 46 Nursery School
## 47 Nursing Home
## 48 Daycare and School
## 49 Elderly Home
## 50 Restaurant
## 51 care unit of inter l medicine (pneumology-oncology)
## 52 hospital 1 geriatric ward
## 53 hospital 1 pediatric ward
## 54 restaurant
## 55 Chinese takeaway meal at home
## 56 6 nursing homes in Tel Aviv
## 57 Hostel for the Aged, Hospital
## 58 Hospital
## 59 British Military
## 60 Sub Restaruant
## 61 Restaurant
## 62 Long-Term care facility
## 63 Ward in a Hospital
## 64 Hospital D
## 65 Hospital F
## 66 Hospital G
## 67 Nursing Home, Hospital
## 68 Nursing Home and Hospital
## 69 Civillian Setting
## 70 Military Unit
## 71 Restaurant
## 72 Primary School
## 73 Primary School
## 74 0
## 75 0
## 76 0
## 77 Elementary School
## 78 Home
## 79 Restaurant
## 80 Kindergarten
## 81 Kindergarten
## 82 School
## 83 School
## 84 Kindergarten
## 85 School
## 86 School
## 87 Michael E. DeBakey Veterans Affairs Medical Center
## 88 0
## 89 health resort
## 90 0
## 91 restaurant
## 92 cafe
## 93 catering
## 94 catering
## 95 private home
## 96 catering
## 97 catering
## 98 restaurant
## 99 restaurant
## 100 restaurant
## 101 Community
## 102 Cruise
## 103 restaurant
## 104 restaurant
## 105 Activity Camp and Conference Center
## 106 Restaurant
## 107 Hospital
## 108 Hospital
## 109 Medical Ward of Hospital
## 110 Community
## 111 Elderly Home
## 112 within 3 wards w/an interconnecting corridor of Alfred Hospital
## 113 3 wards of Alfred Hospital
## 114 Cafeteria at a Hospital
## 115 Hesse
## 116 Brandenburg
## 117 Berlin
## 118 Rhineland-Palati te
## 119 rehab center in Hesse
## 120 Saxony
## 121 0
## 122 restaurant in Cabarrus county
## 123 restaurant in Clay county
## 124 day care center 81
## 125 wedding
## 126 community setting
## 127 Worcester Polytechnic Institute
## 128 restaurant
## 129 Elementary School
## 130 Daycare Center
## 131 Resort
## 132 take-out restaurant
## 133 restaurant
## 134 Employees at Bakery, Customers around England
## 135 Children's Hospital
## 136 Hostel for the aged
## 137 School Camp
## 138 Summer Camp
## 139 Summer camp
## 140 infirmary ward of Tung Wah Hospital
## 141 Meals on Wheels Service
## 142 Restaurant
## 143 Nursing Home
## 144 Households
## 145 University of Alberta in Edmonton
## 146 Military Unit
## 147 Military Unit
## 148 Elementary School
## 149 0
## 150 0
## 151 restaurant
## 152 0
## 153 restaurant
## 154 catering
## 155 restaurant
## 156 catering
## 157 restaurant
## 158 restaurant
## 159 recreatio l water
## 160 recreatio l water
## 161 School
## 162 catering
## 163 recreatio l water
## 164 recreatio l water
## 165 0
## 166 rafting on Colorado River
## 167 Community Pool
## 168 Resort Camp
## 169 Elderly Home
## 170 Family
## 171 Recreatio l Lake
## 172 2 hotels in Queensland
## 173 0
## 174 0
## 175 0
## 176 reception
## 177 catered buffet
## 178 Hotel
## 179 eldercare facility
## 180 Ski Resort
## 181 Nursing Home
## 182 Delicatessen
## 183 Nursing Home
## 184 Nursing home
## 185 0
## 186 Hospital A, ward 6A
## 187 Hospital A, ward 3A
## 188 Hospital A, ward2A
## 189 Hospital A, ward 5E
## 190 Hospital E
## 191 Hospital C
## 192 0
## 193 Concert Hall
## 194 Two Communities
## 195 Hospital
## 196 Hospital and nursing home
## 197 Lymington Hospital in Hampshire, UK
## 198 Southampton General Hospital
## 199 Military Unit
## 200 Home
## 201 Restaurant
## 202 Office
## 203 Home
## 204 Home
## 205 Restaurant
## 206 Primary School
## 207 Restaurant
## 208 Nursing Home
## 209 Restaurant
## 210 Restaurant
## 211 Pre-school day nursery
## 212 Pre-school Day Nursery
## 213 Nursing Home for the elderly
## 214 Ski Resort
## 215 Restaurant
## 216 Restaurant
## 217 Elementary School
## 218 Nursing Home
## 219 Restaurant
## 220 Institute for Mentally Challenged
## 221 0
## 222 0
## 223 0
## 224 0
## 225 Restaurant
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 Restaurant
## 234 0
## 235 0
## 236 0
## 237 Cruise
## 238 Hospital
## 239 university located in Cambridge, MA
## 240 Rehabilitation Center
## 241 Various Settings
## 242 Various Settings
## 243 Hospital
## 244 0
## 245 restaurant
## 246 restaurant
## 247 restaurant
## 248 restaurant
## 249 restaurant
## 250 catering
## 251 restaurant
## 252 restaurant
## 253 private home
## 254 private home
## 255 restaurant
## 256 restaurant
## 257 private home
## 258 restaurant
## 259 Elderly Care Ward
## 260 2 communities near Apalachicola Bay
## 261 Nursing Home, Adged Care Home, Hospital
## 262 home
## 263 restaurant
## 264 restaurant
## 265 home
## 266 home
## 267 restaurant
## 268 restaurant
## 269 mo stery
## 270 restaurant
## 271 Hospital
## 272 City Hotel
## 273 Hotel
## 274 School Lunch
## 275 Community
## 276 Veterans Affairs medical center in Durham
## 277 Hospital
## 278 Nursing Home
## 279 Nursing Home
## 280 Nursing Home
## 281 old people's home in Saxony-Anhalt
## 282 old people's home in Bavaria
## 283 old people's home in Bavaria
## 284 Bavaria
## 285 sugar factory in Saxony-Anhalt
## 286 Brandenburg
## 287 old people's home in Brandenburg
## 288 old people's home in Brandenburg
## 289 old people's home in North Rhine Westphalia
## 290 rehab center in Hesse
## 291 hygiene department
## 292 The Pediatric Hematology and Oncology Unit at the Children's Hospital
## 293 restaurants, sports and community clubs, and a private function
## 294 locked pediatric psychiatric unit at UNC Hospitals
## 295 Aged care hospital
## 296 day care center 24
## 297 day care center 57
## 298 hospital 2
## 299 prison
## 300 Rural Village
## 301 School
## 302 Nursing Home
## 303 Nursing Home
## 304 Catering service
## 305 Vacation Camp
## 306 School
## 307 School
## 308 Nursing Home
## 309 School
## 310 School
## 311 Private home
## 312 School
## 313 Marine Corps Recruit Depot (MCRD) Parris Island, South Caroli
## 314 elementary school in Jiangsu Province
## 315 village in in Shanxi Province
## 316 ward
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 hotel
## 323 domestic
## StartMonth EndMonth GGA CA
## 1 11 12 2 4
## 2 11 11 0 0
## 3 10 0 0 0
## 4 9 10 2 4
## 5 10 10 2 4
## 6 10 10 2 4
## 7 10 10 2 4
## 8 10 11 2 4
## 9 10 11 2 4
## 10 11 11 2 4
## 11 11 12 2 4
## 12 11 12 2 4
## 13 11 11 2 4
## 14 11 12 2 4
## 15 9 10 2 4
## 16 10 10 2 4
## 17 11 11 1 0
## 18 11 11 2 0
## 19 3 6 2 4
## 20 9 9 2 0
## 21 4 5 0 0
## 22 11 0 2 0
## 23 11 0 2 0
## 24 11 0 2 2
## 25 11 11 2 0
## 26 11 11 2 0
## 27 3 3 0 0
## 28 9 0 2 4
## 29 9 0 1 3
## 30 9 0 2 1
## 31 10 0 2 4
## 32 10 0 2 2
## 33 11 0 1 4
## 34 9 0 1 3
## 35 10 0 1 3
## 36 10 0 1 3
## 37 9 0 1 6
## 38 9 0 2 4
## 39 11 0 2 4
## 40 10 0 2 4
## 41 10 0 2 4
## 42 11 0 2 4
## 43 10 0 2 3
## 44 11 0 2 6
## 45 11 1 2 4
## 46 11 0 0 0
## 47 11 0 0 0
## 48 11 0 2 4
## 49 9 0 2 0
## 50 9 9 0 0
## 51 11 11 2 0
## 52 3 0 2 4
## 53 3 0 2 4
## 54 11 12 2 0
## 55 5 0 2 2
## 56 4 5 2 0
## 57 9 0 0 0
## 58 9 0 0 0
## 59 5 5 2 0
## 60 5 5 0 0
## 61 5 0 2 4
## 62 10 11 2 0
## 63 4 4 0 0
## 64 3 4 2 4
## 65 4 4 2 4
## 66 5 5 2 4
## 67 4 5 2 0
## 68 3 4 0 0
## 69 4 0 2 4
## 70 4 0 2 4
## 71 3 0 1 0
## 72 4 0 1 0
## 73 3 0 2 0
## 74 4 0 1 0
## 75 3 0 2 0
## 76 3 0 1 0
## 77 3 0 1 0
## 78 3 3 2 2
## 79 5 5 2 5
## 80 3 3 2 2
## 81 4 4 2 2
## 82 4 4 2 2
## 83 5 5 2 2
## 84 5 5 2 2
## 85 5 5 2 2
## 86 5 5 2 2
## 87 3 3 2 4
## 88 3 3 1 3
## 89 3 0 2 6
## 90 5 0 2 2
## 91 4 0 2 0
## 92 3 0 2 7
## 93 3 0 2 0
## 94 5 0 2 2
## 95 4 0 2 4
## 96 3 0 2 7
## 97 3 0 2 7
## 98 3 0 2 0
## 99 4 0 2 7
## 100 5 0 2 2
## 101 5 9 2 4
## 102 5 6 0 0
## 103 3 0 1 4
## 104 3 0 1 8
## 105 5 6 2 0
## 106 3 0 0 0
## 107 3 0 0 0
## 108 3 0 0 0
## 109 4 0 0 0
## 110 3 4 2 0
## 111 5 0 2 0
## 112 10 10 0 0
## 113 10 10 0 0
## 114 5 5 1 0
## 115 3 0 0 0
## 116 3 0 0 0
## 117 3 0 0 0
## 118 3 0 0 0
## 119 3 0 0 0
## 120 4 0 0 0
## 121 5 0 2 0
## 122 5 0 2 4
## 123 5 0 2 4
## 124 10 0 2 0
## 125 11 0 2 4
## 126 9 0 2 4
## 127 4 5 2 0
## 128 5 6 1 2
## 129 3 3 1 4
## 130 6 6 2 3
## 131 7 7 2 4
## 132 7 0 0 0
## 133 6 6 1 6
## 134 8 8 1 0
## 135 2 0 2 3
## 136 1 1 0 0
## 137 6 0 0 0
## 138 7 0 2 4
## 139 7 0 1 3
## 140 7 7 0 0
## 141 6 0 2 4
## 142 8 0 2 0
## 143 8 0 2 7
## 144 8 9 2 0
## 145 8 8 2 0
## 146 6 0 2 4
## 147 7 0 2 4
## 148 6 0 2 0
## 149 7 0 2 0
## 150 7 0 1 8
## 151 8 0 1 3
## 152 8 0 1 3
## 153 6 0 2 4
## 154 8 0 2 4
## 155 8 0 2 7
## 156 8 0 2 4
## 157 6 0 2 0
## 158 6 0 2 8
## 159 7 0 1 5
## 160 7 0 1 4
## 161 8 0 2 2
## 162 8 0 2 8
## 163 8 0 1 1
## 164 8 0 1 1
## 165 8 0 1 14
## 166 8 9 2 14
## 167 7 7 2 4
## 168 7 9 0 0
## 169 6 0 2 0
## 170 8 0 2 0
## 171 8 8 1 0
## 172 1 1 0 0
## 173 2 0 2 4
## 174 1 3 2 0
## 175 2 0 0 0
## 176 1 0 2 4
## 177 12 0 0 0
## 178 2 2 2 0
## 179 7 0 2 1
## 180 1 0 0 0
## 181 12 0 0 0
## 182 12 0 1 3
## 183 12 0 2 3
## 184 1 0 0 0
## 185 1 3 1 2
## 186 12 12 2 4
## 187 1 1 2 4
## 188 1 1 2 4
## 189 2 2 2 4
## 190 12 1 2 4
## 191 2 2 2 4
## 192 12 12 2 4
## 193 1 1 2 0
## 194 1 1 0 0
## 195 1 2 0 0
## 196 2 3 0 0
## 197 1 2 2 0
## 198 1 2 2 0
## 199 2 0 2 4
## 200 2 0 1 0
## 201 12 0 2 0
## 202 2 0 2 0
## 203 1 0 2 0
## 204 1 0 2 0
## 205 2 0 2 0
## 206 2 0 2 0
## 207 12 0 2 0
## 208 12 0 2 0
## 209 12 0 2 4
## 210 2 0 2 0
## 211 12 0 2 0
## 212 12 0 2 0
## 213 1 0 2 0
## 214 7 7 1 5
## 215 1 0 2 0
## 216 1 0 2 0
## 217 2 0 2 0
## 218 2 0 1 0
## 219 2 0 2 0
## 220 2 0 2 0
## 221 1 0 2 0
## 222 1 0 2 0
## 223 1 0 2 0
## 224 1 0 2 0
## 225 1 0 2 0
## 226 1 0 2 0
## 227 1 0 2 0
## 228 1 0 2 0
## 229 2 0 2 0
## 230 12 0 2 0
## 231 1 0 2 0
## 232 2 0 2 0
## 233 12 0 2 0
## 234 12 0 2 0
## 235 1 0 2 0
## 236 1 0 2 0
## 237 2 2 0 0
## 238 2 3 2 0
## 239 12 12 2 0
## 240 12 2 2 0
## 241 12 1 2 4
## 242 2 2 1 1
## 243 7 8 0 0
## 244 2 0 1 3
## 245 1 0 1 3
## 246 1 0 2 4
## 247 1 0 1 6
## 248 1 0 2 7
## 249 2 0 2 0
## 250 2 0 2 7
## 251 2 0 2 7
## 252 2 0 2 7
## 253 2 0 2 7
## 254 12 0 2 4
## 255 1 0 1 8
## 256 1 0 2 7
## 257 2 0 2 7
## 258 12 0 1 14
## 259 1 2 0 0
## 260 12 1 0 0
## 261 6 7 2 0
## 262 1 0 1 4
## 263 1 0 2 12
## 264 1 0 1 2
## 265 2 0 2 5
## 266 12 0 1 15
## 267 2 0 1 8
## 268 2 0 1 8
## 269 12 0 1 3
## 270 2 0 1 8
## 271 12 12 2 0
## 272 1 0 0 0
## 273 12 0 0 0
## 274 12 12 2 4
## 275 1 2 0 0
## 276 2 3 0 0
## 277 1 0 1 0
## 278 12 12 2 4
## 279 12 12 2 4
## 280 12 1 2 4
## 281 1 0 0 0
## 282 1 0 0 0
## 283 2 0 0 0
## 284 2 0 0 0
## 285 2 0 0 0
## 286 2 0 0 0
## 287 2 0 0 0
## 288 2 0 0 0
## 289 2 0 0 0
## 290 2 0 0 0
## 291 1 0 2 0
## 292 1 2 0 0
## 293 8 9 2 0
## 294 1 1 2 4
## 295 7 0 2 4
## 296 8 0 2 4
## 297 8 0 2 0
## 298 7 0 2 4
## 299 7 0 2 0
## 300 0 0 2 0
## 301 0 0 2 0
## 302 0 0 2 0
## 303 0 0 1 0
## 304 0 0 1 0
## 305 0 0 2 0
## 306 0 0 2 0
## 307 0 0 1 0
## 308 0 0 2 4
## 309 0 0 2 0
## 310 0 0 2 0
## 311 0 0 2 4
## 312 0 0 2 0
## 313 0 0 2 0
## 314 0 0 2 4
## 315 0 0 2 3
## 316 0 0 0 0
## 317 0 0 0 0
## 318 0 0 1 3
## 319 0 0 1 6
## 320 0 0 2 0
## 321 0 0 2 3
## 322 12 12 2 4
## 323 0 0 2 3
## SA
## 1 Lordsdale
## 2 0
## 3 0
## 4 Lordsdale
## 5 Lordsdale
## 6 Lordsdale
## 7 Lordsdale
## 8 Lordsdale
## 9 Lordsdale
## 10 Lordsdale
## 11 Lordsdale
## 12 Lordsdale
## 13 Lordsdale
## 14 Lordsdale
## 15 Lordsdale
## 16 Lordsdale
## 17 same sequence found in concurrent Grand Pass oyster-related outbreaks in LA
## 18 96% identity w/Lordsdale
## 19 0
## 20 HuCV/New Delhi virus/NDV/India/1999
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 100% identity w/AB05308, 96% identity w/MOH
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 Grimsby
## 46 0
## 47 0
## 48 Lordsdale
## 49 Hawaii
## 50 0
## 51 Camberwell virus (92% nucleotide identity)
## 52 US 95/96 subset related to Lordsdale virus
## 53 US 95/96 subset related to Lordsdale virus
## 54 0
## 55 similarity of 97% with No/GII.2/Kuenzelsau/3870/05
## 56 Hu/NLV/ukB7s2
## 57 Frankston-138534/94/AUS
## 58 Frankston-138534/94/AUS
## 59 0
## 60 0
## 61 Camberwell
## 62 0
## 63 0
## 64 Lordsdale
## 65 Lordsdale
## 66 Lordsdale
## 67 NLV/Miami Beach/326/1995/US
## 68 Miami Beach
## 69 Lordsdale
## 70 Lordsdale
## 71 Chiba
## 72 Chiba
## 73 MOH/99
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 NoV Hu/GII-4/C5_159/South Korea
## 88 Desert Shield
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 GII.4 2006a
## 102 0
## 103 0
## 104 0
## 105 Gothenburg
## 106 0
## 107 0
## 108 0
## 109 0
## 110 NLV/Tarrag/238/2001/Sp
## 111 Hawaii
## 112 Camberwell
## 113 Camberwell
## 114 Desert Shield
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 Bristol
## 123 Bristol
## 124 Sydney cluster
## 125 US 95/96 subset related to Lordsdale virus
## 126 US 95/96 subset related to Lordsdale virus
## 127 0
## 128 Southampton
## 129 0
## 130 Toronto
## 131 Lordsdale
## 132 0
## 133 0
## 134 0
## 135 NoV/Sydney/C14/02/AU
## 136 Camberwell-101922/94/AUS
## 137 0
## 138 Camberwell
## 139 Desert Shield
## 140 0
## 141 0
## 142 0
## 143 0
## 144 86% identity w/Snow Mountain virus
## 145 0
## 146 Lordsdale
## 147 Lordsdale
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 Bristol
## 168 Lordsdale
## 169 Hawaii
## 170 Hillingdon-like
## 171 0
## 172 0
## 173 US 95/96 subset related to Lordsdale virus
## 174 0
## 175 0
## 176 GII.4 2004
## 177 0
## 178 12C/92/UNK
## 179 NoV/Picton/03/AU
## 180 0
## 181 0
## 182 Desert Shield
## 183 Nor89JD
## 184 0
## 185 BCCDC03-028 (Southampton)
## 186 Lordsdale
## 187 Lordsdale
## 188 Lordsdale
## 189 Lordsdale
## 190 Lordsdale
## 191 Lordsdale
## 192 Lordsdale
## 193 Hu/Pfaffenhofen028/2000/DE
## 194 Norwalk
## 195 0
## 196 Miami Beach
## 197 Lymington virus
## 198 Lymington virus
## 199 Lordsdale
## 200 Chiba
## 201 Toronto
## 202 Toronto
## 203 Toronto
## 204 Toronto
## 205 Toronto
## 206 0
## 207 0
## 208 0
## 209 Lordsdale
## 210 0
## 211 0
## 212 Melksham
## 213 0
## 214 Apalachicola Bay
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 Basel
## 239 P2-B phylogenic group
## 240 Hawaii
## 241 Bristol
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 Desert Shield
## 278 0
## 279 Bristol
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 Snow Mountain Agent
## 292 0
## 293 0
## 294 0
## 295 US 95/96 subset related to Lordsdale virus
## 296 US 95/96 subset related to Lordsdale virus
## 297 Sydney cluster
## 298 US 95/96 subset related to Lordsdale virus
## 299 Hawaii-like virus
## 300 GII.b Mexico
## 301 Hillingdon
## 302 GII.b Mexico
## 303 0
## 304 0
## 305 Melksham
## 306 Melksham
## 307 0
## 308 Lordsdale
## 309 GII.b
## 310 Melksham
## 311 Lordsdale
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 Birmingham
## 319 Mikkeli
## 320 GII.b Hilversum
## 321 Toronto
## 322 EUb DenHaag/06/NL
## 323 0
## new_GGA new_CA new_SA
## 1 0 0 0
## 2 0 0 0
## 3 0 0 0
## 4 0 0 0
## 5 0 0 0
## 6 0 0 0
## 7 0 0 0
## 8 0 0 0
## 9 0 0 0
## 10 0 0 0
## 11 0 0 0
## 12 0 0 0
## 13 0 0 0
## 14 0 0 0
## 15 0 0 0
## 16 0 0 0
## 17 0 0 0
## 18 2 4 Lsdale-GBR
## 19 0 0 0
## 20 2 3 HuCV/New Delhi virus/NDV/India/1999
## 21 0 0 0
## 22 0 0 0
## 23 0 0 0
## 24 0 0 0
## 25 0 0 0
## 26 0 0 0
## 27 0 0 0
## 28 0 0 0
## 29 0 0 0
## 30 0 0 0
## 31 0 0 0
## 32 0 0 0
## 33 0 0 0
## 34 0 0 0
## 35 0 0 0
## 36 0 0 0
## 37 0 0 0
## 38 0 0 0
## 39 0 0 0
## 40 0 0 0
## 41 0 0 0
## 42 0 0 0
## 43 0 0 0
## 44 0 0 0
## 45 0 0 0
## 46 0 0 0
## 47 0 0 0
## 48 0 0 0
## 49 2 1 Hawaii-USA94
## 50 0 0 0
## 51 2 4 CBW94-AUS
## 52 0 0 0
## 53 0 0 0
## 54 0 0 0
## 55 0 0 0
## 56 2 4 Hu/NLV/ukB7s2
## 57 0 0 0
## 58 0 0 0
## 59 0 0 0
## 60 0 0 0
## 61 0 0 0
## 62 0 0 0
## 63 0 0 0
## 64 0 0 0
## 65 0 0 0
## 66 0 0 0
## 67 2 4 MB326-USA
## 68 2 4 MB326-USA
## 69 0 0 0
## 70 0 0 0
## 71 1 4 Chiba-JPN00
## 72 1 4 Chiba-JPN00
## 73 2 5 MOH99-HUN
## 74 0 0 0
## 75 0 0 0
## 76 0 0 0
## 77 0 0 0
## 78 0 0 0
## 79 0 0 0
## 80 0 0 0
## 81 0 0 0
## 82 0 0 0
## 83 0 0 0
## 84 0 0 0
## 85 0 0 0
## 86 0 0 0
## 87 0 0 0
## 88 0 0 0
## 89 0 0 0
## 90 0 0 0
## 91 0 0 0
## 92 0 0 0
## 93 0 0 0
## 94 0 0 0
## 95 0 0 0
## 96 0 0 0
## 97 0 0 0
## 98 0 0 0
## 99 0 0 0
## 100 0 0 0
## 101 0 0 0
## 102 0 0 0
## 103 0 0 0
## 104 0 0 0
## 105 0 0 0
## 106 0 0 0
## 107 0 0 0
## 108 0 0 0
## 109 0 0 0
## 110 0 0 0
## 111 2 1 Hawaii-USA94
## 112 2 4 CBW94-AUS
## 113 2 4 CBW94-AUS
## 114 1 3 DSV-USA93
## 115 0 0 0
## 116 0 0 0
## 117 0 0 0
## 118 0 0 0
## 119 0 0 0
## 120 0 0 0
## 121 0 0 0
## 122 0 0 0
## 123 0 0 0
## 124 2 3 Sydney cluster
## 125 0 0 0
## 126 0 0 0
## 127 0 0 0
## 128 0 0 0
## 129 0 0 0
## 130 0 0 0
## 131 0 0 0
## 132 0 0 0
## 133 0 0 0
## 134 0 0 0
## 135 0 0 0
## 136 2 4 CBW94-AUS
## 137 0 0 0
## 138 0 0 0
## 139 0 0 0
## 140 0 0 0
## 141 0 0 0
## 142 0 0 0
## 143 0 0 0
## 144 2 2 SMV1-USA
## 145 0 0 0
## 146 0 0 0
## 147 0 0 0
## 148 0 0 0
## 149 0 0 0
## 150 0 0 0
## 151 0 0 0
## 152 0 0 0
## 153 0 0 0
## 154 0 0 0
## 155 0 0 0
## 156 0 0 0
## 157 0 0 0
## 158 0 0 0
## 159 0 0 0
## 160 0 0 0
## 161 0 0 0
## 162 0 0 0
## 163 0 0 0
## 164 0 0 0
## 165 0 0 0
## 166 0 0 0
## 167 0 0 0
## 168 2 4 Lsdale-GBR
## 169 2 1 Hawaii-USA94
## 170 2 5 Hilingd-GBR00
## 171 0 0 0
## 172 0 0 0
## 173 0 0 0
## 174 0 0 0
## 175 0 0 0
## 176 0 0 0
## 177 0 0 0
## 178 0 0 0
## 179 0 0 0
## 180 0 0 0
## 181 0 0 0
## 182 0 0 0
## 183 0 0 0
## 184 0 0 0
## 185 0 0 0
## 186 0 0 0
## 187 0 0 0
## 188 0 0 0
## 189 0 0 0
## 190 0 0 0
## 191 0 0 0
## 192 0 0 0
## 193 2 1 Hu/Pfaffenhofen028/2000/DE
## 194 1 1 NV-USA93
## 195 0 0 0
## 196 2 4 MB326-USA
## 197 0 0 0
## 198 0 0 0
## 199 0 0 0
## 200 1 4 Chiba-JPN00
## 201 2 3 Toronto-CAN93
## 202 2 3 Toronto-CAN93
## 203 2 3 Toronto-CAN93
## 204 2 3 Toronto-CAN93
## 205 2 3 Toronto-CAN93
## 206 0 0 0
## 207 0 0 0
## 208 0 0 0
## 209 0 0 0
## 210 0 0 0
## 211 0 0 0
## 212 2 2 Msham-GBR95
## 213 0 0 0
## 214 0 0 0
## 215 0 0 0
## 216 0 0 0
## 217 0 0 0
## 218 0 0 0
## 219 0 0 0
## 220 0 0 0
## 221 0 0 0
## 222 0 0 0
## 223 0 0 0
## 224 0 0 0
## 225 0 0 0
## 226 0 0 0
## 227 0 0 0
## 228 0 0 0
## 229 0 0 0
## 230 0 0 0
## 231 0 0 0
## 232 0 0 0
## 233 0 0 0
## 234 0 0 0
## 235 0 0 0
## 236 0 0 0
## 237 0 0 0
## 238 2 4 Lsdale-GBR
## 239 0 0 0
## 240 2 1 Hawaii-USA94
## 241 0 0 0
## 242 0 0 0
## 243 0 0 0
## 244 0 0 0
## 245 0 0 0
## 246 0 0 0
## 247 0 0 0
## 248 0 0 0
## 249 0 0 0
## 250 0 0 0
## 251 0 0 0
## 252 0 0 0
## 253 0 0 0
## 254 0 0 0
## 255 0 0 0
## 256 0 0 0
## 257 0 0 0
## 258 0 0 0
## 259 0 0 0
## 260 0 0 0
## 261 0 0 0
## 262 0 0 0
## 263 0 0 0
## 264 0 0 0
## 265 0 0 0
## 266 0 0 0
## 267 0 0 0
## 268 0 0 0
## 269 0 0 0
## 270 0 0 0
## 271 0 0 0
## 272 0 0 0
## 273 0 0 0
## 274 0 0 0
## 275 0 0 0
## 276 0 0 0
## 277 1 3 DSV-USA93
## 278 0 0 0
## 279 0 0 0
## 280 0 0 0
## 281 0 0 0
## 282 0 0 0
## 283 0 0 0
## 284 0 0 0
## 285 0 0 0
## 286 0 0 0
## 287 0 0 0
## 288 0 0 0
## 289 0 0 0
## 290 0 0 0
## 291 2 2 SMV1-USA
## 292 0 0 0
## 293 0 0 0
## 294 0 0 0
## 295 0 0 0
## 296 0 0 0
## 297 2 3 Sydney cluster
## 298 0 0 0
## 299 2 1 Hawaii-USA94
## 300 0 0 0
## 301 2 5 Hilingd-GBR00
## 302 0 0 0
## 303 0 0 0
## 304 0 0 0
## 305 2 2 Msham-GBR95
## 306 2 2 Msham-GBR95
## 307 0 0 0
## 308 0 0 0
## 309 0 0 0
## 310 2 2 Msham-GBR95
## 311 0 0 0
## 312 0 0 0
## 313 0 0 0
## 314 0 0 0
## 315 0 0 0
## 316 0 0 0
## 317 0 0 0
## 318 0 0 0
## 319 0 0 0
## 320 0 0 0
## 321 0 0 0
## 322 0 0 0
## 323 0 0 0
## SA_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18 Zheng
## 19
## 20 origi l article
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49 Zheng
## 50
## 51 Zheng
## 52
## 53
## 54
## 55
## 56 http://www.springerimages.com/Images/Biomedicine/1-10.1007_s10096-005-0002-1-0
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67 Zheng
## 68 Zheng
## 69
## 70
## 71 Zheng
## 72 Zheng
## 73 Zheng
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111 Zheng
## 112 Zheng
## 113 Zheng
## 114 Zheng
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124 abstraction
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136 Zheng
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144 Zheng
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168 Zheng
## 169 Zheng
## 170 Zheng
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 194 Zheng
## 195
## 196 Zheng
## 197
## 198
## 199
## 200 Zheng
## 201 Zheng
## 202 Zheng
## 203 Zheng
## 204 Zheng
## 205 Zheng
## 206
## 207
## 208
## 209
## 210
## 211
## 212 Zheng
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238 origi l article
## 239
## 240 Zheng
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277 Zheng
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291 Zheng
## 292
## 293
## 294
## 295
## 296
## 297 abstraction
## 298
## 299 Zheng
## 300
## 301 Zheng
## 302
## 303
## 304
## 305 Zheng
## 306 Zheng
## 307
## 308
## 309
## 310 Zheng
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## GGB CB SB new_GGB new_CB new_SB
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 2 0 GII.b 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 1 8 0 0 0 0
## 35 2 2 0 0 0 0
## 36 1 14 0 0 0 0
## 37 1 8 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 2 0 Toronto 2 3 Toronto-CAN93
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 1 1 Norwalk 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 2 3 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 1 8 0 0 0 0
## 104 1 3 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 2 0 Saitama U25 2 8 SU25-JPN
## 111 0 0 0 0 0 0
## 112 0 0 Lordsdale 2 4 Lsdale-GBR
## 113 0 0 Lordsdale 2 4 Lsdale-GBR
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 2 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 2 4 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 2 6 0 0 0 0
## 156 0 0 0 0 0 0
## 157 2 3 0 0 0 0
## 158 0 0 0 0 0 0
## 159 2 6 0 0 0 0
## 160 0 0 0 0 0 0
## 161 2 8 0 0 0 0
## 162 0 0 0 0 0 0
## 163 1 2 0 0 0 0
## 164 1 4 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 Birmingham 1 3 Birmingham
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 2 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 2 0 BCCDC03-020 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 1 0 Malta 1 4 Chiba-JPN00
## 193 0 0 0 0 0 0
## 194 0 0 Camberwell 2 4 CBW94-AUS
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 2 3 Toronto 0 0 0
## 200 0 0 0 0 0 0
## 201 1 0 0 0 0 0
## 202 2 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 2 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 2 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 1 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 2 0 GII.b 0 0 0
## 242 1 2 0 0 0 0
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 0 0 0 0 0 0
## 247 1 8 0 0 0 0
## 248 2 6 0 0 0 0
## 249 2 3 0 0 0 0
## 250 2 6 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 1 2 0 0 0 0
## 263 1 13 0 0 0 0
## 264 2 12 0 0 0 0
## 265 2 3 0 0 0 0
## 266 1 8 0 0 0 0
## 267 1 4 0 0 0 0
## 268 2 6 0 0 0 0
## 269 1 1 0 0 0 0
## 270 2 4 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 0 0 0 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 0 0 0 0 0 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 0 0 0 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 0 0 0 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 0 0 0 0
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 2 12 SaU1/04/JP 0 0 0
## 323 0 0 0 0 0 0
## SB_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71 Zheng
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110 Zheng
## 111
## 112 Zheng
## 113 Zheng
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192 origi l article/Zheng
## 193
## 194 Zheng
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## GGC CC SC new_ggc new_cc new_sc
## 1 0 0 0 0 0 0
## 2 0 0 0 0 0 0
## 3 0 0 0 0 0 0
## 4 0 0 0 0 0 0
## 5 0 0 0 0 0 0
## 6 0 0 0 0 0 0
## 7 0 0 0 0 0 0
## 8 0 0 0 0 0 0
## 9 0 0 0 0 0 0
## 10 0 0 0 0 0 0
## 11 0 0 0 0 0 0
## 12 0 0 0 0 0 0
## 13 0 0 0 0 0 0
## 14 0 0 0 0 0 0
## 15 0 0 0 0 0 0
## 16 0 0 0 0 0 0
## 17 0 0 0 0 0 0
## 18 0 0 0 0 0 0
## 19 0 0 0 0 0 0
## 20 0 0 0 0 0 0
## 21 0 0 0 0 0 0
## 22 0 0 0 0 0 0
## 23 0 0 0 0 0 0
## 24 0 0 0 0 0 0
## 25 0 0 0 0 0 0
## 26 0 0 0 0 0 0
## 27 0 0 0 0 0 0
## 28 0 0 0 0 0 0
## 29 0 0 0 0 0 0
## 30 0 0 0 0 0 0
## 31 0 0 0 0 0 0
## 32 0 0 0 0 0 0
## 33 0 0 0 0 0 0
## 34 0 0 0 0 0 0
## 35 0 0 0 0 0 0
## 36 0 0 0 0 0 0
## 37 0 0 0 0 0 0
## 38 0 0 0 0 0 0
## 39 0 0 0 0 0 0
## 40 0 0 0 0 0 0
## 41 0 0 0 0 0 0
## 42 0 0 0 0 0 0
## 43 0 0 0 0 0 0
## 44 0 0 0 0 0 0
## 45 0 0 0 0 0 0
## 46 0 0 0 0 0 0
## 47 0 0 0 0 0 0
## 48 0 0 0 0 0 0
## 49 0 0 0 0 0 0
## 50 0 0 0 0 0 0
## 51 0 0 0 0 0 0
## 52 0 0 0 0 0 0
## 53 0 0 0 0 0 0
## 54 0 0 0 0 0 0
## 55 0 0 0 0 0 0
## 56 0 0 0 0 0 0
## 57 0 0 0 0 0 0
## 58 0 0 0 0 0 0
## 59 0 0 0 0 0 0
## 60 0 0 0 0 0 0
## 61 0 0 0 0 0 0
## 62 0 0 0 0 0 0
## 63 0 0 0 0 0 0
## 64 0 0 0 0 0 0
## 65 0 0 0 0 0 0
## 66 0 0 0 0 0 0
## 67 0 0 0 0 0 0
## 68 0 0 0 0 0 0
## 69 0 0 0 0 0 0
## 70 0 0 0 0 0 0
## 71 2 0 MOH/99 2 5 MOH99-HUN
## 72 0 0 0 0 0 0
## 73 0 0 0 0 0 0
## 74 0 0 0 0 0 0
## 75 0 0 0 0 0 0
## 76 0 0 0 0 0 0
## 77 0 0 0 0 0 0
## 78 0 0 0 0 0 0
## 79 0 0 0 0 0 0
## 80 0 0 0 0 0 0
## 81 0 0 0 0 0 0
## 82 0 0 0 0 0 0
## 83 0 0 0 0 0 0
## 84 0 0 0 0 0 0
## 85 0 0 0 0 0 0
## 86 0 0 0 0 0 0
## 87 0 0 0 0 0 0
## 88 1 2 Southampton 0 0 0
## 89 0 0 0 0 0 0
## 90 0 0 0 0 0 0
## 91 0 0 0 0 0 0
## 92 0 0 0 0 0 0
## 93 0 0 0 0 0 0
## 94 0 0 0 0 0 0
## 95 0 0 0 0 0 0
## 96 0 0 0 0 0 0
## 97 0 0 0 0 0 0
## 98 0 0 0 0 0 0
## 99 0 0 0 0 0 0
## 100 0 0 0 0 0 0
## 101 0 0 0 0 0 0
## 102 0 0 0 0 0 0
## 103 2 3 0 0 0 0
## 104 2 3 0 0 0 0
## 105 0 0 0 0 0 0
## 106 0 0 0 0 0 0
## 107 0 0 0 0 0 0
## 108 0 0 0 0 0 0
## 109 0 0 0 0 0 0
## 110 2 0 Khs1-1997-JP 0 0 0
## 111 0 0 0 0 0 0
## 112 0 0 0 0 0 0
## 113 0 0 0 0 0 0
## 114 0 0 0 0 0 0
## 115 0 0 0 0 0 0
## 116 0 0 0 0 0 0
## 117 0 0 0 0 0 0
## 118 0 0 0 0 0 0
## 119 0 0 0 0 0 0
## 120 0 0 0 0 0 0
## 121 0 0 0 0 0 0
## 122 0 0 0 0 0 0
## 123 0 0 0 0 0 0
## 124 0 0 0 0 0 0
## 125 0 0 0 0 0 0
## 126 0 0 0 0 0 0
## 127 0 0 0 0 0 0
## 128 0 0 0 0 0 0
## 129 0 0 0 0 0 0
## 130 0 0 0 0 0 0
## 131 0 0 0 0 0 0
## 132 0 0 0 0 0 0
## 133 0 0 0 0 0 0
## 134 1 0 0 0 0 0
## 135 0 0 0 0 0 0
## 136 0 0 0 0 0 0
## 137 0 0 0 0 0 0
## 138 0 0 0 0 0 0
## 139 0 0 0 0 0 0
## 140 0 0 0 0 0 0
## 141 0 0 0 0 0 0
## 142 0 0 0 0 0 0
## 143 0 0 0 0 0 0
## 144 0 0 0 0 0 0
## 145 0 0 0 0 0 0
## 146 0 0 0 0 0 0
## 147 0 0 0 0 0 0
## 148 0 0 0 0 0 0
## 149 0 0 0 0 0 0
## 150 0 0 0 0 0 0
## 151 0 0 0 0 0 0
## 152 0 0 0 0 0 0
## 153 0 0 0 0 0 0
## 154 0 0 0 0 0 0
## 155 0 0 0 0 0 0
## 156 0 0 0 0 0 0
## 157 0 0 0 0 0 0
## 158 0 0 0 0 0 0
## 159 0 0 0 0 0 0
## 160 0 0 0 0 0 0
## 161 0 0 0 0 0 0
## 162 0 0 0 0 0 0
## 163 0 0 0 0 0 0
## 164 0 0 0 0 0 0
## 165 0 0 0 0 0 0
## 166 0 0 0 0 0 0
## 167 0 0 0 0 0 0
## 168 0 0 Leeds 2 7 Leeds-GBR00
## 169 0 0 0 0 0 0
## 170 0 0 0 0 0 0
## 171 0 0 0 0 0 0
## 172 0 0 0 0 0 0
## 173 0 0 0 0 0 0
## 174 0 0 0 0 0 0
## 175 0 0 0 0 0 0
## 176 0 0 0 0 0 0
## 177 0 0 0 0 0 0
## 178 0 0 0 0 0 0
## 179 0 0 0 0 0 0
## 180 0 0 0 0 0 0
## 181 0 0 0 0 0 0
## 182 0 0 0 0 0 0
## 183 0 0 0 0 0 0
## 184 0 0 0 0 0 0
## 185 2 0 BCCDC04-007 0 0 0
## 186 0 0 0 0 0 0
## 187 0 0 0 0 0 0
## 188 0 0 0 0 0 0
## 189 0 0 0 0 0 0
## 190 0 0 0 0 0 0
## 191 0 0 0 0 0 0
## 192 2 0 H104-94-J 0 0 0
## 193 0 0 0 0 0 0
## 194 0 0 Whiterose 1 2 Whiterose
## 195 0 0 0 0 0 0
## 196 0 0 0 0 0 0
## 197 0 0 0 0 0 0
## 198 0 0 0 0 0 0
## 199 2 6 Florida 0 0 0
## 200 0 0 0 0 0 0
## 201 0 0 0 0 0 0
## 202 0 0 0 0 0 0
## 203 0 0 0 0 0 0
## 204 0 0 0 0 0 0
## 205 0 0 0 0 0 0
## 206 0 0 0 0 0 0
## 207 0 0 0 0 0 0
## 208 0 0 0 0 0 0
## 209 0 0 0 0 0 0
## 210 0 0 0 0 0 0
## 211 0 0 0 0 0 0
## 212 0 0 0 0 0 0
## 213 0 0 0 0 0 0
## 214 0 0 0 0 0 0
## 215 0 0 0 0 0 0
## 216 0 0 0 0 0 0
## 217 0 0 0 0 0 0
## 218 0 0 0 0 0 0
## 219 0 0 0 0 0 0
## 220 0 0 0 0 0 0
## 221 0 0 0 0 0 0
## 222 0 0 0 0 0 0
## 223 0 0 0 0 0 0
## 224 0 0 0 0 0 0
## 225 0 0 0 0 0 0
## 226 0 0 0 0 0 0
## 227 0 0 0 0 0 0
## 228 0 0 0 0 0 0
## 229 0 0 0 0 0 0
## 230 0 0 0 0 0 0
## 231 0 0 0 0 0 0
## 232 0 0 0 0 0 0
## 233 0 0 0 0 0 0
## 234 0 0 0 0 0 0
## 235 0 0 0 0 0 0
## 236 0 0 0 0 0 0
## 237 0 0 0 0 0 0
## 238 0 0 0 0 0 0
## 239 0 0 0 0 0 0
## 240 0 0 0 0 0 0
## 241 1 4 Chiba 0 0 0
## 242 2 4 0 0 0 0
## 243 0 0 0 0 0 0
## 244 0 0 0 0 0 0
## 245 0 0 0 0 0 0
## 246 0 0 0 0 0 0
## 247 0 0 0 0 0 0
## 248 0 0 0 0 0 0
## 249 0 0 0 0 0 0
## 250 0 0 0 0 0 0
## 251 0 0 0 0 0 0
## 252 0 0 0 0 0 0
## 253 0 0 0 0 0 0
## 254 0 0 0 0 0 0
## 255 0 0 0 0 0 0
## 256 0 0 0 0 0 0
## 257 0 0 0 0 0 0
## 258 0 0 0 0 0 0
## 259 0 0 0 0 0 0
## 260 0 0 0 0 0 0
## 261 0 0 0 0 0 0
## 262 0 0 0 0 0 0
## 263 1 4 0 0 0 0
## 264 2 5 0 0 0 0
## 265 1 4 0 0 0 0
## 266 2 4 0 0 0 0
## 267 0 0 0 0 0 0
## 268 1 1 0 0 0 0
## 269 0 0 0 0 0 0
## 270 2 3 0 0 0 0
## 271 0 0 0 0 0 0
## 272 0 0 0 0 0 0
## 273 0 0 0 0 0 0
## 274 0 0 0 0 0 0
## 275 0 0 0 0 0 0
## 276 0 0 0 0 0 0
## 277 0 0 0 0 0 0
## 278 0 0 0 0 0 0
## 279 0 0 0 0 0 0
## 280 0 0 0 0 0 0
## 281 0 0 0 0 0 0
## 282 0 0 0 0 0 0
## 283 0 0 0 0 0 0
## 284 0 0 0 0 0 0
## 285 0 0 0 0 0 0
## 286 0 0 0 0 0 0
## 287 0 0 0 0 0 0
## 288 0 0 0 0 0 0
## 289 0 0 0 0 0 0
## 290 0 0 0 0 0 0
## 291 0 0 0 0 0 0
## 292 0 0 0 0 0 0
## 293 0 0 0 0 0 0
## 294 0 0 0 0 0 0
## 295 0 0 0 0 0 0
## 296 0 0 0 0 0 0
## 297 0 0 0 0 0 0
## 298 0 0 0 0 0 0
## 299 0 0 0 0 0 0
## 300 0 0 0 0 0 0
## 301 0 0 0 0 0 0
## 302 0 0 0 0 0 0
## 303 0 0 0 0 0 0
## 304 0 0 0 0 0 0
## 305 0 0 0 0 0 0
## 306 0 0 0 0 0 0
## 307 0 0 0 0 0 0
## 308 0 0 0 0 0 0
## 309 0 0 0 0 0 0
## 310 0 0 0 0 0 0
## 311 0 0 0 0 0 0
## 312 0 0 0 0 0 0
## 313 0 0 0 0 0 0
## 314 0 0 0 0 0 0
## 315 0 0 0 0 0 0
## 316 0 0 0 0 0 0
## 317 0 0 0 0 0 0
## 318 0 0 0 0 0 0
## 319 0 0 0 0 0 0
## 320 0 0 0 0 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 0 0 0 0 0 0
## SC_resolved_from
## 1
## 2
## 3
## 4
## 5
## 6
## 7
## 8
## 9
## 10
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19
## 20
## 21
## 22
## 23
## 24
## 25
## 26
## 27
## 28
## 29
## 30
## 31
## 32
## 33
## 34
## 35
## 36
## 37
## 38
## 39
## 40
## 41
## 42
## 43
## 44
## 45
## 46
## 47
## 48
## 49
## 50
## 51
## 52
## 53
## 54
## 55
## 56
## 57
## 58
## 59
## 60
## 61
## 62
## 63
## 64
## 65
## 66
## 67
## 68
## 69
## 70
## 71 Zheng
## 72
## 73
## 74
## 75
## 76
## 77
## 78
## 79
## 80
## 81
## 82
## 83
## 84
## 85
## 86
## 87
## 88
## 89
## 90
## 91
## 92
## 93
## 94
## 95
## 96
## 97
## 98
## 99
## 100
## 101
## 102
## 103
## 104
## 105
## 106
## 107
## 108
## 109
## 110
## 111
## 112
## 113
## 114
## 115
## 116
## 117
## 118
## 119
## 120
## 121
## 122
## 123
## 124
## 125
## 126
## 127
## 128
## 129
## 130
## 131
## 132
## 133
## 134
## 135
## 136
## 137
## 138
## 139
## 140
## 141
## 142
## 143
## 144
## 145
## 146
## 147
## 148
## 149
## 150
## 151
## 152
## 153
## 154
## 155
## 156
## 157
## 158
## 159
## 160
## 161
## 162
## 163
## 164
## 165
## 166
## 167
## 168 Zheng
## 169
## 170
## 171
## 172
## 173
## 174
## 175
## 176
## 177
## 178
## 179
## 180
## 181
## 182
## 183
## 184
## 185
## 186
## 187
## 188
## 189
## 190
## 191
## 192
## 193
## 194 Evaluation of a broadly reactive nucleic acid sequence based amplification assay for the detection of noroviruses in faecal material, Moore et al
## 195
## 196
## 197
## 198
## 199
## 200
## 201
## 202
## 203
## 204
## 205
## 206
## 207
## 208
## 209
## 210
## 211
## 212
## 213
## 214
## 215
## 216
## 217
## 218
## 219
## 220
## 221
## 222
## 223
## 224
## 225
## 226
## 227
## 228
## 229
## 230
## 231
## 232
## 233
## 234
## 235
## 236
## 237
## 238
## 239
## 240
## 241
## 242
## 243
## 244
## 245
## 246
## 247
## 248
## 249
## 250
## 251
## 252
## 253
## 254
## 255
## 256
## 257
## 258
## 259
## 260
## 261
## 262
## 263
## 264
## 265
## 266
## 267
## 268
## 269
## 270
## 271
## 272
## 273
## 274
## 275
## 276
## 277
## 278
## 279
## 280
## 281
## 282
## 283
## 284
## 285
## 286
## 287
## 288
## 289
## 290
## 291
## 292
## 293
## 294
## 295
## 296
## 297
## 298
## 299
## 300
## 301
## 302
## 303
## 304
## 305
## 306
## 307
## 308
## 309
## 310
## 311
## 312
## 313
## 314
## 315
## 316
## 317
## 318
## 319
## 320
## 321
## 322
## 323
## GGD CD SD new_ggd new_cd new_sd SD_resolved_from
## 1 0 0 0 0 0 0 NA
## 2 0 0 0 0 0 0 NA
## 3 0 0 0 0 0 0 NA
## 4 0 0 0 0 0 0 NA
## 5 0 0 0 0 0 0 NA
## 6 0 0 0 0 0 0 NA
## 7 0 0 0 0 0 0 NA
## 8 0 0 0 0 0 0 NA
## 9 0 0 0 0 0 0 NA
## 10 0 0 0 0 0 0 NA
## 11 0 0 0 0 0 0 NA
## 12 0 0 0 0 0 0 NA
## 13 0 0 0 0 0 0 NA
## 14 0 0 0 0 0 0 NA
## 15 0 0 0 0 0 0 NA
## 16 0 0 0 0 0 0 NA
## 17 0 0 0 0 0 0 NA
## 18 0 0 0 0 0 0 NA
## 19 0 0 0 0 0 0 NA
## 20 0 0 0 0 0 0 NA
## 21 0 0 0 0 0 0 NA
## 22 0 0 0 0 0 0 NA
## 23 0 0 0 0 0 0 NA
## 24 0 0 0 0 0 0 NA
## 25 0 0 0 0 0 0 NA
## 26 0 0 0 0 0 0 NA
## 27 0 0 0 0 0 0 NA
## 28 0 0 0 0 0 0 NA
## 29 0 0 0 0 0 0 NA
## 30 0 0 0 0 0 0 NA
## 31 0 0 0 0 0 0 NA
## 32 0 0 0 0 0 0 NA
## 33 0 0 0 0 0 0 NA
## 34 0 0 0 0 0 0 NA
## 35 0 0 0 0 0 0 NA
## 36 0 0 0 0 0 0 NA
## 37 0 0 0 0 0 0 NA
## 38 0 0 0 0 0 0 NA
## 39 0 0 0 0 0 0 NA
## 40 0 0 0 0 0 0 NA
## 41 0 0 0 0 0 0 NA
## 42 0 0 0 0 0 0 NA
## 43 0 0 0 0 0 0 NA
## 44 0 0 0 0 0 0 NA
## 45 0 0 0 0 0 0 NA
## 46 0 0 0 0 0 0 NA
## 47 0 0 0 0 0 0 NA
## 48 0 0 0 0 0 0 NA
## 49 0 0 0 0 0 0 NA
## 50 0 0 0 0 0 0 NA
## 51 0 0 0 0 0 0 NA
## 52 0 0 0 0 0 0 NA
## 53 0 0 0 0 0 0 NA
## 54 0 0 0 0 0 0 NA
## 55 0 0 0 0 0 0 NA
## 56 0 0 0 0 0 0 NA
## 57 0 0 0 0 0 0 NA
## 58 0 0 0 0 0 0 NA
## 59 0 0 0 0 0 0 NA
## 60 0 0 0 0 0 0 NA
## 61 0 0 0 0 0 0 NA
## 62 0 0 0 0 0 0 NA
## 63 0 0 0 0 0 0 NA
## 64 0 0 0 0 0 0 NA
## 65 0 0 0 0 0 0 NA
## 66 0 0 0 0 0 0 NA
## 67 0 0 0 0 0 0 NA
## 68 0 0 0 0 0 0 NA
## 69 0 0 0 0 0 0 NA
## 70 0 0 0 0 0 0 NA
## 71 0 0 0 0 0 0 NA
## 72 0 0 0 0 0 0 NA
## 73 0 0 0 0 0 0 NA
## 74 0 0 0 0 0 0 NA
## 75 0 0 0 0 0 0 NA
## 76 0 0 0 0 0 0 NA
## 77 0 0 0 0 0 0 NA
## 78 0 0 0 0 0 0 NA
## 79 0 0 0 0 0 0 NA
## 80 0 0 0 0 0 0 NA
## 81 0 0 0 0 0 0 NA
## 82 0 0 0 0 0 0 NA
## 83 0 0 0 0 0 0 NA
## 84 0 0 0 0 0 0 NA
## 85 0 0 0 0 0 0 NA
## 86 0 0 0 0 0 0 NA
## 87 0 0 0 0 0 0 NA
## 88 0 0 0 0 0 0 NA
## 89 0 0 0 0 0 0 NA
## 90 0 0 0 0 0 0 NA
## 91 0 0 0 0 0 0 NA
## 92 0 0 0 0 0 0 NA
## 93 0 0 0 0 0 0 NA
## 94 0 0 0 0 0 0 NA
## 95 0 0 0 0 0 0 NA
## 96 0 0 0 0 0 0 NA
## 97 0 0 0 0 0 0 NA
## 98 0 0 0 0 0 0 NA
## 99 0 0 0 0 0 0 NA
## 100 0 0 0 0 0 0 NA
## 101 0 0 0 0 0 0 NA
## 102 0 0 0 0 0 0 NA
## 103 2 4 0 0 0 0 NA
## 104 0 0 0 0 0 0 NA
## 105 0 0 0 0 0 0 NA
## 106 0 0 0 0 0 0 NA
## 107 0 0 0 0 0 0 NA
## 108 0 0 0 0 0 0 NA
## 109 0 0 0 0 0 0 NA
## 110 1 0 NLV/Steinbach/EG/2001/CA 0 0 0 NA
## 111 0 0 0 0 0 0 NA
## 112 0 0 0 0 0 0 NA
## 113 0 0 0 0 0 0 NA
## 114 0 0 0 0 0 0 NA
## 115 0 0 0 0 0 0 NA
## 116 0 0 0 0 0 0 NA
## 117 0 0 0 0 0 0 NA
## 118 0 0 0 0 0 0 NA
## 119 0 0 0 0 0 0 NA
## 120 0 0 0 0 0 0 NA
## 121 0 0 0 0 0 0 NA
## 122 0 0 0 0 0 0 NA
## 123 0 0 0 0 0 0 NA
## 124 0 0 0 0 0 0 NA
## 125 0 0 0 0 0 0 NA
## 126 0 0 0 0 0 0 NA
## 127 0 0 0 0 0 0 NA
## 128 0 0 0 0 0 0 NA
## 129 0 0 0 0 0 0 NA
## 130 0 0 0 0 0 0 NA
## 131 0 0 0 0 0 0 NA
## 132 0 0 0 0 0 0 NA
## 133 0 0 0 0 0 0 NA
## 134 1 0 0 0 0 0 NA
## 135 0 0 0 0 0 0 NA
## 136 0 0 0 0 0 0 NA
## 137 0 0 0 0 0 0 NA
## 138 0 0 0 0 0 0 NA
## 139 0 0 0 0 0 0 NA
## 140 0 0 0 0 0 0 NA
## 141 0 0 0 0 0 0 NA
## 142 0 0 0 0 0 0 NA
## 143 0 0 0 0 0 0 NA
## 144 0 0 0 0 0 0 NA
## 145 0 0 0 0 0 0 NA
## 146 0 0 0 0 0 0 NA
## 147 0 0 0 0 0 0 NA
## 148 0 0 0 0 0 0 NA
## 149 0 0 0 0 0 0 NA
## 150 0 0 0 0 0 0 NA
## 151 0 0 0 0 0 0 NA
## 152 0 0 0 0 0 0 NA
## 153 0 0 0 0 0 0 NA
## 154 0 0 0 0 0 0 NA
## 155 0 0 0 0 0 0 NA
## 156 0 0 0 0 0 0 NA
## 157 0 0 0 0 0 0 NA
## 158 0 0 0 0 0 0 NA
## 159 0 0 0 0 0 0 NA
## 160 0 0 0 0 0 0 NA
## 161 0 0 0 0 0 0 NA
## 162 0 0 0 0 0 0 NA
## 163 0 0 0 0 0 0 NA
## 164 0 0 0 0 0 0 NA
## 165 0 0 0 0 0 0 NA
## 166 0 0 0 0 0 0 NA
## 167 0 0 0 0 0 0 NA
## 168 0 0 0 0 0 0 NA
## 169 0 0 0 0 0 0 NA
## 170 0 0 0 0 0 0 NA
## 171 0 0 0 0 0 0 NA
## 172 0 0 0 0 0 0 NA
## 173 0 0 0 0 0 0 NA
## 174 0 0 0 0 0 0 NA
## 175 0 0 0 0 0 0 NA
## 176 0 0 0 0 0 0 NA
## 177 0 0 0 0 0 0 NA
## 178 0 0 0 0 0 0 NA
## 179 0 0 0 0 0 0 NA
## 180 0 0 0 0 0 0 NA
## 181 0 0 0 0 0 0 NA
## 182 0 0 0 0 0 0 NA
## 183 0 0 0 0 0 0 NA
## 184 0 0 0 0 0 0 NA
## 185 2 0 BCCDC03-008 0 0 0 NA
## 186 0 0 0 0 0 0 NA
## 187 0 0 0 0 0 0 NA
## 188 0 0 0 0 0 0 NA
## 189 0 0 0 0 0 0 NA
## 190 0 0 0 0 0 0 NA
## 191 0 0 0 0 0 0 NA
## 192 2 0 GII.b 0 0 0 NA
## 193 0 0 0 0 0 0 NA
## 194 0 0 0 0 0 0 NA
## 195 0 0 0 0 0 0 NA
## 196 0 0 0 0 0 0 NA
## 197 0 0 0 0 0 0 NA
## 198 0 0 0 0 0 0 NA
## 199 0 0 0 0 0 0 NA
## 200 0 0 0 0 0 0 NA
## 201 0 0 0 0 0 0 NA
## 202 0 0 0 0 0 0 NA
## 203 0 0 0 0 0 0 NA
## 204 0 0 0 0 0 0 NA
## 205 0 0 0 0 0 0 NA
## 206 0 0 0 0 0 0 NA
## 207 0 0 0 0 0 0 NA
## 208 0 0 0 0 0 0 NA
## 209 0 0 0 0 0 0 NA
## 210 0 0 0 0 0 0 NA
## 211 0 0 0 0 0 0 NA
## 212 0 0 0 0 0 0 NA
## 213 0 0 0 0 0 0 NA
## 214 0 0 0 0 0 0 NA
## 215 0 0 0 0 0 0 NA
## 216 0 0 0 0 0 0 NA
## 217 0 0 0 0 0 0 NA
## 218 0 0 0 0 0 0 NA
## 219 0 0 0 0 0 0 NA
## 220 0 0 0 0 0 0 NA
## 221 0 0 0 0 0 0 NA
## 222 0 0 0 0 0 0 NA
## 223 0 0 0 0 0 0 NA
## 224 0 0 0 0 0 0 NA
## 225 0 0 0 0 0 0 NA
## 226 0 0 0 0 0 0 NA
## 227 0 0 0 0 0 0 NA
## 228 0 0 0 0 0 0 NA
## 229 0 0 0 0 0 0 NA
## 230 0 0 0 0 0 0 NA
## 231 0 0 0 0 0 0 NA
## 232 0 0 0 0 0 0 NA
## 233 0 0 0 0 0 0 NA
## 234 0 0 0 0 0 0 NA
## 235 0 0 0 0 0 0 NA
## 236 0 0 0 0 0 0 NA
## 237 0 0 0 0 0 0 NA
## 238 0 0 0 0 0 0 NA
## 239 0 0 0 0 0 0 NA
## 240 0 0 0 0 0 0 NA
## 241 2 8 Amsterdam 0 0 0 NA
## 242 2 7 0 0 0 0 NA
## 243 0 0 0 0 0 0 NA
## 244 0 0 0 0 0 0 NA
## 245 0 0 0 0 0 0 NA
## 246 0 0 0 0 0 0 NA
## 247 0 0 0 0 0 0 NA
## 248 0 0 0 0 0 0 NA
## 249 0 0 0 0 0 0 NA
## 250 0 0 0 0 0 0 NA
## 251 0 0 0 0 0 0 NA
## 252 0 0 0 0 0 0 NA
## 253 0 0 0 0 0 0 NA
## 254 0 0 0 0 0 0 NA
## 255 0 0 0 0 0 0 NA
## 256 0 0 0 0 0 0 NA
## 257 0 0 0 0 0 0 NA
## 258 0 0 0 0 0 0 NA
## 259 0 0 0 0 0 0 NA
## 260 0 0 0 0 0 0 NA
## 261 0 0 0 0 0 0 NA
## 262 0 0 0 0 0 0 NA
## 263 0 0 0 0 0 0 NA
## 264 0 0 0 0 0 0 NA
## 265 0 0 0 0 0 0 NA
## 266 2 8 0 0 0 0 NA
## 267 0 0 0 0 0 0 NA
## 268 1 4 0 0 0 0 NA
## 269 0 0 0 0 0 0 NA
## 270 2 6 0 0 0 0 NA
## 271 0 0 0 0 0 0 NA
## 272 0 0 0 0 0 0 NA
## 273 0 0 0 0 0 0 NA
## 274 0 0 0 0 0 0 NA
## 275 0 0 0 0 0 0 NA
## 276 0 0 0 0 0 0 NA
## 277 0 0 0 0 0 0 NA
## 278 0 0 0 0 0 0 NA
## 279 0 0 0 0 0 0 NA
## 280 0 0 0 0 0 0 NA
## 281 0 0 0 0 0 0 NA
## 282 0 0 0 0 0 0 NA
## 283 0 0 0 0 0 0 NA
## 284 0 0 0 0 0 0 NA
## 285 0 0 0 0 0 0 NA
## 286 0 0 0 0 0 0 NA
## 287 0 0 0 0 0 0 NA
## 288 0 0 0 0 0 0 NA
## 289 0 0 0 0 0 0 NA
## 290 0 0 0 0 0 0 NA
## 291 0 0 0 0 0 0 NA
## 292 0 0 0 0 0 0 NA
## 293 0 0 0 0 0 0 NA
## 294 0 0 0 0 0 0 NA
## 295 0 0 0 0 0 0 NA
## 296 0 0 0 0 0 0 NA
## 297 0 0 0 0 0 0 NA
## 298 0 0 0 0 0 0 NA
## 299 0 0 0 0 0 0 NA
## 300 0 0 0 0 0 0 NA
## 301 0 0 0 0 0 0 NA
## 302 0 0 0 0 0 0 NA
## 303 0 0 0 0 0 0 NA
## 304 0 0 0 0 0 0 NA
## 305 0 0 0 0 0 0 NA
## 306 0 0 0 0 0 0 NA
## 307 0 0 0 0 0 0 NA
## 308 0 0 0 0 0 0 NA
## 309 0 0 0 0 0 0 NA
## 310 0 0 0 0 0 0 NA
## 311 0 0 0 0 0 0 NA
## 312 0 0 0 0 0 0 NA
## 313 0 0 0 0 0 0 NA
## 314 0 0 0 0 0 0 NA
## 315 0 0 0 0 0 0 NA
## 316 0 0 0 0 0 0 NA
## 317 0 0 0 0 0 0 NA
## 318 0 0 0 0 0 0 NA
## 319 0 0 0 0 0 0 NA
## 320 0 0 0 0 0 0 NA
## 321 0 0 0 0 0 0 NA
## 322 0 0 0 0 0 0 NA
## 323 0 0 0 0 0 0 NA
## StrainOther
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 GI/2, GII/5, GI/I
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 100% similar to the calicivirus strains of S031/94/UK
## 122 0
## 123 0
## 124 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase region and 96% (over 283 bp) was also seen w/strain Arg320
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 Additio l group 1, two additio l group 2
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 6 other strains mentioned in paper
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 same strain as outbreak 2 from this article
## 198 same strain as outbreak ID4 in hospital 12 mi away
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 GI/6 Sindlesham
## 242 GII/17, GIIb, GII/2, GI/4
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 GI/10, GI/13, GI/4, G1/14, GII/3, GII/5
## 267 0
## 268 GII/8
## 269 0
## 270 GII/5, GI/14, GI/5
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase region and 96% (over 283 bp) was also seen w/strain Arg320
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## strainother_rc
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 specimens from oyster-related outbreak in FL, MD nursing home, and person who packed implicated oysters all had different strains from above strain and from each other
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 100% similar to the calicivirus strains of S031/94/UK
## 122 0
## 123 0
## 124 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase re
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 closest relative is SRSV/Apeldoorn/97/NET w/98% nucleotide identity over 219 bp of the polymerase re
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## gge ce se SE_resolved_from ggf cf sf ggg
## 1 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0
## 17 0 0 0 0 0 0 0
## 18 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0
## 21 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0
## 45 0 0 0 0 0 0 0
## 46 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0
## 50 0 0 0 0 0 0 0
## 51 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0
## 54 0 0 0 0 0 0 0
## 55 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0
## 57 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0
## 102 0 0 0 0 0 0 0
## 103 1 2 0 2 5 0 1
## 104 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0
## 113 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0
## 122 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0
## 129 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0
## 134 1 0 0 2 0 0 2
## 135 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0
## 159 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0
## 171 0 0 0 0 0 0 0
## 172 0 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0
## 185 2 4 BCCDC04-002 abstraction of StrainOther 2 5 BCCDC03-013 2
## 186 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0
## 189 0 0 0 0 0 0 0
## 190 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0
## 234 0 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0
## 236 0 0 0 0 0 0 0
## 237 0 0 0 0 0 0 0
## 238 0 0 0 0 0 0 0
## 239 0 0 0 0 0 0 0
## 240 0 0 0 0 0 0 0
## 241 1 6 Sindlesham abstraction of StrainOther 0 0 0 0
## 242 2 17 0 2 2 0 1
## 243 0 0 0 0 0 0 0
## 244 0 0 0 0 0 0 0
## 245 0 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0
## 247 0 0 0 0 0 0 0
## 248 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0
## 251 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0
## 253 0 0 0 0 0 0 0
## 254 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 0
## 256 0 0 0 0 0 0 0
## 257 0 0 0 0 0 0 0
## 258 0 0 0 0 0 0 0
## 259 0 0 0 0 0 0 0
## 260 0 0 0 0 0 0 0
## 261 0 0 0 0 0 0 0
## 262 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0
## 265 0 0 0 0 0 0 0
## 266 1 10 0 1 13 0 1
## 267 0 0 0 0 0 0 0
## 268 2 8 0 0 0 0 0
## 269 0 0 0 0 0 0 0
## 270 2 5 0 1 14 0 1
## 271 0 0 0 0 0 0 0
## 272 0 0 0 0 0 0 0
## 273 0 0 0 0 0 0 0
## 274 0 0 0 0 0 0 0
## 275 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 0
## 279 0 0 0 0 0 0 0
## 280 0 0 0 0 0 0 0
## 281 0 0 0 0 0 0 0
## 282 0 0 0 0 0 0 0
## 283 0 0 0 0 0 0 0
## 284 0 0 0 0 0 0 0
## 285 0 0 0 0 0 0 0
## 286 0 0 0 0 0 0 0
## 287 0 0 0 0 0 0 0
## 288 0 0 0 0 0 0 0
## 289 0 0 0 0 0 0 0
## 290 0 0 0 0 0 0 0
## 291 0 0 0 0 0 0 0
## 292 0 0 0 0 0 0 0
## 293 0 0 0 0 0 0 0
## 294 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0
## 298 0 0 0 0 0 0 0
## 299 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0
## 301 0 0 0 0 0 0 0
## 302 0 0 0 0 0 0 0
## 303 0 0 0 0 0 0 0
## 304 0 0 0 0 0 0 0
## 305 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0
## 307 0 0 0 0 0 0 0
## 308 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0
## 310 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0
## 312 0 0 0 0 0 0 0
## 313 0 0 0 0 0 0 0
## 314 0 0 0 0 0 0 0
## 315 0 0 0 0 0 0 0
## 316 0 0 0 0 0 0 0
## 317 0 0 0 0 0 0 0
## 318 0 0 0 0 0 0 0
## 319 0 0 0 0 0 0 0
## 320 0 0 0 0 0 0 0
## 321 0 0 0 0 0 0 0
## 322 0 0 0 0 0 0 0
## 323 0 0 0 0 0 0 0
## cg sg ggh ch sh ggi ci si ggj cj
## 1 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0 0 0
## 4 0 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 0 0 0 0
## 6 0 0 0 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0 0 0 0
## 8 0 0 0 0 0 0 0 0 0 0
## 9 0 0 0 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 0 0 0 0
## 12 0 0 0 0 0 0 0 0 0 0
## 13 0 0 0 0 0 0 0 0 0 0
## 14 0 0 0 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 0 0 0 0
## 17 0 0 0 0 0 0 0 0 0 0
## 18 0 0 0 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0 0 0 0
## 21 0 0 0 0 0 0 0 0 0 0
## 22 0 0 0 0 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0 0 0 0
## 24 0 0 0 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0 0 0 0
## 28 0 0 0 0 0 0 0 0 0 0
## 29 0 0 0 0 0 0 0 0 0 0
## 30 0 0 0 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 0 0 0 0
## 34 0 0 0 0 0 0 0 0 0 0
## 35 0 0 0 0 0 0 0 0 0 0
## 36 0 0 0 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 0 0 0
## 39 0 0 0 0 0 0 0 0 0 0
## 40 0 0 0 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0 0 0 0
## 43 0 0 0 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0 0 0 0
## 45 0 0 0 0 0 0 0 0 0 0
## 46 0 0 0 0 0 0 0 0 0 0
## 47 0 0 0 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 0 0 0 0
## 50 0 0 0 0 0 0 0 0 0 0
## 51 0 0 0 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0 0 0 0
## 54 0 0 0 0 0 0 0 0 0 0
## 55 0 0 0 0 0 0 0 0 0 0
## 56 0 0 0 0 0 0 0 0 0 0
## 57 0 0 0 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0 0 0 0
## 63 0 0 0 0 0 0 0 0 0 0
## 64 0 0 0 0 0 0 0 0 0 0
## 65 0 0 0 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 0 0 0 0
## 67 0 0 0 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 0 0 0 0
## 69 0 0 0 0 0 0 0 0 0 0
## 70 0 0 0 0 0 0 0 0 0 0
## 71 0 0 0 0 0 0 0 0 0 0
## 72 0 0 0 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0 0 0 0
## 74 0 0 0 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0 0 0 0
## 76 0 0 0 0 0 0 0 0 0 0
## 77 0 0 0 0 0 0 0 0 0 0
## 78 0 0 0 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0 0 0 0
## 80 0 0 0 0 0 0 0 0 0 0
## 81 0 0 0 0 0 0 0 0 0 0
## 82 0 0 0 0 0 0 0 0 0 0
## 83 0 0 0 0 0 0 0 0 0 0
## 84 0 0 0 0 0 0 0 0 0 0
## 85 0 0 0 0 0 0 0 0 0 0
## 86 0 0 0 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 0 0 0 0
## 89 0 0 0 0 0 0 0 0 0 0
## 90 0 0 0 0 0 0 0 0 0 0
## 91 0 0 0 0 0 0 0 0 0 0
## 92 0 0 0 0 0 0 0 0 0 0
## 93 0 0 0 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0 0 0 0
## 95 0 0 0 0 0 0 0 0 0 0
## 96 0 0 0 0 0 0 0 0 0 0
## 97 0 0 0 0 0 0 0 0 0 0
## 98 0 0 0 0 0 0 0 0 0 0
## 99 0 0 0 0 0 0 0 0 0 0
## 100 0 0 0 0 0 0 0 0 0 0
## 101 0 0 0 0 0 0 0 0 0 0
## 102 0 0 0 0 0 0 0 0 0 0
## 103 1 0 0 0 0 0 0 0 0 0
## 104 0 0 0 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0 0 0 0
## 106 0 0 0 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0 0 0 0
## 110 0 0 0 0 0 0 0 0 0 0
## 111 0 0 0 0 0 0 0 0 0 0
## 112 0 0 0 0 0 0 0 0 0 0
## 113 0 0 0 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0 0 0 0
## 118 0 0 0 0 0 0 0 0 0 0
## 119 0 0 0 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0 0 0 0
## 122 0 0 0 0 0 0 0 0 0 0
## 123 0 0 0 0 0 0 0 0 0 0
## 124 0 0 0 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0 0 0 0
## 127 0 0 0 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0 0 0 0
## 129 0 0 0 0 0 0 0 0 0 0
## 130 0 0 0 0 0 0 0 0 0 0
## 131 0 0 0 0 0 0 0 0 0 0
## 132 0 0 0 0 0 0 0 0 0 0
## 133 0 0 0 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0 0 0 0
## 141 0 0 0 0 0 0 0 0 0 0
## 142 0 0 0 0 0 0 0 0 0 0
## 143 0 0 0 0 0 0 0 0 0 0
## 144 0 0 0 0 0 0 0 0 0 0
## 145 0 0 0 0 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0 0 0 0
## 148 0 0 0 0 0 0 0 0 0 0
## 149 0 0 0 0 0 0 0 0 0 0
## 150 0 0 0 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0 0 0 0
## 153 0 0 0 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0 0 0 0
## 155 0 0 0 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 0 0 0 0
## 157 0 0 0 0 0 0 0 0 0 0
## 158 0 0 0 0 0 0 0 0 0 0
## 159 0 0 0 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0 0 0 0
## 165 0 0 0 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0 0 0 0
## 170 0 0 0 0 0 0 0 0 0 0
## 171 0 0 0 0 0 0 0 0 0 0
## 172 0 0 0 0 0 0 0 0 0 0
## 173 0 0 0 0 0 0 0 0 0 0
## 174 0 0 0 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0 0 0 0
## 176 0 0 0 0 0 0 0 0 0 0
## 177 0 0 0 0 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0 0 0 0
## 181 0 0 0 0 0 0 0 0 0 0
## 182 0 0 0 0 0 0 0 0 0 0
## 183 0 0 0 0 0 0 0 0 0 0
## 184 0 0 0 0 0 0 0 0 0 0
## 185 3 BCCDC04-006 2 4 BCCDC03-032 1 1 BCCDC04-003 1 2
## 186 0 0 0 0 0 0 0 0 0 0
## 187 0 0 0 0 0 0 0 0 0 0
## 188 0 0 0 0 0 0 0 0 0 0
## 189 0 0 0 0 0 0 0 0 0 0
## 190 0 0 0 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0 0 0 0
## 201 0 0 0 0 0 0 0 0 0 0
## 202 0 0 0 0 0 0 0 0 0 0
## 203 0 0 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0 0 0 0
## 205 0 0 0 0 0 0 0 0 0 0
## 206 0 0 0 0 0 0 0 0 0 0
## 207 0 0 0 0 0 0 0 0 0 0
## 208 0 0 0 0 0 0 0 0 0 0
## 209 0 0 0 0 0 0 0 0 0 0
## 210 0 0 0 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0 0 0 0
## 212 0 0 0 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 0 0 0 0
## 217 0 0 0 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0 0 0 0
## 220 0 0 0 0 0 0 0 0 0 0
## 221 0 0 0 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0 0 0 0
## 223 0 0 0 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0 0 0 0
## 227 0 0 0 0 0 0 0 0 0 0
## 228 0 0 0 0 0 0 0 0 0 0
## 229 0 0 0 0 0 0 0 0 0 0
## 230 0 0 0 0 0 0 0 0 0 0
## 231 0 0 0 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0 0 0 0
## 234 0 0 0 0 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0 0 0 0
## 236 0 0 0 0 0 0 0 0 0 0
## 237 0 0 0 0 0 0 0 0 0 0
## 238 0 0 0 0 0 0 0 0 0 0
## 239 0 0 0 0 0 0 0 0 0 0
## 240 0 0 0 0 0 0 0 0 0 0
## 241 0 0 0 0 0 0 0 0 0 0
## 242 4 0 2 0 GIIb 0 0 0 0 0
## 243 0 0 0 0 0 0 0 0 0 0
## 244 0 0 0 0 0 0 0 0 0 0
## 245 0 0 0 0 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0 0 0 0
## 247 0 0 0 0 0 0 0 0 0 0
## 248 0 0 0 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0 0 0 0
## 251 0 0 0 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0 0 0 0
## 253 0 0 0 0 0 0 0 0 0 0
## 254 0 0 0 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 0 0 0 0
## 256 0 0 0 0 0 0 0 0 0 0
## 257 0 0 0 0 0 0 0 0 0 0
## 258 0 0 0 0 0 0 0 0 0 0
## 259 0 0 0 0 0 0 0 0 0 0
## 260 0 0 0 0 0 0 0 0 0 0
## 261 0 0 0 0 0 0 0 0 0 0
## 262 0 0 0 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 0 0 0
## 265 0 0 0 0 0 0 0 0 0 0
## 266 4 0 1 14 0 2 3 0 2 5
## 267 0 0 0 0 0 0 0 0 0 0
## 268 0 0 0 0 0 0 0 0 0 0
## 269 0 0 0 0 0 0 0 0 0 0
## 270 5 0 0 0 0 0 0 0 0 0
## 271 0 0 0 0 0 0 0 0 0 0
## 272 0 0 0 0 0 0 0 0 0 0
## 273 0 0 0 0 0 0 0 0 0 0
## 274 0 0 0 0 0 0 0 0 0 0
## 275 0 0 0 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 0 0 0 0
## 279 0 0 0 0 0 0 0 0 0 0
## 280 0 0 0 0 0 0 0 0 0 0
## 281 0 0 0 0 0 0 0 0 0 0
## 282 0 0 0 0 0 0 0 0 0 0
## 283 0 0 0 0 0 0 0 0 0 0
## 284 0 0 0 0 0 0 0 0 0 0
## 285 0 0 0 0 0 0 0 0 0 0
## 286 0 0 0 0 0 0 0 0 0 0
## 287 0 0 0 0 0 0 0 0 0 0
## 288 0 0 0 0 0 0 0 0 0 0
## 289 0 0 0 0 0 0 0 0 0 0
## 290 0 0 0 0 0 0 0 0 0 0
## 291 0 0 0 0 0 0 0 0 0 0
## 292 0 0 0 0 0 0 0 0 0 0
## 293 0 0 0 0 0 0 0 0 0 0
## 294 0 0 0 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0 0 0 0
## 298 0 0 0 0 0 0 0 0 0 0
## 299 0 0 0 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0 0 0 0
## 301 0 0 0 0 0 0 0 0 0 0
## 302 0 0 0 0 0 0 0 0 0 0
## 303 0 0 0 0 0 0 0 0 0 0
## 304 0 0 0 0 0 0 0 0 0 0
## 305 0 0 0 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0 0 0 0
## 307 0 0 0 0 0 0 0 0 0 0
## 308 0 0 0 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0 0 0 0
## 310 0 0 0 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0 0 0 0
## 312 0 0 0 0 0 0 0 0 0 0
## 313 0 0 0 0 0 0 0 0 0 0
## 314 0 0 0 0 0 0 0 0 0 0
## 315 0 0 0 0 0 0 0 0 0 0
## 316 0 0 0 0 0 0 0 0 0 0
## 317 0 0 0 0 0 0 0 0 0 0
## 318 0 0 0 0 0 0 0 0 0 0
## 319 0 0 0 0 0 0 0 0 0 0
## 320 0 0 0 0 0 0 0 0 0 0
## 321 0 0 0 0 0 0 0 0 0 0
## 322 0 0 0 0 0 0 0 0 0 0
## 323 0 0 0 0 0 0 0 0 0 0
## sj Country2
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 United Kingdom
## 5 0 United Kingdom
## 6 0 United Kingdom
## 7 0 United Kingdom
## 8 0 United Kingdom
## 9 0 United Kingdom
## 10 0 United Kingdom
## 11 0 United Kingdom
## 12 0 United Kingdom
## 13 0 United Kingdom
## 14 0 United Kingdom
## 15 0 United Kingdom
## 16 0 United Kingdom
## 17 0 0
## 18 0 Hungary
## 19 0 Brazil
## 20 0 India
## 21 0 Australia
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 Sweden
## 26 0 0
## 27 0 New Zealand
## 28 0 Sweden
## 29 0 Sweden
## 30 0 Sweden
## 31 0 Sweden
## 32 0 Sweden
## 33 0 Sweden
## 34 0 Sweden
## 35 0 Sweden
## 36 0 Sweden
## 37 0 Sweden
## 38 0 Sweden
## 39 0 Sweden
## 40 0 Sweden
## 41 0 Sweden
## 42 0 Sweden
## 43 0 Sweden
## 44 0 Sweden
## 45 0 Germany
## 46 0 United Kingdom
## 47 0 United Kingdom
## 48 0 Hungary
## 49 0 Hungary
## 50 0 Spain
## 51 0 Belgium
## 52 0 Australia
## 53 0 Australia
## 54 0 Ca da
## 55 0 Belgium
## 56 0 Israel
## 57 0 Australia
## 58 0 Australia
## 59 0 Afghanistan
## 60 0 0
## 61 0 0
## 62 0 Australia
## 63 0 0
## 64 0 United Kingdom
## 65 0 United Kingdom
## 66 0 United Kingdom
## 67 0 France, Switzerland
## 68 0 Switzerland
## 69 0 Israel
## 70 0 Israel
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 France
## 89 0 Sweden
## 90 0 Sweden
## 91 0 Sweden
## 92 0 Sweden
## 93 0 Sweden
## 94 0 Sweden
## 95 0 Sweden
## 96 0 Sweden
## 97 0 Sweden
## 98 0 Sweden
## 99 0 Sweden
## 100 0 Sweden
## 101 0 Italy
## 102 0 Western Mediterranean
## 103 0 0
## 104 0 0
## 105 0 Sweden
## 106 0 United Kingdom
## 107 0 United Kingdom
## 108 0 United Kingdom
## 109 0 United Kingdom
## 110 0 Italy
## 111 0 Hungary
## 112 0 Australia
## 113 0 Australia
## 114 0 Spain
## 115 0 Germany
## 116 0 Germany
## 117 0 Germany
## 118 0 Germany
## 119 0 Germany
## 120 0 Germany
## 121 0 0
## 122 0 0
## 123 0 0
## 124 0 Australia
## 125 0 Australia
## 126 0 Australia
## 127 0 0
## 128 0 0
## 129 0 0
## 130 0 0
## 131 0 Italy
## 132 0 The Netherlands
## 133 0 The Netherlands
## 134 0 United Kingdom
## 135 0 Australia
## 136 0 Australia
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 Chi
## 141 0 Denmark
## 142 0 Denmark
## 143 0 Denmark
## 144 0 Hungary
## 145 0 Ca da
## 146 0 Israel
## 147 0 Israel
## 148 0 0
## 149 0 0
## 150 0 Sweden
## 151 0 Sweden
## 152 0 Sweden
## 153 0 Sweden
## 154 0 Sweden
## 155 0 Sweden
## 156 0 Sweden
## 157 0 Sweden
## 158 0 Sweden
## 159 0 Sweden
## 160 0 Sweden
## 161 0 Sweden
## 162 0 Sweden
## 163 0 Sweden
## 164 0 Sweden
## 165 0 Sweden
## 166 0 0
## 167 0 Finland
## 168 0 Italy
## 169 0 Hungary
## 170 0 Hungary
## 171 0 Sweden
## 172 0 Australia
## 173 0 Australia
## 174 0 Brazil
## 175 0 0
## 176 0 The Netherlands
## 177 0 The Netherlands
## 178 0 Bermuda
## 179 0 Australia
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 BCCDC04-008 Ca da
## 186 0 United Kingdom
## 187 0 United Kingdom
## 188 0 United Kingdom
## 189 0 United Kingdom
## 190 0 United Kingdom
## 191 0 United Kingdom
## 192 0 France
## 193 0 United Kingdom
## 194 0 Switzerland
## 195 0 Switzerland
## 196 0 Switzerland
## 197 0 United Kingdom
## 198 0 United Kingdom
## 199 0 Israel
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 New Zealand
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 Switzerland
## 239 0 0
## 240 0 Finland
## 241 0 Italy, France
## 242 0 France
## 243 0 New Zealand
## 244 0 Sweden
## 245 0 Sweden
## 246 0 Sweden
## 247 0 Sweden
## 248 0 Sweden
## 249 0 Sweden
## 250 0 Sweden
## 251 0 Sweden
## 252 0 Sweden
## 253 0 Sweden
## 254 0 Sweden
## 255 0 Sweden
## 256 0 Sweden
## 257 0 Sweden
## 258 0 Sweden
## 259 0 Ireland
## 260 0 0
## 261 0 Australia
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 Spain
## 272 0 United Kingdom
## 273 0 United Kingdom
## 274 0 0
## 275 0 Greece
## 276 0 0
## 277 0 Hungary
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 Germany
## 282 0 Germany
## 283 0 Germany
## 284 0 Germany
## 285 0 Germany
## 286 0 Germany
## 287 0 Germany
## 288 0 Germany
## 289 0 Germany
## 290 0 Germany
## 291 0 France
## 292 0 Germany
## 293 0 Australia
## 294 0 0
## 295 0 Australia
## 296 0 Australia
## 297 0 Australia
## 298 0 Australia
## 299 0 Australia
## 300 0 Spain
## 301 0 Spain
## 302 0 Spain
## 303 0 Spain
## 304 0 Spain
## 305 0 Spain
## 306 0 Spain
## 307 0 Spain
## 308 0 Spain
## 309 0 Spain
## 310 0 Spain
## 311 0 Spain
## 312 0 Spain
## 313 0 0
## 314 0 Chi
## 315 0 Chi
## 316 0 0
## 317 0 Denmark
## 318 0 Netherlands
## 319 0 Netherlands
## 320 0 Netherlands
## 321 0 Netherlands
## 322 0 0
## 323 0 0
## Veh1_D_2
## 1 0
## 2 Oyster
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 Contami ted oyster
## 18 Menu A
## 19 0
## 20 sandwiches
## 21 0
## 22 0
## 23 0
## 24 0
## 25 Pink raspberry cakes
## 26 coleslaw
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 Drinking water
## 34 0
## 35 Drinking water
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 index cases were patients from the community who were admitted w/symptoms
## 46 child who vomited in nursery school sandpit
## 47 0
## 48 0
## 49 0
## 50 Shellfish: Oysters, bi-valves
## 51 Bread
## 52 0
## 53 0
## 54 salad
## 55 chinese take out
## 56 0
## 57 0
## 58 Ill nursing home patient
## 59 0
## 60 water well
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 Infected persons
## 69 0
## 70 0
## 71 Bivalves
## 72 0
## 73 0
## 74 0
## 75 Oyster
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 oysters (Crassostrea gigas)
## 89 0
## 90 Drinking water
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 Tap water in Taranto City
## 102 Passengers remaining on board for a second week
## 103 Oyster
## 104 Oyster
## 105 contami ted drinking water
## 106 kitchen staff member taken ill during the preparation of the meals
## 107 0
## 108 0
## 109 index case infected in community before entering hospital
## 110 Mussels
## 111 0
## 112 0
## 113 0
## 114 Sandwich
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Shellfish
## 122 Sandwich
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 drinking water
## 129 0
## 130 0
## 131 main water pipe
## 132 0
## 133 0
## 134 Water
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 Frozen Raspberries
## 142 Frozen Raspberries
## 143 Frozen Raspberries
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 Drinking water
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 Drinking water
## 166 Packaged delicatessen meat
## 167 wading pool water contami ted with norovirus and astrovirus
## 168 fecally contami ted non-drinking water connected to drinking-water systems
## 169 0
## 170 0
## 171 Lake water
## 172 Oyster
## 173 0
## 174 0
## 175 Oyster
## 176 0
## 177 0
## 178 Water
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 Oysters
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 Oyster
## 193 male restroom
## 194 community water supply from lake
## 195 infected person
## 196 Infected person
## 197 diabetic man with acute GI
## 198 case from previous outbreak becamse index case for this outbreak
## 199 0
## 200 0
## 201 Oyster
## 202 0
## 203 0
## 204 0
## 205 Oyster
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 drinking water supply
## 215 0
## 216 oyster
## 217 0
## 218 0
## 219 oyster
## 220 0
## 221 oyster
## 222 oyster
## 223 0
## 224 oyster
## 225 0
## 226 oyster
## 227 oyster
## 228 Oyster
## 229 Oyster
## 230 0
## 231 0
## 232 0
## 233 0
## 234 Oyster
## 235 0
## 236 0
## 237 ice
## 238 0
## 239 Salad (bar itmes)
## 240 0
## 241 Oyster
## 242 Oysters
## 243 0
## 244 Drinking water
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 the index case was a patient admitted with vomiting and diarrhoea into the open ward
## 260 0
## 261 0
## 262 Oyster
## 263 Oyster
## 264 Oyster
## 265 Oyster
## 266 Oyster
## 267 Oyster
## 268 Oyster
## 269 Oyster
## 270 Oyster
## 271 index case was in the rehabilitation unit
## 272 vomitus in kitchen from staff worker
## 273 0
## 274 Pastry prepared by a specific confectionery
## 275 Well water
## 276 0
## 277 0
## 278 0
## 279 Index vomit
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 Drinking water
## 292 0
## 293 Oysters
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 carpet
## 317 oyster
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## Veh2_D_2 Veh3_D_2
## 1 0 0
## 2 0 0
## 3 0 0
## 4 0 0
## 5 0 0
## 6 0 0
## 7 0 0
## 8 0 0
## 9 0 0
## 10 0 0
## 11 0 0
## 12 0 0
## 13 0 0
## 14 0 0
## 15 0 0
## 16 0 0
## 17 0 0
## 18 0 0
## 19 0 0
## 20 0 0
## 21 0 0
## 22 0 0
## 23 0 0
## 24 0 0
## 25 0 0
## 26 guest bathroom 0
## 27 0 0
## 28 0 0
## 29 0 0
## 30 0 0
## 31 0 0
## 32 0 0
## 33 0 0
## 34 0 0
## 35 0 0
## 36 0 0
## 37 0 0
## 38 0 0
## 39 0 0
## 40 0 0
## 41 0 0
## 42 0 0
## 43 0 0
## 44 0 0
## 45 0 0
## 46 0 0
## 47 0 0
## 48 0 0
## 49 0 0
## 50 0 0
## 51 0 0
## 52 0 0
## 53 0 0
## 54 0 0
## 55 0 0
## 56 0 0
## 57 0 0
## 58 0 0
## 59 0 0
## 60 0 0
## 61 0 0
## 62 0 0
## 63 0 0
## 64 0 0
## 65 0 0
## 66 0 0
## 67 0 0
## 68 0 0
## 69 0 0
## 70 0 0
## 71 0 0
## 72 0 0
## 73 0 0
## 74 0 0
## 75 0 0
## 76 0 0
## 77 0 0
## 78 0 0
## 79 0 0
## 80 0 0
## 81 0 0
## 82 0 0
## 83 0 0
## 84 0 0
## 85 0 0
## 86 0 0
## 87 0 0
## 88 0 0
## 89 0 0
## 90 0 0
## 91 0 0
## 92 0 0
## 93 0 0
## 94 0 0
## 95 0 0
## 96 0 0
## 97 0 0
## 98 0 0
## 99 0 0
## 100 0 0
## 101 0 0
## 102 0 0
## 103 0 0
## 104 0 0
## 105 0 0
## 106 0 0
## 107 0 0
## 108 0 0
## 109 0 0
## 110 0 0
## 111 0 0
## 112 0 0
## 113 0 0
## 114 Salad 0
## 115 0 0
## 116 0 0
## 117 0 0
## 118 0 0
## 119 0 0
## 120 0 0
## 121 0 0
## 122 Salad 0
## 123 0 0
## 124 0 0
## 125 0 0
## 126 0 0
## 127 0 0
## 128 ice house salad
## 129 0 0
## 130 0 0
## 131 0 0
## 132 0 0
## 133 0 0
## 134 Custard Slices 0
## 135 0 0
## 136 0 0
## 137 0 0
## 138 0 0
## 139 0 0
## 140 0 0
## 141 0 0
## 142 0 0
## 143 0 0
## 144 0 0
## 145 0 0
## 146 0 0
## 147 0 0
## 148 0 0
## 149 0 0
## 150 0 0
## 151 0 0
## 152 0 0
## 153 0 0
## 154 0 0
## 155 0 0
## 156 0 0
## 157 0 0
## 158 0 0
## 159 0 0
## 160 0 0
## 161 0 0
## 162 0 0
## 163 0 0
## 164 0 0
## 165 0 0
## 166 previously ill employee handled meat barehanded 0
## 167 0 0
## 168 0 0
## 169 0 0
## 170 0 0
## 171 0 0
## 172 0 0
## 173 0 0
## 174 0 0
## 175 0 0
## 176 0 0
## 177 0 0
## 178 0 0
## 179 0 0
## 180 0 0
## 181 0 0
## 182 0 0
## 183 0 0
## 184 0 0
## 185 0 0
## 186 0 0
## 187 0 0
## 188 0 0
## 189 0 0
## 190 0 0
## 191 0 0
## 192 0 0
## 193 areas contami ted with index case vomit 0
## 194 0 0
## 195 0 0
## 196 0 0
## 197 0 0
## 198 0 0
## 199 0 0
## 200 0 0
## 201 0 0
## 202 0 0
## 203 0 0
## 204 0 0
## 205 0 0
## 206 0 0
## 207 0 0
## 208 0 0
## 209 0 0
## 210 0 0
## 211 0 0
## 212 0 0
## 213 0 0
## 214 0 0
## 215 0 0
## 216 0 0
## 217 0 0
## 218 0 0
## 219 0 0
## 220 0 0
## 221 0 0
## 222 0 0
## 223 0 0
## 224 0 0
## 225 0 0
## 226 0 0
## 227 0 0
## 228 0 0
## 229 0 0
## 230 0 0
## 231 0 0
## 232 0 0
## 233 0 0
## 234 0 0
## 235 0 0
## 236 0 0
## 237 0 0
## 238 0 0
## 239 0 0
## 240 0 0
## 241 0 0
## 242 0 0
## 243 0 0
## 244 0 0
## 245 0 0
## 246 0 0
## 247 0 0
## 248 0 0
## 249 0 0
## 250 0 0
## 251 0 0
## 252 0 0
## 253 0 0
## 254 0 0
## 255 0 0
## 256 0 0
## 257 0 0
## 258 0 0
## 259 0 0
## 260 0 0
## 261 0 0
## 262 0 0
## 263 0 0
## 264 0 0
## 265 0 0
## 266 0 0
## 267 0 0
## 268 0 0
## 269 0 0
## 270 0 0
## 271 0 0
## 272 0 0
## 273 0 0
## 274 0 0
## 275 0 0
## 276 0 0
## 277 0 0
## 278 0 0
## 279 0 0
## 280 0 0
## 281 0 0
## 282 0 0
## 283 0 0
## 284 0 0
## 285 0 0
## 286 0 0
## 287 0 0
## 288 0 0
## 289 0 0
## 290 0 0
## 291 0 0
## 292 0 0
## 293 0 0
## 294 0 0
## 295 0 0
## 296 0 0
## 297 0 0
## 298 0 0
## 299 0 0
## 300 0 0
## 301 0 0
## 302 0 0
## 303 0 0
## 304 0 0
## 305 0 0
## 306 0 0
## 307 0 0
## 308 0 0
## 309 0 0
## 310 0 0
## 311 0 0
## 312 0 0
## 313 0 0
## 314 0 0
## 315 0 0
## 316 0 0
## 317 0 0
## 318 0 0
## 319 0 0
## 320 0 0
## 321 0 0
## 322 0 0
## 323 0 0
## Action2_2
## 1 0
## 2 harvest area closure, oyster recall, release of HAN
## 3 cleaning of ship
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 Trace contaimi ted oysters back to source, attempted forward tracing to prevent further infection
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 staff told not to work for 1 day after asymptomatic; staff instructed on hygiene & hand washing; hotel closed 8 h for thorough cleaning of food service areas & rooms, new guests not accepted til then; cold food requiring hand-prep excluded from menu
## 27 paid sick leave for staff, cleaning service was involved immediately and a rigorous cleaning regimen; promotion of the importance of hand hygiene was performed on the ward to educate staff, patients and visitors
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 In cardiology, educatio l interventions concerning the prevention of NoV transmission
## 46 0
## 47 0
## 48 0
## 49 0
## 50 Restaurant closed as a precaution
## 51 Hygenic measures reinforced
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 move and replace septic system
## 61 0
## 62 infection control measures, ward closures
## 63 quarantine
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 staff sick policy implemented, closure of admissions, onging surviellence
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 An extra chlori tion treatment for household water supplies on 34th week of the year
## 102 At end of 4th cruise all passengers disembarked and entire ship cleaned with chlorine disinfectant; also hygiene measure introduced in galley
## 103 0
## 104 0
## 105 guidelines on kitchen hygiene and environmental cleaning were given; recommendations on boiling all water used for drinking and food preparation; facilities were closed for >l week at the end of June
## 106 0
## 107 hospital was closed to all new admissions
## 108 0
## 109 0
## 110 0
## 111 0
## 112 extensive staff and hospital policy to reduce further transmission: handwashing, restricted movement of patients, linen cleaning, visitor limitations etc.
## 113 admissions suspended, handwashing, enviornmental cleaning, visitor restriction, linen cleaning, staff policy etc.
## 114 Told not to return to work for 48 hours, hand washing techniques emphasized
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 Bay was closed to harvesting, voluntary recall of oysters caught at the infected bays
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 restaurant closed
## 129 0
## 130 0
## 131 bottled water only, service water pipe
## 132 0
## 133 Staff policy removed ill food handlers from work.
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 infection control team implemented the use of Alcohol based hand rub and direct observation of utiliziation for staff members, enviornmental cleaning, seclution of cases
## 141 withdrawn from market
## 142 withdrawn from market,
## 143 withdrawn from market, public health warning
## 144 0
## 145 Patient education, handwashing, enviornmental cleaning, cohort isolation
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 Closed the wading pool, pool was emptied, refilled with municipal water and shock chlori ted, water replaced and chlori ted again twice
## 168 0
## 169 0
## 170 0
## 171 Warnings against bathing put up
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 terrace-tank hyperchlori ted
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 clean with hypochlorite solution, steam clean
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 emergency clori tion of the water supply, staff policy for illness, hand hygiene signs.
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 food discarded, hyperclori tion of water supply, enviornmental disinfection
## 238 hand hygiene, cohoring, enviornmental cleaning
## 239 Kitchen closed, investigation of water supply and other sources of potential exposure
## 240 enviornmental cleaning, hyperclori tion of physiotherapy pools, physiotherapy instruments disinfected, hand hygiene promotion.
## 241 Oysters subject to depuration for 2 days before becoming marketable.
## 242 Increased shellfish sampling and surveillance, adopted depuration times, area closed on March 1st
## 243 Contact precautions were commenced, staffing guidelines instituted and the ward was closed for 11 days
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 ill patients isolated or cohorted; transport & discharge avoided; staff wore disposable aprons & gloves; handwashing emphasized; ward closed to admissions; thorough cleaning of facilities
## 260 0
## 261 protective equipment for staff when working with sick residents, strict hand washing between contact with each resident, no new admissions or transfers to other aged care facilities and grouping sick residents away from well residents
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 ill staff were excluded from work for duration of illness, washed hands w/antiseptic soap (chlorhexidine or povidone-iodine), rooms were cleaned with 1% aldehyde or 0.1% chlorine-free bleach
## 272 0
## 273 0
## 274 0
## 275 hyperchlori tion of the water system, handwashing and bottle water recommendations put in place
## 276 self-quarentine, handwashing with soap and water, patient diversion, staff sick policy implemented
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 Stopped consumption of water
## 292 hand hygiene with ethanol based sanitizer, isolation of patients,
## 293 Stopped selling oysters from infected bays and harvesting from the infected area was banned
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 Disinfection of restaurants, kitchens, and toilets performed and main kitchen in hotel restaurant closed
## 323 0
## Comments_2
## 1 Limited data
## 2 0
## 3 crusie ship B
## 4 Hosp A ward 7E
## 5 Hosp A ward 7B
## 6 hosp A ward 7A
## 7 Hosp A ward 7A (part 2)
## 8 Hosp A Ward 7D
## 9 Hosp A ward 7C
## 10 Hosp A ward 7F
## 11 Hosp A ward 7C
## 12 Hosp A ward 7E
## 13 Hosp A ward 7D
## 14 Hosp A ward 7A
## 15 Hosp B ward L
## 16 Hosp B ward E
## 17 10 clusters from 5 states; outbreak associated to contami ted oysters (essentially common source);
## 18 3-Jan
## 19 0
## 20 First NoV outbreak in Asia, not including Japan.
## 21 Recommendations to extend worker absence even after primary symptoms had ceased
## 22 outbreak no. 23 Hamano 2005
## 23 Outbreak 41 of 47 Iritani 2000
## 24 outbreak 42 of 66 Kageyama; outbreak 43 has no case info and is not included
## 25 Raspberries identified as source of contami tion in bakery outbreak; identical GG1 stain detected in sample stool, but different strain, GG2 IIb found on raspberries
## 26 outbreak occurred for 3 groups of guests at a hotel
## 27 outbreak 2 in article; more effective precautio ry measures in this outbreak than in first; no deaths from NoV
## 28 Outbreak 8 Lysen paper
## 29 Outbreak 9 Lysen paper
## 30 Outbreak 11 Lysen paper
## 31 Outbreak 12 Lysen Paper
## 32 Outbreak 13 Lysen Paper
## 33 Outbreak 2002/15 Lysen
## 34 Outbreak 2002/18 Lysen
## 35 Outbreak 2002/21 Lysen paper
## 36 Outbreak 2003/12 Lysen
## 37 Outbreak 2004/13 Lysen
## 38 Outbreak 2004/15 Lysen
## 39 Outbreak 2004/18 Lysen
## 40 Outbreak 2006/17 Lysen
## 41 Outbreak 2006/ 18 Lysen
## 42 Outbreak 2006/19 Lysen
## 43 Outbreak 2006/25 Lysen
## 44 Outbreak 2006/26 Fi l Lysen
## 45 outbreak occurred in 5 wards of the hospital, afflicting both patients and staff members, several patients relapsed after 48 hrs asymptomatic
## 46 desig ted Outbreak 3 in paper; outbreak involved both children and staff; index case was identified as a child who had been ill at home 24 hours before vomiting in the nursery school sandpit
## 47 desig ted Outbreak 15 in paper; affected both residents and staff
## 48 Reuter outbreak 1 of 14; multiple retrospective looks at GE in Hungary
## 49 Outbreak 10 of 14 Reuter
## 50 No information about other patrons to the restaurant who may have had oyster NoV induced GE
## 51 0
## 52 0
## 53 0
## 54 0
## 55 Outbreak 6 of 10 Baert 2009
## 56 0
## 57 outbreak 1 - 57/87 residents + 12 staff, secondary cases 17/24 + 10 staff
## 58 Second outbreak from Frankston; incubation and duration of illness seemed to be an estimate, but were reported; ill patients from an intial outbreak in a nursing home were transfered to the hospital and subsequently infected others
## 59 0
## 60 0
## 61 Georgian
## 62 0
## 63 0
## 64 Hosp D
## 65 Hosp F
## 66 Hosp G
## 67 0
## 68 Outbreak 8 of 8 Fretz 2005; outbreak 3 of 3 related to hospital nursing home
## 69 Outbreak 3 (1 of 5) from Halperin 2005 (The first two outbreaks presented in the article do not meet the inclusion criteria)
## 70 outbreak 5 (3 of 5) Halperin
## 71 Outbreak no. 11 Hamano 2005
## 72 outbreak no. 27 Hamano 2005
## 73 Outbreak no. 46 Hamano 2005
## 74 outbreak 21 of 47 Iritani 2000
## 75 Outbreak 37 of 47 Iritani 2000
## 76 Outbreak 39 of 47 Iritani 2000
## 77 Outbreak 47 of 47 Iritani 2000
## 78 Outbreak 5 of 19 Iritani 2008
## 79 Outbreak 6 of 19 Iritani 2008
## 80 Outbreak 9 of 19 Iritani 2008
## 81 Outbreak 12 of 19 Iritani 2008
## 82 Outbreak 13 of 19 Iritani 2008
## 83 Outbreak 15 of 19 Iritani 2008
## 84 Outbreak 16 of 19 Iritani 2008
## 85 Outbreak 18 of 19 Iritani 2008
## 86 Outbreak 19 of 19 Iritani 2008
## 87 outbreak origi lly thought to be due to causitive agent: C. difficile; further investigation proved otherwise.
## 88 Oyster consumption was responsible for at least 14 cases, but only one outbreak involving four consumers could be clearly identified & investigated; shellfish viral contami tion in the harvest area persisted for several weeks before disappearing
## 89 1st of 70+ food and waterborne outbreaks from the lysen 2009 article
## 90 Outbreak 2002/14 Lysen Paper
## 91 Outbreak 2002/17 Lysen
## 92 Outbreak 2004/09 Lysen
## 93 Outbreak 2004/10 Lysen
## 94 Outbreak 20005/04 Lysen
## 95 Outbreak 2005/5 Lysen
## 96 Outbreak 2006/05 Lysen
## 97 Outbreak 2006/06 Lysen
## 98 Outbreak 2006/07 Lysen
## 99 Outbreak 2006/08 Lysen
## 100 Outbreak 2006/09 Lysen
## 101 No shellfish samples were positive for bacteria or viruses; source of contami tion was not revealed
## 102 Very little information previded for this reason combined all four cruises; i ppropriate food handling but no positive environmental samples nor strain ID from emesis and stool samples
## 103 8 of 11 kagawa
## 104 11 of 11 kagawa
## 105 outbreak in waves of people who came to camp; One expla tion for protracted duration of outbreak could be a continuous leak from the sewage system, which would have caused persistent contami tion of the environment
## 106 desig ted Outbreak 6 in paper; cases included both staff and diners; involved a member of the kitchen staff being taken ill during the preparation of the meals
## 107 desig ted Outbreak 7 in paper; affected staff and patients from 4 different wards
## 108 desig ted Outbreak 10 in paper; spread over 4 wards
## 109 desig ted Outbreak 11 in paper, affected both staff and patients; index case was almost certainly infected in the community before entering hospital; Two of the patients affected, including the index case, reported similar illness among family members
## 110 secondary or co-primary cases could not be discerned form one another; cooked and raw mussels were both implicated as vehicles.
## 111 outbreak 3 of 14 reuters et. al; case # ">5"
## 112 Outbreak 1 presented here, outbreak 2 (as defined by the author) will be presented as record database 31; no known vehicle of transmission. primarily elderly patients.
## 113 Related to another outbreak in the same hospital, (Russo 1997 article as well); econimic loss a lysis, this outbreak was deemed as seperate and the cases were considered primary.
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 Only stateed that >30 were ill
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129
## 130 Mixed outbreak with Astrovirus, 5 had both of an unknown number at risk
## 131 0
## 132 Outbreak 16 of 26 Boxman 2009
## 133 No control data was available for this NoV study; consequently no specific food item could be implicated and no attack rate calculated.
## 134 0
## 135 0
## 136 0
## 137 Rensselaer
## 138 Sullivan
## 139 Greene
## 140 Letter to the editor, very strict control measures, outbreak thus stoped early
## 141 6-Mar
## 142 6-Apr
## 143 6-May
## 144 3-Mar
## 145 Interesting challenges presented due to the psychiatric disposition of cases
## 146 outbreak 6 (4 of 5) Halperin
## 147 outbreak 7 (5 of 5) Halperin
## 148 Outbreak 1 of 47 Iritani 2000; Southampton reference strain similarity unknown percentage.
## 149 outbreak 2 of 47 Iritani 2000
## 150 2 results both from the capsid region being sequenced.
## 151 Outbreak 6 lysen paper
## 152 Outbreak 7 lysen paper
## 153 Outbreak 2003/8 Lysen
## 154 Outbreak 2003/09 Lysen
## 155 Outbreak 2003/10 Lysen
## 156 Outbreak 2003/11 Lysen
## 157 Outbreak 2004/12 Lysen
## 158 Outbreak 2005/6 Lysen
## 159 Outbreak 2005/07 Lysen
## 160 Outbreak 2006/11 Lysen
## 161 Outbreak 2006/13 Lysen
## 162 Outbreak 2006/15 Lysen
## 163 Outbreak 2006/22 Lysen
## 164 Outbreak 2006/23 Lysen
## 165 Outbreak 2006/24 Lysen
## 166 Unique example of norovirus outbreak associated with ready-to-eat meats contami ted at processing plant prior to packaging and wholesale distribution; employee sample taken 1 month after illness was NoV negative
## 167 Youngest case was 9 months; transmissioon route appeared to be through the contami ted water, two closest toilets had human excrement on floor; despite chlori tion, the water outlet well was RT-PCR positive for norovirus up to 8 months after outbreak
## 168 Common source of infection suggested, fecal contami tion of drinking water systems suspected to have arisen from connection with non-drinking water systems because of damaged pipework
## 169 Outbreak 4 of 14 Reuters
## 170 Outbreak 5 of 14 Reuter
## 171 0
## 172 0
## 173 0
## 174
## 175 outbreak 2 of 3 for pubmed id 10804152
## 176 Outbreak 1 of 26 Boxman 2009; all outbreaks from 2006, the netherlands, primarily foodborne, environmental swabs used as a NoV detection device.
## 177 Outbreak 26 of 26 Boxman 2009
## 178 u ble to determine number of individuals at risk
## 179 0
## 180 Onondaga
## 181 Warren
## 182 Dutchess 1
## 183 Gowanda
## 184 Glendale
## 185 0
## 186 Hosp A ward 6A
## 187 Hosp A ward 3A
## 188 Hosp A ward 2A
## 189 Hosp A ward 5E
## 190 Hosp E
## 191 Hosp C
## 192 This outbreak comes from "other notified foodborne outbreaks"; was actually the result of 13 outbreaks, but was reported as 1, with a common source and data represnting all 13 outbreaks (implied)
## 193 0
## 194 Outbreak 4 of 8 Fretz 2005; Case number extrapolated from a selection of physicians, schools, and nursing homes; this extroploation was validated via a selection of pharmacy records.
## 195 Outbreak 6 of 8 Fretz 2005; outbreak 1 of 3 associated with hospital and nursing home.
## 196 Outbreak 7 of 8 Fretz 2005; outbreak 2 of 3 associated with hospital/nursinghome.
## 197 Ill person from this outbreak was admitted to a different UK hospital which created another outbreak (entered next) of the same strain of NoV; new Genotype II strain Lymington med after the hospital.
## 198 outbreak related to record 4 outbreak; same strain of NoV; index case in this outbreak was a case in the last outbreak.
## 199 Outbreak 4 (2 of 5) Halperin
## 200 Outbreak no. 3 Hamano 2005
## 201 Outbreak no. 4 Hamano 2005
## 202 Outbreak no. 9 Hamano 2005
## 203 Outbreak no. 12 Hamano 2005
## 204 outbreak no. 13 hamano 2005
## 205 outbreak no. 14 hamano 2005
## 206 outbreak no. 20 Hamano 2005
## 207 outbreak no. 25 Hamano 2005
## 208 Outbreak no. 28 Hamano 2005
## 209 outbreak no. 29 Hamano 2005
## 210 outbreak no. 31 Hamano 2005
## 211 outbreak no. 39 Hamano 2005
## 212 outbreak no. 40 Hamano 2005
## 213 outbreak no. 41 Hamano 2005
## 214 Sewage tank overflow into the water supply caused many cases with diverse etiology of illness.
## 215 outbreak 4 of 47 Iritani 2000
## 216 outbreak 7 of 47 Iritani 2000
## 217 outbreak 8 of 47 Iritani 2000
## 218 outbreak 11 of 47 Iritani 2000
## 219 outbreak 14 of 47 Iritani 2000
## 220 outbreak 17 of 47 Iritani 2000
## 221 outbreak 24 of 47 Iritani 2000
## 222 outbreak 25 of 47 Iritani 2000
## 223 outbreak 26 of 47 Iritani 2000
## 224 outbreak 27 of 47 Iritani 2000
## 225 outbreak 30 of 47 Iritani 2000
## 226 outbreak 31 of 47 Iritani 2000
## 227 outbreak 32 of 47 Iritani 2000
## 228 Outbreak 33 of 47 Iritani 2000
## 229 Outbreak 34 of 47 Iritani 2000
## 230 Outbreak 42 of 47 Iritani 2000
## 231 Outbreak 43 of 47 Iritani 2000
## 232 Outbreak 46 of 47 Iritani 2000
## 233 Outbreak 1 of 17 Iritani 2002; probing method used as opposed to G1 and G2 primers
## 234 Outbreak 2 of 17 Iritani 2002
## 235 Outbreak 6 of 17 Iritani 2002
## 236 Outbreak 10 of 17 Iritani 2002
## 237 Outbreak attributed to ice and not water supply. Ice machines were not cleaned after first cruise had immediate outbreak
## 238 Novel strain "Basel" identified; similarities with Lordsdale.
## 239 Universtiy foodborne (salad vehicle) outbreak with secondary person-to-person transmission in the dorms; cases were almost entirely freshmen.
## 240 prolonged NoV outbreak at a rehabilition center in Finland, over a 2.5 month time span (Dec. 1999 Feb. 2000); constantly evolving patient base (every 1-3 weeks)
## 241 Plenty of cluster specific data (i.e. incubation period, duration of illness etc.) especially for the largest cluster in Paris. Common source oyster associated NoV outbreak spread across France and Italy.
## 242 This are the combined statistics for a total of 38 clusters, contami tion of oysters linked to flooding event close to shellfish production lagoon; first time aichi virus identified in oyster samples
## 243 outbreak 1 in article; three cases relapsed. One patient died, with gastroenteritis the precipitating event of his fi l illness
## 244 lysen 2; capsid and polymerase both resulted in G1.3
## 245 Outbreak 2003/15 Lysen
## 246 Outbreak 2003/16 Lysen
## 247 Outbreak 2004/01 Lysen
## 248 Outbreak 2004/03 Lysen
## 249 Outbreak 2004/04 Lysen
## 250 Outbreak 2004/05 Lysen
## 251 Outbreak 2004/6 Lysen
## 252 Outbreak 2004/7 Lysen
## 253 Outbreak 2004/8 Lysen
## 254 Outbreak 2005/13
## 255 Outbreak 2006/ 2 Lysen
## 256 Outbreak 2006/03 Lysen
## 257 Outbreak 2006/04
## 258 Outbreak 2006/21 Lysen
## 259 rapid control measures taken, outbreak mostly affecting elderly ward of hospital
## 260 McDonnell outbreak B; sparse information; could be related to oyster outbreak A previously described; secondary transmission is mentioned but no case data available.
## 261 It is likely that the outbreaks in the three institutions were linked due to transfers of infected residents from one institution to another, early in the outbreak
## 262 1st of 11 outbreaks from kagawa-okamoto article
## 263 2nd of 11 kagawa outbreaks
## 264 3 of 11 kagawa
## 265 4 of 11 kagawa
## 266 5 of 11 kagawa
## 267 6 of 11 kagawa
## 268 7 of 11 kagawa
## 269 9 of 11 kagawa
## 270 10 of 11 kagawa
## 271 longest incubation period in range was not 99, but 168 hrs; adoption of preventative measures stopped spread in 3 wks; secondary cases were family members
## 272 desig ted Outbreak 4 in paper; cases among staff and guests; a member of staff had vomited in the hotel kitchen during the preparation of the meals
## 273 desig ted Outbreak 27 in paper; outbreak occurred over new year holiday period; infected hotel guests were responsible for a large number of secondary cases among family members when they returned home after the holiday
## 274 Outbreak of food poisoning caused by norovirus GII/4 in school lunch, common food was pastry prepared in confectionery
## 275 NoV was not actually identified in the water system, as the tests were "technically not possible" however NoV was isolated from the cases who all presented with illness at the hospital
## 276 Large hospital-wide NoV outbreak in which health care workers were disproportio lly affected.
## 277 outbreak 2 of 14 reuter; case # ">5"
## 278 Outbreak 1 of 3 Sakon (2) 2005
## 279 Outbreak 2 of 3 Sakon
## 280 Outbreak 3 of 3 Sakon 2005
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 11 oncology patients, and 2 family members affected by NoV outbreak;
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 outbreak 1 of 4
## 319 outbreak 2 of 4
## 320 outbreak 3 of 4... cluster is "b" but u ble to enter this into database
## 321 outbreak 4 of 4
## 322 0
## 323 outbreak 1 of 2
## Path2_2
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 Clostridium difficile toxin, adenovirus
## 46 0
## 47 0
## 48 Campylobactor spp.
## 49 0
## 50 Vibrio parahaemolyticus
## 51 0
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 C. Difficile
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 0
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 Clostridium difficile
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 0
## 98 0
## 99 0
## 100 0
## 101 rotavirus genotype G9
## 102 0
## 103 Kobuvirus, astrovirus
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 enterovirus
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 Astrovirus
## 131 Clostridium Perfringens
## 132 0
## 133 0
## 134 Salmonella mbandaka, Campylobacter, Staphylococcus aureus
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 Astrovirus, E. coli detected in wading pool water at time of outbreak
## 168 Campylobacter sp. and rotavirus
## 169 0
## 170 0
## 171 Campylobacter
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 0
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 0
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 Cryptospiridium, rotavirus, camplobactor
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 Aichi virus, Enterovirus, Astrovirus type 8, Rotavirus-A
## 243 Clostridium difficile
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 Sapovirus (GII.2, GI.1)
## 263 Kobuvirus
## 264 0
## 265 0
## 266 Kobuvirus
## 267 Sapovirus (II.3, II.1), Kobuvirus
## 268 Kobuvirus
## 269 Kobuvirus
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 astrovirus
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 enteroviruses
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## Setting_2
## 1 0
## 2 Clusters related to oysters
## 3 Cruise Ship
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 Multiple outbreak settings, primarilly associated with food at festivals, dinners, banquets
## 18 catered food at 3 schools
## 19 0
## 20 Catered farewell party in a nurse hostel
## 21 0
## 22 high school dorm
## 23 0
## 24 0
## 25 0
## 26 hotel
## 27 rehabilitation ward for older people
## 28 Restaurant
## 29 Private Home
## 30 Restaurant
## 31 Restaurant
## 32 Restaurant
## 33 0
## 34 Restaurant
## 35 0
## 36 Restaurant
## 37 Restaurant
## 38 Restaurant
## 39 Restaurant
## 40 0
## 41 Restaurant
## 42 Catering services
## 43 Restaurant
## 44 Restaurant
## 45 5 wards in university hospital
## 46 nursery school
## 47 nursing home for elderly adults
## 48 2 nurseries, and 1 school
## 49 0
## 50 Restaurant
## 51 Care unit of inter l medicine
## 52 Geriatric ward
## 53 Pediatric ward
## 54 restaurant
## 55 private home
## 56 6 Nursing homes
## 57 Hostel
## 58 0
## 59 Military field hospital
## 60 Summer Camp
## 61 Restaurant
## 62 LTCF
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 majority of cases from the nursing home some from the hospital
## 69 0
## 70 0
## 71 Restaurant
## 72 primary school
## 73 primary school
## 74 0
## 75 Restaurant
## 76 0
## 77 Elementary school
## 78 Private home
## 79 Restaurant
## 80 Kindergarten
## 81 Kindergarten
## 82 0
## 83 0
## 84 Kindergarten
## 85 0
## 86 0
## 87 VA medical center 357-bed
## 88 0
## 89 Health Resort
## 90 0
## 91 Restaurant
## 92 Cafe
## 93 Catering service
## 94 Catering service
## 95 Private Home
## 96 Catering service
## 97 Catering service
## 98 Restaurant
## 99 Restaurant
## 100 Restaurant
## 101 City of Apulia
## 102 Cruise Ship
## 103 Restaurant
## 104 Restaurant
## 105 combined activity camp and conference center in Stockholm County
## 106 restaurant
## 107 large hospital
## 108 large hospital
## 109 medical ward in a district general hospital
## 110 diverse picnic and restaurant settings
## 111 0
## 112 extended care unit, ward A
## 113 acute ward with elderly patients
## 114 Cafeteria
## 115 0
## 116 0
## 117 0
## 118 0
## 119 Rehabilitation center
## 120 0
## 121 0
## 122 Restaurant
## 123 Restaurant
## 124 0
## 125 Wedding
## 126 Community setting
## 127 College
## 128 Restauarant
## 129
## 130 Daycare Center
## 131 Resort
## 132 take out restaurant
## 133 Restaurant
## 134 Bakery
## 135 0
## 136 Hostel
## 137 School Camp
## 138 Summer Camp
## 139 Summer camp
## 140 633-bed extended care hospital
## 141 0
## 142 Restaurant
## 143 0
## 144 Households (4)
## 145 University of Alberta, Psychiatric ward of the
## 146 0
## 147 0
## 148 elementary school
## 149 0
## 150 0
## 151 Restaurant
## 152 0
## 153 Restaurant
## 154 Catering service
## 155 Restaurant
## 156 Catering service
## 157 Restaurant
## 158 Restaurant
## 159 Reacratio l Water
## 160 Recreatio l Water
## 161 0
## 162 Catering service
## 163 Recreatio l Water
## 164 Recreatio l water
## 165 0
## 166 River rafters on the Grand Canyon
## 167 outdoor wading pool in recreatio l area of Helsinki
## 168 Holiday resort in Central Italy
## 169 0
## 170 Private family home
## 171 Lake
## 172 Hotel
## 173 0
## 174
## 175 0
## 176 reception
## 177 Buffet
## 178 Resort Hotel
## 179 Eldercare Facility
## 180 Ski Resort
## 181 0
## 182 Delicatessen
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 4 districts: H_rault, Ile de France, Aude and
## 193 Concert Hall
## 194 2 communities
## 195 0
## 196 majority of cases from the hospital, some from the nursing home
## 197 86-bed hospital
## 198 908-bed teaching hospital
## 199 0
## 200 Private home
## 201 Restaurant
## 202 Office
## 203 Private home
## 204 Private home
## 205 Restaurant
## 206 primary school
## 207 Restaurant
## 208 home for the elderly
## 209 Restaurant
## 210 Restaurant
## 211 pre-school day nursery
## 212 preschool day nursery
## 213 home for the elderly
## 214 Ski resort, complete with 2 restaurants, day care, hotel etc.
## 215 Restaurant
## 216 Restaurant
## 217 elementary school
## 218 0
## 219 Restaurant
## 220 mental health instititue
## 221 0
## 222 0
## 223 0
## 224 0
## 225 Restaurant
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 0
## 233 Restaurant
## 234 0
## 235 0
## 236 0
## 237 cruise ship
## 238 university hospital 1200-bed tertiary care
## 239 Within a university setting, the freshmen dining hall was implicated
## 240 Rehabilitation center
## 241 Multiple settings, 13 clusters in France (primarily private homes), in Italy private home or restaurant
## 242 Oysters consumed in private homes and also at a restaurant
## 243 rehabilitation wards for older people
## 244 0
## 245 Restaurant
## 246 Restaurant
## 247 Restaurant
## 248 Restaurant
## 249 Restaurant
## 250 Catering service
## 251 Restaurant
## 252 Restaurant
## 253 Private Home
## 254 Private Home
## 255 Restaurant
## 256 Restaurant
## 257 Private Home
## 258 Restaurant
## 259 district general hospital
## 260 Various, community-wide
## 261 two aged care facilities and one hospital in Canberra
## 262 Private Home
## 263 Restaurant
## 264 Restaurant
## 265 Private home
## 266 Private home
## 267 Restaurant
## 268 Restaurant
## 269 Monestary
## 270 Restaurant
## 271 Sabadell Hospital
## 272 city hotel
## 273 hotel
## 274 Elementary and Junior High Schools in Tochigi Prefecture
## 275 Community, Xanthi
## 276 Veterans tertiary care 154 bed hospital
## 277 Kiskhunhalas Hungary Hospital
## 278 0
## 279 0
## 280 0
## 281 Old people's home
## 282 Old people's home
## 283 Old people's home
## 284 0
## 285 Sugar Factory
## 286 0
## 287 Old people's home
## 288 Old people's home
## 289 Old people's home
## 290 Rehabilitation Center
## 291 Patients rooms
## 292 Pediatric Hematology and Oncology, ChildrenÂ\220s Hospital, University of Bonn,
## 293 Oysters fished from particular bay
## 294 Pediatric inpatient psych unit
## 295 0
## 296 0
## 297 0
## 298 0
## 299 Prison
## 300 Rural Village
## 301 0
## 302 0
## 303 0
## 304 Catering Service
## 305 Vacation Camp
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 Private Home
## 312 0
## 313 Recruit Depot
## 314 Unspecified
## 315 Village
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 hotel
## 323 Home
## category1 strainothergg2c4 gg2c4 Vomit IncInd SymInd PooledLat
## 1 School/Daycare 0 Yes 1 0 0 0.0
## 2 Other 0 1 0 0 34.0
## 3 Leisure 0 1 0 0 0.0
## 4 Hospital/Nursi 0 Yes 0 0 0 0.0
## 5 Hospital/Nursi 0 Yes 0 0 0 0.0
## 6 Hospital/Nursi 0 Yes 0 0 0 0.0
## 7 Hospital/Nursi 0 Yes 0 0 0 0.0
## 8 Hospital/Nursi 0 Yes 0 0 0 0.0
## 9 Hospital/Nursi 0 Yes 0 0 0 0.0
## 10 Hospital/Nursi 0 Yes 0 0 0 0.0
## 11 Hospital/Nursi 0 Yes 0 0 0 0.0
## 12 Hospital/Nursi 0 Yes 0 0 0 0.0
## 13 Hospital/Nursi 0 Yes 0 0 0 0.0
## 14 Hospital/Nursi 0 Yes 0 0 0 0.0
## 15 Hospital/Nursi 0 Yes 0 0 0 0.0
## 16 Hospital/Nursi 0 Yes 0 0 0 0.0
## 17 Foodservice 0 0 0 0 34.0
## 18 Foodservice 0 Yes 1 0 0 0.0
## 19 School/Daycare 0 Yes 1 0 0 0.0
## 20 Foodservice 0 1 0 0 0.0
## 21 Hospital/Nursi 0 1 0 0 0.0
## 22 School/Daycare 0 0 0 0 0.0
## 23 Unknown 0 1 0 0 0.0
## 24 School/Daycare 0 0 0 0 0.0
## 25 Unknown 0 1 0 0 0.0
## 26 Leisure 0 1 0 0 0.0
## 27 Hospital/Nursi 0 1 0 0 0.0
## 28 Foodservice 0 Yes 0 0 0 0.0
## 29 Other 0 0 0 0 0.0
## 30 Foodservice 0 0 0 0 0.0
## 31 Foodservice 0 Yes 0 0 0 0.0
## 32 Foodservice 0 0 0 0 0.0
## 33 Unknown 0 0 0 0 0.0
## 34 Foodservice 0 0 0 0 0.0
## 35 Unknown 0 0 0 0 0.0
## 36 Foodservice 0 0 0 0 0.0
## 37 Foodservice 0 0 0 0 0.0
## 38 Foodservice 0 Yes 0 0 0 0.0
## 39 Foodservice 0 Yes 0 0 0 0.0
## 40 Hospital/Nursi 0 Yes 0 0 0 0.0
## 41 Foodservice 0 Yes 0 0 0 0.0
## 42 Foodservice 0 Yes 0 0 0 0.0
## 43 Foodservice 0 0 0 0 0.0
## 44 Foodservice 0 0 0 0 0.0
## 45 Hospital/Nursi 0 Yes 1 0 0 0.0
## 46 School/Daycare 0 1 0 0 0.0
## 47 Hospital/Nursi 0 1 0 0 0.0
## 48 School/Daycare 0 Yes 0 0 0 0.0
## 49 Hospital/Nursi 0 1 0 0 0.0
## 50 Foodservice 0 1 0 0 16.5
## 51 Hospital/Nursi 0 Yes 1 0 0 0.0
## 52 Hospital/Nursi 0 Yes 0 0 0 0.0
## 53 Hospital/Nursi 0 Yes 0 0 0 0.0
## 54 Foodservice 0 1 0 0 38.0
## 55 Foodservice 0 1 0 0 0.0
## 56 Hospital/Nursi 0 Yes 1 0 0 0.0
## 57 Hospital/Nursi 0 1 0 0 0.0
## 58 Hospital/Nursi 0 1 0 0 0.0
## 59 Other 0 1 0 0 0.0
## 60 Foodservice 0 1 0 0 0.0
## 61 Foodservice 0 Yes 1 0 0 0.0
## 62 Hospital/Nursi 0 1 0 0 0.0
## 63 Hospital/Nursi 0 1 0 0 0.0
## 64 Hospital/Nursi 0 Yes 0 0 0 0.0
## 65 Hospital/Nursi 0 Yes 0 0 0 0.0
## 66 Hospital/Nursi 0 Yes 0 0 0 0.0
## 67 Hospital/Nursi 0 Yes 1 0 0 0.0
## 68 Hospital/Nursi 0 Yes 1 0 0 0.0
## 69 Hospital/Nursi 0 Yes 0 0 0 0.0
## 70 Other 0 Yes 0 0 0 0.0
## 71 Foodservice 0 0 0 0 0.0
## 72 School/Daycare 0 0 0 0 0.0
## 73 School/Daycare 0 0 0 0 0.0
## 74 Unknown 0 1 0 0 0.0
## 75 Unknown 0 1 0 0 0.0
## 76 Unknown 0 1 0 0 0.0
## 77 School/Daycare 0 1 0 0 0.0
## 78 Other 0 0 0 0 0.0
## 79 Foodservice 0 0 0 0 0.0
## 80 School/Daycare 0 0 0 0 0.0
## 81 School/Daycare 0 0 0 0 0.0
## 82 School/Daycare 0 0 0 0 0.0
## 83 School/Daycare 0 0 0 0 0.0
## 84 School/Daycare 0 0 0 0 0.0
## 85 School/Daycare 0 0 0 0 0.0
## 86 School/Daycare 0 0 0 0 0.0
## 87 Hospital/Nursi 0 Yes 1 0 0 0.0
## 88 Unknown 0 1 0 0 0.0
## 89 Leisure 0 0 0 0 0.0
## 90 Unknown 0 0 0 0 0.0
## 91 Foodservice 0 0 0 0 0.0
## 92 Foodservice 0 0 0 0 0.0
## 93 Foodservice 0 0 0 0 0.0
## 94 Foodservice 0 0 0 0 0.0
## 95 Other 0 Yes 0 0 0 0.0
## 96 Foodservice 0 0 0 0 0.0
## 97 Foodservice 0 0 0 0 0.0
## 98 Foodservice 0 0 0 0 0.0
## 99 Foodservice 0 0 0 0 0.0
## 100 Foodservice 0 0 0 0 0.0
## 101 Other 0 Yes 0 0 0 0.0
## 102 Leisure 0 1 0 0 0.0
## 103 Foodservice 0 Yes 0 0 0 0.0
## 104 Foodservice 0 0 0 0 0.0
## 105 Leisure 0 1 0 0 0.0
## 106 Foodservice 0 1 0 0 0.0
## 107 Hospital/Nursi 0 0 0 0 0.0
## 108 Hospital/Nursi 0 0 0 0 0.0
## 109 Hospital/Nursi 0 1 0 0 0.0
## 110 Other 0 1 0 0 0.0
## 111 Hospital/Nursi 0 1 0 0 0.0
## 112 Hospital/Nursi 0 Yes 0 0 0 0.0
## 113 Hospital/Nursi 0 Yes 0 0 0 0.0
## 114 Foodservice 0 1 0 0 27.0
## 115 Hospital/Nursi 0 0 0 0 0.0
## 116 Hospital/Nursi 0 0 0 0 0.0
## 117 Hospital/Nursi 0 0 0 0 0.0
## 118 Hospital/Nursi 0 0 0 0 0.0
## 119 Hospital/Nursi 0 0 0 0 0.0
## 120 Hospital/Nursi 0 0 0 0 0.0
## 121 Unknown 0 1 0 0 0.0
## 122 Foodservice 0 Yes 1 0 0 0.0
## 123 Foodservice 0 Yes 1 0 0 0.0
## 124 School/Daycare 0 0 0 0 0.0
## 125 Leisure 0 Yes 0 0 0 0.0
## 126 Other 0 Yes 0 0 0 0.0
## 127 School/Daycare 0 1 0 0 0.0
## 128 Foodservice 0 1 0 0 36.0
## 129 School/Daycare 0 1 0 0 0.0
## 130 School/Daycare 0 1 0 0 0.0
## 131 Leisure 0 Yes 1 0 0 0.0
## 132 Foodservice 0 1 0 0 0.0
## 133 Foodservice 0 1 0 0 0.0
## 134 Foodservice 0 1 0 0 0.0
## 135 Hospital/Nursi 0 1 0 0 0.0
## 136 Hospital/Nursi 0 Yes 1 0 0 0.0
## 137 Leisure 0 1 0 0 0.0
## 138 Leisure 0 Yes 1 0 0 0.0
## 139 Leisure 0 1 0 0 0.0
## 140 Hospital/Nursi 0 0 0 0 0.0
## 141 Foodservice 0 Yes 0 0 0 0.0
## 142 Foodservice 0 0 0 0 0.0
## 143 Hospital/Nursi 0 0 0 0 0.0
## 144 Other 0 1 0 0 0.0
## 145 Hospital/Nursi 0 0 0 0 0.0
## 146 Other 0 Yes 0 0 0 0.0
## 147 Other 0 Yes 0 0 0 0.0
## 148 School/Daycare 0 1 0 0 0.0
## 149 Unknown 0 1 0 0 0.0
## 150 Unknown 0 Yes 0 0 0 0.0
## 151 Foodservice 0 0 0 0 0.0
## 152 Unknown 0 0 0 0 0.0
## 153 Foodservice 0 Yes 0 0 0 0.0
## 154 Foodservice 0 Yes 0 0 0 0.0
## 155 Foodservice 0 0 0 0 0.0
## 156 Foodservice 0 Yes 0 0 0 0.0
## 157 Foodservice 0 0 0 0 0.0
## 158 Foodservice 0 0 0 0 0.0
## 159 Leisure 0 0 0 0 0.0
## 160 Leisure 0 0 0 0 0.0
## 161 School/Daycare 0 0 0 0 0.0
## 162 Foodservice 0 0 0 0 0.0
## 163 Leisure 0 0 0 0 0.0
## 164 Leisure 0 0 0 0 0.0
## 165 Unknown 0 0 0 0 0.0
## 166 Leisure 0 1 0 0 0.0
## 167 Leisure 0 Yes 1 0 0 31.0
## 168 Leisure 0 Yes 0 0 0 0.0
## 169 Hospital/Nursi 0 1 0 0 0.0
## 170 Other 0 1 0 0 0.0
## 171 Leisure 0 1 0 0 48.0
## 172 Foodservice 0 1 0 0 34.0
## 173 Hospital/Nursi 0 Yes 0 0 0 0.0
## 174 Unknown 0 0 0 0 0.0
## 175 Unknown 0 1 0 0 0.0
## 176 Foodservice 0 Yes 0 0 0 0.0
## 177 Foodservice 0 1 0 0 0.0
## 178 Leisure 0 1 0 0 0.0
## 179 Hospital/Nursi 0 1 0 0 0.0
## 180 Leisure 0 1 0 0 0.0
## 181 Hospital/Nursi 0 1 0 0 0.0
## 182 Foodservice 0 1 0 0 0.0
## 183 Hospital/Nursi 0 1 0 0 0.0
## 184 Hospital/Nursi 0 1 0 0 0.0
## 185 Unknown 0 Yes 1 0 0 0.0
## 186 Hospital/Nursi 0 Yes 0 0 0 0.0
## 187 Hospital/Nursi 0 Yes 0 0 0 0.0
## 188 Hospital/Nursi 0 Yes 0 0 0 0.0
## 189 Hospital/Nursi 0 Yes 0 0 0 0.0
## 190 Hospital/Nursi 0 Yes 0 0 0 0.0
## 191 Hospital/Nursi 0 Yes 0 0 0 0.0
## 192 Foodservice 0 Yes 1 0 0 34.0
## 193 Other 0 1 0 0 0.0
## 194 Other 0 Yes 1 0 0 0.0
## 195 Hospital/Nursi 0 1 0 0 0.0
## 196 Hospital/Nursi 0 Yes 1 0 0 0.0
## 197 Hospital/Nursi 0 0 0 0 0.0
## 198 Hospital/Nursi 0 0 0 0 0.0
## 199 Other 0 Yes 0 0 0 0.0
## 200 Other 0 0 0 0 0.0
## 201 Foodservice 0 0 0 0 0.0
## 202 Other 0 0 0 0 0.0
## 203 Other 0 0 0 0 0.0
## 204 Other 0 0 0 0 0.0
## 205 Foodservice 0 0 0 0 0.0
## 206 School/Daycare 0 0 0 0 0.0
## 207 Foodservice 0 0 0 0 0.0
## 208 Hospital/Nursi 0 0 0 0 0.0
## 209 Foodservice 0 Yes 0 0 0 0.0
## 210 Foodservice 0 0 0 0 0.0
## 211 School/Daycare 0 0 0 0 0.0
## 212 School/Daycare 0 0 0 0 0.0
## 213 Hospital/Nursi 0 0 0 0 0.0
## 214 Leisure 0 1 0 0 0.0
## 215 Foodservice 0 1 0 0 0.0
## 216 Foodservice 0 1 0 0 0.0
## 217 School/Daycare 0 1 0 0 0.0
## 218 Hospital/Nursi 0 1 0 0 0.0
## 219 Foodservice 0 1 0 0 0.0
## 220 Hospital/Nursi 0 1 0 0 0.0
## 221 Unknown 0 1 0 0 0.0
## 222 Unknown 0 1 0 0 0.0
## 223 Unknown 0 1 0 0 0.0
## 224 Unknown 0 1 0 0 0.0
## 225 Foodservice 0 1 0 0 0.0
## 226 Unknown 0 1 0 0 0.0
## 227 Unknown 0 1 0 0 0.0
## 228 Unknown 0 1 0 0 0.0
## 229 Unknown 0 1 0 0 0.0
## 230 Unknown 0 1 0 0 0.0
## 231 Unknown 0 1 0 0 0.0
## 232 Unknown 0 1 0 0 0.0
## 233 Foodservice 0 0 0 0 0.0
## 234 Unknown 0 0 0 0 0.0
## 235 Unknown 0 0 0 0 0.0
## 236 Unknown 0 0 0 0 0.0
## 237 Leisure 0 1 0 0 0.0
## 238 Hospital/Nursi 0 Yes 1 0 0 0.0
## 239 School/Daycare 0 1 0 0 0.0
## 240 Hospital/Nursi 0 1 0 0 0.0
## 241 Other 0 Yes 1 0 0 0.0
## 242 Other 0 Yes 1 0 0 0.0
## 243 Hospital/Nursi 0 1 0 1 0.0
## 244 Unknown 0 0 0 0 0.0
## 245 Foodservice 0 0 0 0 0.0
## 246 Foodservice 0 Yes 0 0 0 0.0
## 247 Foodservice 0 0 0 0 0.0
## 248 Foodservice 0 0 0 0 0.0
## 249 Foodservice 0 0 0 0 0.0
## 250 Foodservice 0 0 0 0 0.0
## 251 Foodservice 0 0 0 0 0.0
## 252 Foodservice 0 0 0 0 0.0
## 253 Other 0 0 0 0 0.0
## 254 Other 0 Yes 0 0 0 0.0
## 255 Foodservice 0 0 0 0 0.0
## 256 Foodservice 0 0 0 0 0.0
## 257 Other 0 0 0 0 0.0
## 258 Foodservice 0 0 0 0 0.0
## 259 Hospital/Nursi 0 1 0 0 0.0
## 260 Other 0 1 0 0 0.0
## 261 Hospital/Nursi 0 1 0 0 0.0
## 262 Other 0 0 0 0 0.0
## 263 Foodservice 0 0 0 0 0.0
## 264 Foodservice 0 0 0 0 0.0
## 265 Other 0 0 0 0 0.0
## 266 Other 0 Yes 0 0 0 0.0
## 267 Foodservice 0 0 0 0 0.0
## 268 Foodservice 0 0 0 0 0.0
## 269 Other 0 0 0 0 0.0
## 270 Foodservice 0 Yes 0 0 0 0.0
## 271 Hospital/Nursi 0 1 0 0 0.0
## 272 Leisure 0 1 0 0 0.0
## 273 Leisure 0 0 0 0 0.0
## 274 Foodservice 0 Yes 1 0 0 0.0
## 275 Other 0 1 0 0 0.0
## 276 Hospital/Nursi 0 1 0 0 0.0
## 277 Hospital/Nursi 0 1 0 0 0.0
## 278 Hospital/Nursi 0 Yes 1 0 0 0.0
## 279 Hospital/Nursi 0 Yes 1 0 0 0.0
## 280 Hospital/Nursi 0 Yes 1 0 0 0.0
## 281 Hospital/Nursi 0 0 0 0 0.0
## 282 Hospital/Nursi 0 0 0 0 0.0
## 283 Hospital/Nursi 0 0 0 0 0.0
## 284 Hospital/Nursi 0 0 0 0 0.0
## 285 Other 0 0 0 0 0.0
## 286 Hospital/Nursi 0 0 0 0 0.0
## 287 Hospital/Nursi 0 0 0 0 0.0
## 288 Hospital/Nursi 0 0 0 0 0.0
## 289 Hospital/Nursi 0 0 0 0 0.0
## 290 Hospital/Nursi 0 0 0 0 0.0
## 291 Hospital/Nursi 0 1 0 0 0.0
## 292 Hospital/Nursi 0 1 0 0 0.0
## 293 Other 0 1 0 0 35.0
## 294 Hospital/Nursi 0 Yes 1 0 0 0.0
## 295 Hospital/Nursi 0 Yes 0 0 0 0.0
## 296 School/Daycare 0 Yes 0 0 0 0.0
## 297 School/Daycare 0 0 0 0 0.0
## 298 Hospital/Nursi 0 Yes 0 0 0 0.0
## 299 Other 0 0 0 0 0.0
## 300 Other 0 0 0 0 0.0
## 301 School/Daycare 0 0 0 0 0.0
## 302 Hospital/Nursi 0 0 0 0 0.0
## 303 Hospital/Nursi 0 0 0 0 0.0
## 304 Foodservice 0 0 0 0 0.0
## 305 Leisure 0 0 0 0 0.0
## 306 School/Daycare 0 0 0 0 0.0
## 307 School/Daycare 0 0 0 0 0.0
## 308 Hospital/Nursi 0 Yes 0 0 0 0.0
## 309 School/Daycare 0 0 0 0 0.0
## 310 School/Daycare 0 0 0 0 0.0
## 311 Other 0 Yes 0 0 0 0.0
## 312 School/Daycare 0 0 0 0 0.0
## 313 Other 0 1 0 0 0.0
## 314 School/Daycare 0 Yes 0 0 0 0.0
## 315 Other 0 1 0 0 0.0
## 316 Other 0 1 0 0 0.0
## 317 Unknown 0 1 0 0 0.0
## 318 Hospital/Nursi 0 0 0 0 0.0
## 319 Hospital/Nursi 0 0 0 0 0.0
## 320 Hospital/Nursi 0 0 0 0 0.0
## 321 Hospital/Nursi 0 0 0 0 0.0
## 322 Leisure 0 Yes 1 0 0 36.0
## 323 Other 0 1 0 0 0.0
## PooledSym PooledAge IndividualLatent IndividualSymptomatic fracinf
## 1 0 0.0 NA Inf
## 2 37 0.0 NA Inf
## 3 0 0.0 NA Inf
## 4 0 0.0 NA Inf
## 5 0 0.0 NA Inf
## 6 0 0.0 NA Inf
## 7 0 0.0 NA Inf
## 8 0 0.0 NA Inf
## 9 0 0.0 NA Inf
## 10 0 0.0 NA Inf
## 11 0 0.0 NA Inf
## 12 0 0.0 NA Inf
## 13 0 0.0 NA Inf
## 14 0 0.0 NA Inf
## 15 0 0.0 NA Inf
## 16 0 0.0 NA Inf
## 17 47 0.0 NA Inf
## 18 0 0.0 NA Inf
## 19 0 0.0 NA Inf
## 20 0 0.0 NA Inf
## 21 0 0.0 NA Inf
## 22 0 0.0 NA Inf
## 23 0 0.0 NA Inf
## 24 0 0.0 NA Inf
## 25 0 0.0 NA Inf
## 26 0 0.0 NA Inf
## 27 0 0.0 NA Y Inf
## 28 0 0.0 NA Inf
## 29 0 0.0 NA Inf
## 30 0 0.0 NA Inf
## 31 0 0.0 NA Inf
## 32 0 0.0 NA Inf
## 33 0 0.0 NA Inf
## 34 0 0.0 NA Inf
## 35 0 0.0 NA Inf
## 36 0 0.0 NA Inf
## 37 0 0.0 NA Inf
## 38 0 0.0 NA Inf
## 39 0 0.0 NA Inf
## 40 0 0.0 NA Inf
## 41 0 0.0 NA Inf
## 42 0 0.0 NA Inf
## 43 0 0.0 NA Inf
## 44 0 0.0 NA Inf
## 45 24 0.0 NA Inf
## 46 0 0.0 NA Inf
## 47 0 0.0 NA Inf
## 48 0 0.0 NA Inf
## 49 0 0.0 NA Inf
## 50 24 47.0 NA Inf
## 51 0 0.0 NA Inf
## 52 0 0.0 NA Inf
## 53 0 0.0 NA Inf
## 54 0 0.0 NA Inf
## 55 0 0.0 NA Inf
## 56 0 0.0 NA Inf
## 57 0 0.0 NA Inf
## 58 0 0.0 NA Inf
## 59 0 0.0 NA Inf
## 60 0 0.0 NA Inf
## 61 0 0.0 NA Inf
## 62 0 0.0 NA Inf
## 63 0 0.0 NA Inf
## 64 0 0.0 NA Inf
## 65 0 0.0 NA Inf
## 66 0 0.0 NA Inf
## 67 0 0.0 NA Inf
## 68 0 0.0 NA Inf
## 69 0 0.0 NA Inf
## 70 0 0.0 NA Inf
## 71 0 0.0 NA Inf
## 72 0 0.0 NA Inf
## 73 0 0.0 NA Inf
## 74 0 0.0 NA Inf
## 75 0 0.0 NA Inf
## 76 0 0.0 NA Inf
## 77 0 0.0 NA Inf
## 78 0 0.0 NA Inf
## 79 0 0.0 NA Inf
## 80 0 0.0 NA Inf
## 81 0 0.0 NA Inf
## 82 0 0.0 NA Inf
## 83 0 0.0 NA Inf
## 84 0 0.0 NA Inf
## 85 0 0.0 NA Inf
## 86 0 0.0 NA Inf
## 87 0 0.0 NA Inf
## 88 0 0.0 NA Inf
## 89 0 0.0 NA Inf
## 90 0 0.0 NA Inf
## 91 0 0.0 NA Inf
## 92 0 0.0 NA Inf
## 93 0 0.0 NA Inf
## 94 0 0.0 NA Inf
## 95 0 0.0 NA Inf
## 96 0 0.0 NA Inf
## 97 0 0.0 NA Inf
## 98 0 0.0 NA Inf
## 99 0 0.0 NA Inf
## 100 0 0.0 NA Inf
## 101 0 25.0 NA Inf
## 102 0 0.0 NA Inf
## 103 0 0.0 NA Inf
## 104 0 0.0 NA Inf
## 105 0 0.0 NA Inf
## 106 0 0.0 NA Inf
## 107 0 0.0 NA Inf
## 108 0 0.0 NA Inf
## 109 0 0.0 NA Inf
## 110 0 0.0 NA Inf
## 111 0 0.0 NA Inf
## 112 0 0.0 NA Inf
## 113 0 81.0 NA Inf
## 114 0 0.0 NA Inf
## 115 0 0.0 NA Inf
## 116 0 0.0 NA Inf
## 117 0 0.0 NA Inf
## 118 0 0.0 NA Inf
## 119 0 0.0 NA Inf
## 120 0 0.0 NA Inf
## 121 0 0.0 NA Inf
## 122 0 0.0 NA Inf
## 123 0 0.0 NA Inf
## 124 0 0.0 NA Inf
## 125 0 0.0 NA Inf
## 126 0 0.0 NA Inf
## 127 0 19.0 NA Inf
## 128 48 6.0 NA Inf
## 129 0 0.0 NA Inf
## 130 0 0.0 NA Inf
## 131 0 0.0 NA Inf
## 132 0 0.0 NA Inf
## 133 0 0.0 NA Inf
## 134 0 0.0 NA Inf
## 135 0 0.0 NA Inf
## 136 0 0.0 NA Inf
## 137 0 0.0 NA Inf
## 138 0 0.0 NA Inf
## 139 0 0.0 NA Inf
## 140 0 0.0 NA Inf
## 141 0 85.0 NA Inf
## 142 0 0.0 NA Inf
## 143 0 0.0 NA Inf
## 144 0 0.0 NA Inf
## 145 0 0.0 NA Inf
## 146 0 0.0 NA Inf
## 147 0 0.0 NA Inf
## 148 0 0.0 NA Inf
## 149 0 0.0 NA Inf
## 150 0 0.0 NA Inf
## 151 0 0.0 NA Inf
## 152 0 0.0 NA Inf
## 153 0 0.0 NA Inf
## 154 0 0.0 NA Inf
## 155 0 0.0 NA Inf
## 156 0 0.0 NA Inf
## 157 0 0.0 NA Inf
## 158 0 0.0 NA Inf
## 159 0 0.0 NA Inf
## 160 0 0.0 NA Inf
## 161 0 0.0 NA Inf
## 162 0 0.0 NA Inf
## 163 0 0.0 NA Inf
## 164 0 0.0 NA Inf
## 165 0 0.0 NA Inf
## 166 24 0.0 NA Inf
## 167 32 9.0 NA Inf
## 168 0 0.0 NA Inf
## 169 0 0.0 NA Inf
## 170 0 0.0 NA Inf
## 171 0 15.5 NA Inf
## 172 0 0.0 NA Inf
## 173 0 0.0 NA Inf
## 174 0 2.0 NA Inf
## 175 0 0.0 NA Inf
## 176 0 0.0 NA Inf
## 177 0 0.0 NA Inf
## 178 0 0.0 NA Inf
## 179 0 0.0 NA Inf
## 180 0 0.0 NA Inf
## 181 0 0.0 NA Inf
## 182 0 0.0 NA Inf
## 183 0 0.0 NA Inf
## 184 0 0.0 NA Inf
## 185 0 43.0 NA Inf
## 186 0 0.0 NA Inf
## 187 0 0.0 NA Inf
## 188 0 0.0 NA Inf
## 189 0 0.0 NA Inf
## 190 0 0.0 NA Inf
## 191 0 0.0 NA Inf
## 192 0 0.0 NA Inf
## 193 0 0.0 NA Inf
## 194 0 0.0 NA Inf
## 195 0 0.0 NA Inf
## 196 0 0.0 NA Inf
## 197 0 0.0 NA Inf
## 198 0 0.0 NA Inf
## 199 0 0.0 NA Inf
## 200 0 0.0 NA Inf
## 201 0 0.0 NA Inf
## 202 0 0.0 NA Inf
## 203 0 0.0 NA Inf
## 204 0 0.0 NA Inf
## 205 0 0.0 NA Inf
## 206 0 0.0 NA Inf
## 207 0 0.0 NA Inf
## 208 0 0.0 NA Inf
## 209 0 0.0 NA Inf
## 210 0 0.0 NA Inf
## 211 0 0.0 NA Inf
## 212 0 0.0 NA Inf
## 213 0 0.0 NA Inf
## 214 0 0.0 NA Inf
## 215 0 0.0 NA Inf
## 216 0 0.0 NA Inf
## 217 0 0.0 NA Inf
## 218 0 0.0 NA Inf
## 219 0 0.0 NA Inf
## 220 0 0.0 NA Inf
## 221 0 0.0 NA Inf
## 222 0 0.0 NA Inf
## 223 0 0.0 NA Inf
## 224 0 0.0 NA Inf
## 225 0 0.0 NA Inf
## 226 0 0.0 NA Inf
## 227 0 0.0 NA Inf
## 228 0 0.0 NA Inf
## 229 0 0.0 NA Inf
## 230 0 0.0 NA Inf
## 231 0 0.0 NA Inf
## 232 0 0.0 NA Inf
## 233 0 0.0 NA Inf
## 234 0 0.0 NA Inf
## 235 0 0.0 NA Inf
## 236 0 0.0 NA Inf
## 237 41 0.0 NA Inf
## 238 0 0.0 NA Inf
## 239 36 18.0 NA Inf
## 240 0 0.0 NA Inf
## 241 0 0.0 NA Inf
## 242 0 0.0 NA Inf
## 243 0 0.0 NA Y Inf
## 244 0 0.0 NA Inf
## 245 0 0.0 NA Inf
## 246 0 0.0 NA Inf
## 247 0 0.0 NA Inf
## 248 0 0.0 NA Inf
## 249 0 0.0 NA Inf
## 250 0 0.0 NA Inf
## 251 0 0.0 NA Inf
## 252 0 0.0 NA Inf
## 253 0 0.0 NA Inf
## 254 0 0.0 NA Inf
## 255 0 0.0 NA Inf
## 256 0 0.0 NA Inf
## 257 0 0.0 NA Inf
## 258 0 0.0 NA Inf
## 259 0 0.0 NA Inf
## 260 0 0.0 NA Inf
## 261 0 0.0 NA Inf
## 262 0 0.0 NA Inf
## 263 0 0.0 NA Inf
## 264 0 0.0 NA Inf
## 265 0 0.0 NA Inf
## 266 0 0.0 NA Inf
## 267 0 0.0 NA Inf
## 268 0 0.0 NA Inf
## 269 0 0.0 NA Inf
## 270 0 0.0 NA Inf
## 271 48 0.0 NA Inf
## 272 0 0.0 NA Inf
## 273 0 0.0 NA Inf
## 274 0 0.0 NA Inf
## 275 0 24.0 NA Inf
## 276 0 0.0 NA Inf
## 277 0 0.0 NA Inf
## 278 0 0.0 NA Inf
## 279 0 0.0 NA Inf
## 280 0 0.0 NA Inf
## 281 0 0.0 NA Inf
## 282 0 0.0 NA Inf
## 283 0 0.0 NA Inf
## 284 0 0.0 NA Inf
## 285 0 0.0 NA Inf
## 286 0 0.0 NA Inf
## 287 0 0.0 NA Inf
## 288 0 0.0 NA Inf
## 289 0 0.0 NA Inf
## 290 0 0.0 NA Inf
## 291 0 0.0 NA Inf
## 292 0 4.0 NA Inf
## 293 48 0.0 NA Inf
## 294 0 0.0 NA Inf
## 295 0 0.0 NA Inf
## 296 0 0.0 NA Inf
## 297 0 0.0 NA Inf
## 298 0 0.0 NA Inf
## 299 0 0.0 NA Inf
## 300 0 0.0 NA Inf
## 301 0 0.0 NA Inf
## 302 0 0.0 NA Inf
## 303 0 0.0 NA Inf
## 304 0 0.0 NA Inf
## 305 0 0.0 NA Inf
## 306 0 0.0 NA Inf
## 307 0 0.0 NA Inf
## 308 0 0.0 NA Inf
## 309 0 0.0 NA Inf
## 310 0 0.0 NA Inf
## 311 0 0.0 NA Inf
## 312 0 0.0 NA Inf
## 313 0 0.0 NA Inf
## 314 0 0.0 NA Inf
## 315 0 0.0 NA Inf
## 316 0 0.0 NA Inf
## 317 0 0.0 NA Inf
## 318 0 0.0 NA Inf
## 319 0 0.0 NA Inf
## 320 0 0.0 NA Inf
## 321 0 0.0 NA Inf
## 322 0 0.0 NA Inf
## 323 0 31.0 NA Inf
# This makes sense. 1022- 323 = 699? We have 579 left. Hmm...
useful_data <- added_column %>%
filter(fracinf != 'Inf')
# Well, we are down to number of observations we are supposed to have.You should find that we lost a lot of data, we are down to 579 observations (from a starting 1022). That would be troublesome for most studies if that would mean subjects drop out (that could lead to bias). Here it’s maybe less problematic since each observation is an outbreak collected from the literature. Still, dropping this many could lead to bias if all the ones that had NA or Infinity were somehow systematically different. It would be useful to look into and discuss in a real analysis.
Not uncommon for real datasets, this one has a lot of variables. Many are not too meaningful for modeling. Our question is what predicts the fraction of those that get infected, i.e., the new outcome we just created. We should first narrow down the predictor variables of interest based on scientific grounds.
For this analysis exercise, we just pick the following variables for further analysis: Action1, CasesAll, Category, Country, Deaths, GG2C4, Hemisphere, Hospitalizations, MeanA1, MeanD1, MeanI1, MedianA1, MedianD1, MedianI1, OBYear, Path1, RiskAll, Season, Setting, Trans1, Vomit. Of course, we also need to keep our outcome of interest.
Note that - as often happens for real data - there are inconsistencies between the codebook and the actual datasheet. Here, names of variables and spelling in the codebook do not fully agree with the data. The above list of variables is based on codebook, and you need to make sure you get the right names from the data when selecting those variables.
#write code to select the specified variables
#I am using useful_data, which already has those observations removed which are fracinf = Inf, leaving 579 observations. Now we will only select for those variables of interest.
reduced_set <- useful_data %>%
dplyr::select(Action1, CasesAll, Category, Country, Deaths, gg2c4, Hemisphere, Hospitalizations, MeanA1, MeanD1, MeanI1, MedianA1, MedianD1, MedianI1, OBYear, Path1, RiskAll, season, Setting_1, Setting_2, Trans1, Vomit, RateAll, fracinf)
#Taking a look at how our variable number went from 140 to 22+ 2 outcome variables(RateAll and fracinf), still keeping the same 579 observations as before.
str(reduced_set)## 'data.frame': 579 obs. of 24 variables:
## $ Action1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 3 3 3 4 3 ...
## $ CasesAll : int 65 27 4 15 6 40 10 116 45 191 ...
## $ Category : Factor w/ 12 levels "Daycare","Foodservice",..: 2 2 2 2 2 2 2 6 12 2 ...
## $ Country : Factor w/ 22 levels "Australia","Austria",..: 22 17 17 17 17 17 17 17 22 22 ...
## $ Deaths : int 0 0 0 0 0 0 0 0 0 0 ...
## $ gg2c4 : Factor w/ 2 levels "","Yes": 1 2 1 2 1 1 1 2 1 1 ...
## $ Hemisphere : Factor w/ 3 levels "Northern","Southern",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Hospitalizations: int 0 0 0 0 0 0 0 5 10 0 ...
## $ MeanA1 : num NA NA NA NA NA NA NA NA NA NA ...
## $ MeanD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanI1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianA1 : num NA NA NA NA NA NA NA NA NA NA ...
## $ MedianD1 : num 36 0 0 0 0 0 0 0 48 24 ...
## $ MedianI1 : int 37 0 0 0 0 0 0 0 31 33 ...
## $ OBYear : Factor w/ 23 levels "0","1983","1990",..: 10 19 19 19 19 19 19 17 5 11 ...
## $ Path1 : Factor w/ 4 levels "No","Unknown",..: 1 3 3 3 3 3 3 1 3 1 ...
## $ RiskAll : num 108 130 4 25 8 ...
## $ season : Factor w/ 5 levels "","Fall","Spring",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ Setting_1 : Factor w/ 388 levels "\tPsychiatric Care Center adjoined",..: 32 39 310 39 352 39 310 201 3 217 ...
## $ Setting_2 : Factor w/ 329 levels "","\"elderly care facility\"",..: 3 37 263 37 302 37 263 7 3 60 ...
## $ Trans1 : Factor w/ 6 levels "Environmental",..: 2 2 2 2 2 2 2 5 2 2 ...
## $ Vomit : int 1 1 1 1 1 1 1 1 1 1 ...
## $ RateAll : num 39.8 20.8 100 60 75 ...
## $ fracinf : num 60.2 20.8 100 60 75 ...
## Action1 CasesAll Category Country
## No : 0 Min. : 1.00 Foodservice :209 Japan :245
## Unknown : 2 1st Qu.: 8.00 Leisure :114 Other :233
## Unspecified:446 Median : 23.00 Nursing Home: 69 USA : 74
## Yes :131 Mean : 97.23 Hospital : 48 Multiple : 15
## 3rd Qu.: 66.50 Other : 41 Unspecified: 12
## Max. :7150.00 School : 37 Australia : 0
## (Other) : 61 (Other) : 0
## Deaths gg2c4 Hemisphere Hospitalizations
## Min. :0.00000 :400 Northern :548 Min. : 0.0000
## 1st Qu.:0.00000 Yes:179 Southern : 30 1st Qu.: 0.0000
## Median :0.00000 Unspecified: 1 Median : 0.0000
## Mean :0.06679 Mean : 0.6661
## 3rd Qu.:0.00000 3rd Qu.: 0.0000
## Max. :9.00000 Max. :99.0000
## NA's :25 NA's :25
## MeanA1 MeanD1 MeanI1 MedianA1
## Min. : 1.00 Min. : 0.000 Min. : 0.0000 Min. : 0.747
## 1st Qu.:19.25 1st Qu.: 0.000 1st Qu.: 0.0000 1st Qu.:12.000
## Median :38.50 Median : 0.000 Median : 0.0000 Median :34.000
## Mean :36.92 Mean : 1.795 Mean : 0.8204 Mean :31.072
## 3rd Qu.:47.50 3rd Qu.: 0.000 3rd Qu.: 0.0000 3rd Qu.:44.500
## Max. :83.00 Max. :96.000 Max. :43.0000 Max. :79.000
## NA's :553 NA's :541
## MedianD1 MedianI1 OBYear Path1
## Min. : 0.000 Min. : 0.00 2006 : 99 No :133
## 1st Qu.: 0.000 1st Qu.: 0.00 2002 : 59 Unknown : 2
## Median : 0.000 Median : 0.00 2003 : 59 Unspecified:407
## Mean : 3.337 Mean : 2.23 1999 : 49 Yes : 37
## 3rd Qu.: 0.000 3rd Qu.: 0.00 2000 : 45
## Max. :72.000 Max. :65.00 2005 : 41
## (Other):227
## RiskAll season Setting_1
## Min. : 1.0 : 40 Restaurant : 88
## 1st Qu.: 26.5 Fall : 97 0 : 70
## Median : 78.0 Spring:124 Nursing Care Center: 25
## Mean : 663.0 Summer: 67 cruise ship : 22
## 3rd Qu.: 234.0 Winter:251 Hotel : 20
## Max. :35000.0 Hospital : 18
## (Other) :336
## Setting_2 Trans1 Vomit
## 0 :130 Environmental : 8 Min. :0.0000
## Restaurant : 97 Foodborne :245 1st Qu.:0.0000
## : 20 Person to Person: 84 Median :1.0000
## Hotel : 17 Unknown : 44 Mean :0.5692
## cruise ship : 13 Unspecified :156 3rd Qu.:1.0000
## private home: 9 Waterborne : 42 Max. :1.0000
## (Other) :293 NA's :1
## RateAll fracinf
## Min. : 0.4074 Min. : 0.3995
## 1st Qu.: 17.0000 1st Qu.: 16.9091
## Median : 38.4375 Median : 37.5246
## Mean : 41.2942 Mean : 41.2181
## 3rd Qu.: 60.0000 3rd Qu.: 60.0000
## Max. :105.0000 Max. :100.0000
##
Your reduced dataset should contain 579 observations and 22 variables.
With this reduced dataset, we’ll likely still need to perform further cleaning. We can start by looking at missing data. While the summary function gives that information, it is somewhat tedious to pull out. We can just focus on NA for each variable and look at the text output, or for lots of predictors, a graphical view is easier to understand. The latter has the advantage of showing potential clustering of missing values.
# this code prints number of missing for each variable (assuming your dataframe is called d)
print(colSums(is.na(reduced_set)))## Action1 CasesAll Category Country
## 0 0 0 0
## Deaths gg2c4 Hemisphere Hospitalizations
## 25 0 0 25
## MeanA1 MeanD1 MeanI1 MedianA1
## 553 0 0 541
## MedianD1 MedianI1 OBYear Path1
## 0 0 0 0
## RiskAll season Setting_1 Setting_2
## 0 0 0 0
## Trans1 Vomit RateAll fracinf
## 0 1 0 0
# write code to use the visdat R package, add code that plots a heatmap of missing values
# I added library loading of this package to the top of my code
# The vis_miss function shows us MeanA1 and MedianA1 are really the only two major contributors of variables with NAs. This is also visible in vis_dat, but we have sorted it in vis_miss with sort_miss = TRUE. Deaths and hospitalizations are the next highest missing value variables, but at less than 5% missing compared to the 96% and 93% missing variables in MeanA1 and MedianA1, respectively.
vis_miss(reduced_set, sort_miss= TRUE)

It looks like we have a lot of missing data for the MeanA1 and MedianA1 variables. If we wanted to keep those variables, we would be left with very few observations. So let’s drop those two variables. After that, we will drop all observations that have missing data (seems to be Hospitalization and Deaths).
# write code to remove the 2 "A1" variables, then drop all remaining observations with NA
refined_set <- reduced_set %>%
dplyr::select(Action1, CasesAll, Category, Country, Deaths, gg2c4, Hemisphere, Hospitalizations, MeanD1, MeanI1, MedianD1, MedianI1, OBYear, Path1, RiskAll, season, Setting_1, Setting_2, Trans1, Vomit, RateAll, fracinf)
#drop all observations with missing data (the hospitalizations and deaths)
refined_set <- na.omit(refined_set)
# Now we are down to 22 variables of interest
str(refined_set)## 'data.frame': 553 obs. of 22 variables:
## $ Action1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 3 3 3 3 3 4 3 ...
## $ CasesAll : int 65 27 4 15 6 40 10 116 45 191 ...
## $ Category : Factor w/ 12 levels "Daycare","Foodservice",..: 2 2 2 2 2 2 2 6 12 2 ...
## $ Country : Factor w/ 22 levels "Australia","Austria",..: 22 17 17 17 17 17 17 17 22 22 ...
## $ Deaths : int 0 0 0 0 0 0 0 0 0 0 ...
## $ gg2c4 : Factor w/ 2 levels "","Yes": 1 2 1 2 1 1 1 2 1 1 ...
## $ Hemisphere : Factor w/ 3 levels "Northern","Southern",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ Hospitalizations: int 0 0 0 0 0 0 0 5 10 0 ...
## $ MeanD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanI1 : int 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianD1 : num 36 0 0 0 0 0 0 0 48 24 ...
## $ MedianI1 : int 37 0 0 0 0 0 0 0 31 33 ...
## $ OBYear : Factor w/ 23 levels "0","1983","1990",..: 10 19 19 19 19 19 19 17 5 11 ...
## $ Path1 : Factor w/ 4 levels "No","Unknown",..: 1 3 3 3 3 3 3 1 3 1 ...
## $ RiskAll : num 108 130 4 25 8 ...
## $ season : Factor w/ 5 levels "","Fall","Spring",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ Setting_1 : Factor w/ 388 levels "\tPsychiatric Care Center adjoined",..: 32 39 310 39 352 39 310 201 3 217 ...
## $ Setting_2 : Factor w/ 329 levels "","\"elderly care facility\"",..: 3 37 263 37 302 37 263 7 3 60 ...
## $ Trans1 : Factor w/ 6 levels "Environmental",..: 2 2 2 2 2 2 2 5 2 2 ...
## $ Vomit : int 1 1 1 1 1 1 1 1 1 1 ...
## $ RateAll : num 39.8 20.8 100 60 75 ...
## $ fracinf : num 60.2 20.8 100 60 75 ...
## - attr(*, "na.action")= 'omit' Named int 17 18 42 46 51 52 53 54 55 66 ...
## ..- attr(*, "names")= chr "17" "18" "42" "46" ...
## Action1 CasesAll Category Country
## No : 0 Min. : 1.00 Foodservice :204 Japan :242
## Unknown : 2 1st Qu.: 8.00 Leisure :110 Other :214
## Unspecified:430 Median : 22.00 Nursing Home: 66 USA : 72
## Yes :121 Mean : 88.56 Hospital : 44 Multiple : 14
## 3rd Qu.: 63.00 Other : 38 Unspecified: 11
## Max. :7150.00 Unspecified : 36 Australia : 0
## (Other) : 55 (Other) : 0
## Deaths gg2c4 Hemisphere Hospitalizations
## Min. :0.00000 :380 Northern :526 Min. : 0.0000
## 1st Qu.:0.00000 Yes:173 Southern : 26 1st Qu.: 0.0000
## Median :0.00000 Unspecified: 1 Median : 0.0000
## Mean :0.06691 Mean : 0.6673
## 3rd Qu.:0.00000 3rd Qu.: 0.0000
## Max. :9.00000 Max. :99.0000
##
## MeanD1 MeanI1 MedianD1 MedianI1
## Min. : 0.000 Min. : 0.0000 Min. : 0.000 Min. : 0.000
## 1st Qu.: 0.000 1st Qu.: 0.0000 1st Qu.: 0.000 1st Qu.: 0.000
## Median : 0.000 Median : 0.0000 Median : 0.000 Median : 0.000
## Mean : 1.812 Mean : 0.8589 Mean : 3.298 Mean : 2.112
## 3rd Qu.: 0.000 3rd Qu.: 0.0000 3rd Qu.: 0.000 3rd Qu.: 0.000
## Max. :96.000 Max. :43.0000 Max. :72.000 Max. :65.000
##
## OBYear Path1 RiskAll season
## 2006 : 98 No :123 Min. : 1.0 : 40
## 2002 : 59 Unknown : 2 1st Qu.: 25.0 Fall : 86
## 2003 : 57 Unspecified:407 Median : 76.0 Spring:117
## 1999 : 45 Yes : 21 Mean : 556.2 Summer: 63
## 2005 : 40 3rd Qu.: 225.0 Winter:247
## 2000 : 36 Max. :24000.0
## (Other):218
## Setting_1 Setting_2 Trans1
## Restaurant : 87 0 :128 Environmental : 8
## 0 : 70 Restaurant : 96 Foodborne :238
## Nursing Care Center: 25 : 19 Person to Person: 73
## cruise ship : 22 Hotel : 17 Unknown : 43
## Hotel : 20 cruise ship : 13 Unspecified :153
## restaurant : 16 private home: 9 Waterborne : 38
## (Other) :313 (Other) :271
## Vomit RateAll fracinf
## Min. :0.0000 Min. : 0.4074 Min. : 0.3995
## 1st Qu.:0.0000 1st Qu.: 17.5000 1st Qu.: 17.5000
## Median :1.0000 Median : 38.8889 Median : 38.0952
## Mean :0.5515 Mean : 41.6424 Mean : 41.5386
## 3rd Qu.:1.0000 3rd Qu.: 60.0000 3rd Qu.: 60.0000
## Max. :1.0000 Max. :105.0000 Max. :100.0000
##
Let’s now check the format of each variable. Depending on how you loaded the data, some variables might not be in the right format. Make sure everything that should be numeric is numeric/integer, everything that should be a factor is a factor. There should be no variable coded as character. Once all variables have the right format, take a look at the data again.
# write code to format variables as needed
# With our vis_dat plot, we can see no variables have a 'character' coding.
vis_dat(raw_data)


Take another look at the data. You should find that for the dataset, most things look reasonable, but the variable Setting_1 has a lot of different levels/values. That many categories, most with only a single entry, will likely not be meaningful for modeling. One option is to drop the variable. But assume we think it’s an important variable to include and we are especially interested in the difference between restaurant settings and other settings. We could then create a new variable that has only two levels, Restaurant and Other.
#write code that creates a new variable called `Setting` based on `Setting_1` but with only 2 levels, `Restaurant` and `Other`. Then remove the `Setting_1` variable. Note that restaurant is sometimes capitalized and sometimes not. You need to fix that first. For these lines of code, the 'Factor' chapter (Chapter 15) in R4DS might be helpful here.
# I went ahead and added loading the forcats library to my code on top
# Let's review this categoty
head(levels(refined_set$Setting_1))## [1] "\tPsychiatric Care Center adjoined"
## [2] "\tPsychiatric Care Center attached"
## [3] "0"
## [4] "2 communities near Apalachicola Bay"
## [5] "2 hotels in Queensland"
## [6] "3 wards of Alfred Hospital"
# So many levels! 388 different answers
#I played around with this for a long time trying to figure out how to use mutate with fct_collapse or another function in Factors to solve this issue, like fct_lump. Moved on and did subset, which got me 104 pulled restaurants out of the data. Also more briefly tried an awkward grep code for uppercase and lowercase Setting_1 restaurant tags
#here is what worked for me to label the restaurants
restaurant_settings <- subset(refined_set, Setting_1 == "restaurant" | Setting_1 == "Restaurant")
other_settings <- subset(refined_set, Setting_1 != "restaurant" & Setting_1 != "Restaurant")
restaurant_settings_edit <- restaurant_settings %>%
mutate(Setting = "Restaurant") %>%
select(-c(Setting_1, Setting_2))
other_settings_edit <- other_settings %>%
mutate(Setting = "Other") %>%
select(-c(Setting_1, Setting_2))
#here I incorporated gtools (library loaded at top) to use smartbind and paste both of my subsets together. It appears to have worked, as I am back with 579 rows again. Let's glance and see...
final_draft <- smartbind(restaurant_settings_edit,other_settings_edit)
str(final_draft)## 'data.frame': 553 obs. of 21 variables:
## $ Action1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 4 4 3 3 3 3 3 ...
## $ CasesAll : int 4 10 19 683 51 33 9 16 50 32 ...
## $ Category : Factor w/ 12 levels "Daycare","Foodservice",..: 2 2 2 2 2 2 2 2 2 2 ...
## $ Country : Factor w/ 22 levels "Australia","Austria",..: 17 17 12 12 17 12 12 17 22 17 ...
## $ Deaths : int 0 0 0 0 0 0 0 0 0 0 ...
## $ gg2c4 : Factor w/ 2 levels "","Yes": 1 1 1 1 1 1 2 1 2 1 ...
## $ Hemisphere : Factor w/ 3 levels "Northern","Southern",..: 1 1 1 1 1 1 1 2 1 1 ...
## $ Hospitalizations: int 0 0 0 0 0 0 0 0 0 0 ...
## $ MeanD1 : num 0 0 0 0 43 0 0 0 0 0 ...
## $ MeanI1 : int 0 0 0 31 32 0 0 28 0 0 ...
## $ MedianD1 : num 0 0 0 0 0 0 0 0 0 0 ...
## $ MedianI1 : int 0 0 0 0 33 0 0 0 0 0 ...
## $ OBYear : Factor w/ 23 levels "0","1983","1990",..: 19 19 16 16 12 10 11 11 14 20 ...
## $ Path1 : Factor w/ 4 levels "No","Unknown",..: 3 3 3 4 1 3 3 1 3 3 ...
## $ RiskAll : num 4 12 58 1492 72 ...
## $ season : Factor w/ 5 levels "","Fall","Spring",..: 2 2 2 2 2 2 2 2 2 3 ...
## $ Trans1 : Factor w/ 6 levels "Environmental",..: 2 2 2 2 2 2 2 5 2 2 ...
## $ Vomit : int 1 1 0 1 1 1 0 1 0 1 ...
## $ RateAll : num 100 83.3 33 44.2 65.3 ...
## $ fracinf : num 100 83.3 32.8 45.8 70.8 ...
## $ Setting : chr "Restaurant" "Restaurant" "Restaurant" "Restaurant" ...


# The plots above are looking interesting. Total number of suspected cases and total RateAll accross all observations is the same in both the refined set with Setting_1 and Setting_2 and the final_draft with only Setting: Restaurant or Other
sum(refined_set$CasesAll)## [1] 48973
## [1] 48973
## [1] "Yay!"
Next, let’s create a few plots showing the outcome and the predictors.
#write code that produces plots showing our outcome of interest on the y-axis and each numeric predictor on the x-axis. (MeanD1, MedianD1, RiskAll)
#you can use the facet_wrap functionality in ggplot for it, or do it some other way.
#The preliminary graphs above show that maybe other locations besides restaurants had a lower total number of suspected cases. That was just fun. Let's see what these show.
#played with gridExtra here. library loaded at the top
ggplot(final_draft, aes(RiskAll, RateAll)) + geom_point()-> p1
ggplot(final_draft, aes(MedianD1, RateAll)) + geom_point() -> p2
ggplot(final_draft, aes(MeanD1, RateAll)) + geom_point() -> p3
ggplot(final_draft, aes(Hospitalizations, RateAll)) + geom_point() -> p4
ggplot(final_draft, aes(Vomit, RateAll)) + geom_point() -> p5
ggplot(final_draft, aes(MeanI1, RateAll)) + geom_point() -> p6
ggplot(final_draft, aes(MedianI1, RateAll)) + geom_point() -> p7
ggplot(final_draft, aes(CasesAll, RateAll)) + geom_point() -> p8
ggplot(final_draft, aes(Deaths, RateAll)) + geom_point() -> p9
ggplot(final_draft, aes(OBYear, RateAll)) + geom_point() -> p9
grid.arrange(p1, p2, p3, p4, p5, p6, p7, p8, ncol=2)

One thing I notice in the plots is that there are lots of zeros for many predictors and things look skewed. That’s ok, but means we should probably standardize these predictors. One strange finding (that I could have caught further up when printing the numeric summaries, but didn’t) is that there is (at least) one outbreak that has outbreak year reported as 0. That is, of course, wrong and needs to be fixed. There are different ways of fixing it, the best, of course, would be to trace it back and try to fix it with the right value. We won’t do that here. Instead, we’ll remove that observation.
# write code that figures out which observation(s) have 0 years and remove those from the dataset.
#Let's look closer at that last OBYear graph we made. If we look with drop=FALSE for discretely dropping factor levels with no data, there are two years (1992 and a year range of 2002-2007) that have no data within them, also.
ggplot(final_draft, aes(OBYear, RateAll)) + geom_point() + scale_fill_discrete(drop=FALSE) + scale_x_discrete(drop=FALSE)
## Factor w/ 23 levels "0","1983","1990",..: 19 19 16 16 12 10 11 11 14 20 ...
# Rip it out
removed_0OBYear <- subset(final_draft, OBYear != "0")
# I can see the 0 timepoint is gone now. The droplevels function also removed the factor levels for years that had no data attached as well.
removed_0OBYear <- droplevels(removed_0OBYear)
glimpse(removed_0OBYear$OBYear)## Factor w/ 20 levels "1983","1990",..: 16 16 13 13 10 8 9 9 12 17 ...

Another useful check is to see if there are strong correlations between some of the numeric predictors. That might indicate collinearity, and some models can’t handle that very well. In such cases, one might want to remove a predictor. We’ll create a correlation plot of the numeric variables to inspect this.
# using e.g. the corrplot package (or any other you like), create a correlation plot of the numeric variables
#update final draft to match our last edited data version
final_draft <- removed_0OBYear
#final_draft
#Let's make a correlation matrix of our numeric variables only by making a numericOnly group
numericOnly <- final_draft %>%
select_if(is.numeric)
corM <- cor(numericOnly)
corrplot(corM, type="upper", method="circle")
It doesn’t look like there are any very strong correlations between continuous variables, so we can keep them all for now.
Next, let’s create plots for the categorical variables, again our main outcome of interest on the y-axis.
#write code that produces plots showing our outcome of interest on the y-axis and each categorical predictor on the x-axis.
#you can use the facet_wrap functionality in ggplot for it, or do it some other way.
# ggplot with stat="identity" so the height of the bar is representative of the value in the data and not a weighted accross the groups. Also added to leave the x axis text blank since there are color codings to the levels of each categorical predictor.
ggplot(final_draft, aes(Category, RateAll)) + geom_bar(stat="identity", aes(fill=Category)) + theme( axis.text.x = element_blank(), legend.position = "bottom", legend.key.size = unit(0.1, "cm")) -> p1
ggplot(final_draft, aes(Country, RateAll)) + geom_bar(stat="identity", aes(fill=Country)) + theme( axis.text.x = element_blank(), legend.position = "bottom", legend.key.size = unit(0.1, "cm")) -> p2
ggplot(final_draft, aes(Hemisphere, RateAll)) + geom_bar(stat="identity", aes(fill=Hemisphere)) + theme( axis.text.x = element_blank()) -> p3
ggplot(final_draft, aes(Path1, RateAll)) + geom_bar(stat="identity", aes(fill=Path1)) + theme( axis.text.x = element_blank()) -> p4
ggplot(final_draft, aes(Trans1, RateAll)) + geom_bar(stat="identity", aes(fill=Trans1)) + theme( axis.text.x = element_blank(), legend.position = "bottom", legend.key.size = unit(0.1, "cm")) -> p5
ggplot(final_draft, aes(season, RateAll)) + geom_bar(stat="identity", aes(fill=season)) + theme( axis.text.x = element_blank(), legend.position = "bottom", legend.key.size = unit(0.1, "cm")) -> p6
ggplot(final_draft, aes(Action1, RateAll)) + geom_bar(stat="identity", aes(fill=Action1)) + theme( axis.text.x = element_blank(), legend.position = "bottom", legend.key.size = unit(0.1, "cm")) -> p7
ggplot(final_draft, aes(gg2c4, RateAll)) + geom_bar(stat="identity", aes(fill=gg2c4)) + theme( axis.text.x = element_blank()) -> p8
#trying cowplot this time, library loaded at beginning. I played with this for a while trying to aesthetically make it more pleasing while not cutting off the separate color coded keys. Will move on since this is exploratory.
cowplot::plot_grid(p1, p2, p3, p4, p5, p6, p7, p8)
The plots do not look pretty, which is ok for exploratory. We can see that a few variables have categories with very few values (again, something we could have also seen using summary, but graphically it is usually easier to see). This will likely produce problems when we fit using cross-validation, so we should fix that. Options we have:
Setting variable.Let’s use a mix of these approaches. We’ll drop the Category variable, we’ll remove the observation(s) with Unspecified in the Hemisphere variable, and we’ll combine Unknown with Unspecified for Action1 and Path1 variables.
# write code that implements the cleaning steps described above.
# then check again (e.g. with a plot) to make sure things worked
final_draft## Action1 CasesAll Category Country Deaths gg2c4
## 1:1 Unspecified 4 Foodservice Other 0
## 1:2 Unspecified 10 Foodservice Other 0
## 1:3 Unspecified 19 Foodservice Japan 0
## 1:4 Yes 683 Foodservice Japan 0
## 1:5 Yes 51 Foodservice Other 0
## 1:6 Unspecified 33 Foodservice Japan 0
## 1:7 Unspecified 9 Foodservice Japan 0 Yes
## 1:8 Unspecified 16 Foodservice Other 0
## 1:9 Unspecified 50 Foodservice USA 0 Yes
## 1:10 Unspecified 32 Foodservice Other 0
## 1:11 Unspecified 32 Foodservice Japan 0
## 1:12 Unspecified 48 Foodservice Japan 0
## 1:13 Unspecified 12 Foodservice Japan 0
## 1:14 Unspecified 2 Foodservice Japan 0
## 1:15 Unspecified 3 Foodservice Japan 0
## 1:16 Unspecified 18 Foodservice Japan 0
## 1:17 Unspecified 14 Foodservice Japan 0
## 1:18 Unspecified 8 Foodservice Japan 0
## 1:19 Unspecified 9 Foodservice Japan 0
## 1:20 Unspecified 3 Foodservice Japan 0
## 1:21 Unspecified 2 Foodservice Japan 0
## 1:22 Unspecified 29 Foodservice Japan 0
## 1:23 Unspecified 40 Foodservice Japan 0
## 1:24 Unspecified 6 Foodservice Japan 0
## 1:25 Unspecified 72 Foodservice Japan 0
## 1:26 Unspecified 4 Foodservice Japan 0
## 1:27 Unspecified 5 Foodservice Japan 0
## 1:28 Unspecified 6 Foodservice Japan 0
## 1:29 Unspecified 7 Foodservice Japan 0
## 1:30 Unspecified 14 Foodservice Japan 0 Yes
## 1:31 Unspecified 15 Foodservice Japan 0
## 1:32 Unspecified 3 Foodservice Japan 0
## 1:33 Unspecified 5 Foodservice Japan 0
## 1:34 Unspecified 2 Foodservice Japan 0
## 1:35 Yes 9 Foodservice Other 0
## 1:36 Yes 29 Foodservice Other 0
## 1:37 Yes 433 Foodservice USA 0
## 1:38 Unspecified 3 Foodservice Other 0
## 1:39 Unspecified 5 Foodservice Japan 0 Yes
## 1:40 Unspecified 42 Foodservice Other 0
## 1:41 Unspecified 124 Foodservice Japan 0
## 1:42 Unspecified 2 Foodservice Other 0 Yes
## 1:43 Unspecified 11 Foodservice Other 0
## 1:44 Unspecified 14 Foodservice Other 0
## 1:45 Unspecified 2 Foodservice Other 0
## 1:46 Unspecified 36 Foodservice USA 0
## 1:47 Yes 387 Foodservice USA 0
## 1:48 Unspecified 34 Foodservice Japan 0
## 1:49 Unspecified 6 Foodservice Japan 0
## 1:50 Unspecified 8 Foodservice Japan 0
## 1:51 Unspecified 11 Foodservice Japan 0
## 1:52 Unspecified 10 Foodservice Japan 0
## 1:53 Unspecified 6 Foodservice Japan 0
## 1:54 Unspecified 6 Foodservice Japan 0
## 1:55 Unspecified 34 Foodservice Japan 0
## 1:56 Unspecified 15 Foodservice Japan 0 Yes
## 1:57 Unspecified 38 Foodservice Japan 0
## 1:58 Unspecified 11 Foodservice Japan 0
## 1:59 Unspecified 4 Foodservice Japan 0
## 1:60 Unspecified 20 Foodservice Japan 0
## 1:61 Unspecified 3 Foodservice Japan 0
## 1:62 Unspecified 2 Foodservice Japan 0
## 1:63 Unspecified 6 Foodservice Japan 0
## 1:64 Unspecified 55 Foodservice Japan 0
## 1:65 Unspecified 7 Foodservice Japan 0
## 1:66 Unspecified 3 Foodservice Japan 0
## 1:67 Unspecified 57 Foodservice Japan 0
## 1:68 Unspecified 8 Foodservice Japan 0
## 1:69 Unspecified 4 Foodservice Japan 0
## 1:70 Unspecified 10 Foodservice Japan 0
## 1:71 Unspecified 19 Foodservice Japan 0
## 1:72 Unspecified 9 Foodservice Japan 0
## 1:73 Unspecified 19 Foodservice Japan 0
## 1:74 Unspecified 3 Foodservice Japan 0
## 1:75 Unspecified 2 Foodservice Japan 0
## 1:76 Unspecified 7 Foodservice Japan 0
## 1:77 Unspecified 11 Foodservice Japan 0
## 1:78 Unspecified 7 Foodservice Japan 0 Yes
## 1:79 Unspecified 13 Foodservice Japan 0
## 1:80 Unspecified 2 Foodservice Japan 0 Yes
## 1:81 Unspecified 2 Foodservice Japan 0
## 1:82 Unspecified 7 Foodservice Japan 0
## 1:83 Unspecified 32 Foodservice Japan 0 Yes
## 1:84 Unspecified 12 Foodservice Japan 0
## 1:85 Unspecified 13 Foodservice Japan 0 Yes
## 1:86 Unspecified 4 Foodservice Japan 0 Yes
## 1:87 Unspecified 11 Foodservice Japan 0
## 1:88 Unspecified 15 Foodservice Japan 0
## 1:89 Unspecified 17 Foodservice Japan 0 Yes
## 1:90 Unspecified 22 Foodservice Japan 0 Yes
## 1:91 Unspecified 12 Foodservice Japan 0
## 1:92 Unspecified 12 Foodservice Japan 0
## 1:93 Unspecified 20 Foodservice Japan 0
## 1:94 Unspecified 4 Foodservice Japan 0
## 1:95 Unspecified 2 Foodservice Japan 0
## 1:96 Unspecified 29 Foodservice Other 0 Yes
## 1:97 Unspecified 30 Foodservice Other 0
## 1:98 Unspecified 8 Foodservice Japan 0
## 1:99 Yes 2 Foodservice Other 0
## 1:100 Unspecified 9 Foodservice Japan 0 Yes
## 1:101 Unspecified 18 Foodservice Japan 0
## 1:102 Unspecified 47 Foodservice Japan 0
## 1:103 Unspecified 21 Foodservice Other 0
## 2:1 Unspecified 65 Foodservice USA 0
## 2:2 Unspecified 27 Foodservice Other 0 Yes
## 2:3 Unspecified 15 Foodservice Other 0 Yes
## 2:4 Unspecified 6 Foodservice Other 0
## 2:5 Unspecified 40 Foodservice Other 0
## 2:6 Unspecified 116 Nursing Home Other 0 Yes
## 2:7 Yes 45 Unspecified USA 0
## 2:8 Unspecified 191 Foodservice USA 0
## 2:9 Unspecified 19 School USA 0
## 2:10 Yes 369 Leisure Multiple 0
## 2:11 Yes 131 Leisure Multiple 0
## 2:12 Yes 492 Leisure Multiple 0
## 2:13 Yes 1169 Other USA 0
## 2:14 Yes 32 Leisure USA 0 Yes
## 2:15 Unspecified 7 Leisure Other 0 Yes
## 2:16 Yes 44 Nursing Home Other 0
## 2:17 Unspecified 57 Foodservice Japan 0
## 2:18 Unspecified 26 Nursing Home Japan 0
## 2:19 Yes 139 School Other 0
## 2:20 Yes 387 Leisure Multiple 0 Yes
## 2:21 Unspecified 12 Other Japan 0
## 2:22 Unspecified 3 Other Japan 0
## 2:23 Unspecified 12 Daycare Japan 0 Yes
## 2:24 Unspecified 50 Daycare Japan 0
## 2:25 Unspecified 19 Daycare Japan 0
## 2:26 Unspecified 19 Foodservice Japan 0 Yes
## 2:27 Unspecified 19 Foodservice Japan 0
## 2:28 Unspecified 27 Leisure USA 0
## 2:29 Yes 77 Other USA 0
## 2:30 Yes 120 Foodservice Other 0
## 2:31 Yes 77 Hospital Other 1 Yes
## 2:32 Yes 10 Foodservice USA 0
## 2:33 Unspecified 300 Other Other 0
## 2:34 Yes 99 School Japan 0
## 2:35 Unspecified 2 Nursing Home Japan 0 Yes
## 2:36 Unspecified 3 Hospital Japan 0 Yes
## 2:37 Unspecified 2 Hospital Japan 0 Yes
## 2:38 Yes 84 Foodservice USA 0
## 2:39 Yes 60 Nursing Home Other 0 Yes
## 2:40 Unspecified 5 Unspecified Japan 0
## 2:41 Unspecified 2 Unspecified Japan 0
## 2:42 Unspecified 51 School Japan 0
## 2:43 Unspecified 6 Foodservice Japan 0
## 2:44 Unspecified 200 Leisure USA 0
## 2:45 Unspecified 47 Foodservice USA 0
## 2:46 Unspecified 54 Foodservice USA 0
## 2:47 Unspecified 56 Foodservice USA 0
## 2:48 Unspecified 119 Other Medical Setting Multiple 4 Yes
## 2:49 Unspecified 65 Nursing Home Other 0
## 2:50 Unspecified 369 Leisure Other 0 Yes
## 2:51 Unspecified 11 Leisure Other 0
## 2:52 Yes 704 Leisure Other 0 Yes
## 2:53 Yes 651 Leisure Other 0 Yes
## 2:54 Unspecified 131 Leisure Other 0 Yes
## 2:55 Unspecified 22 Daycare USA 0 Yes
## 2:56 Unspecified 85 Leisure USA 0 Yes
## 2:57 Unspecified 7150 Other USA 0 Yes
## 2:58 Unspecified 126 Nursing Home USA 0 Yes
## 2:59 Unspecified 37 Nursing Home Other 0 Yes
## 2:60 Yes 108 Other Medical Setting Japan 0 Yes
## 2:61 Yes 1173 Other USA 0
## 2:62 Yes 413 Foodservice Other 0
## 2:63 Yes 478 School USA 0
## 2:64 Yes 451 School USA 0
## 2:65 Yes 156 School USA 0
## 2:66 Unspecified 8 Hospital Other 0
## 2:67 Unspecified 8 Hospital Other 0
## 2:68 Unspecified 13 Hospital Other 0
## 2:69 Unspecified 14 Hospital Other 0
## 2:70 Yes 30 Leisure Other 0
## 2:71 Yes 22 Leisure USA 0 Yes
## 2:72 Yes 15 Foodservice Other 0
## 2:73 Yes 46 Daycare Other 0
## 2:74 Yes 15 Foodservice Other 0
## 2:75 Unspecified 33 Foodservice Other 0
## 2:76 Yes 104 Other Multiple 4 Yes
## 2:77 Yes 51 Nursing Home Other 0
## 2:78 Unspecified 35 Nursing Home Other 0
## 2:79 Unspecified 40 Leisure Other 0 Yes
## 2:80 Unspecified 4 Foodservice Other 0
## 2:81 Unspecified 12 Foodservice Other 0
## 2:82 Unspecified 19 Foodservice Other 0 Yes
## 2:83 Unspecified 15 Leisure Other 0 Yes
## 2:84 Unspecified 62 Leisure Other 0 Yes
## 2:85 Unspecified 18 Nursing Home Other 0
## 2:86 Yes 23 Foodservice USA 0
## 2:87 Yes 55 Foodservice USA 0
## 2:88 Yes 9 Foodservice USA 0
## 2:89 Yes 359 Leisure Multiple 0
## 2:90 Yes 125 Foodservice USA 0 Yes
## 2:91 Unspecified 64 Foodservice USA 0
## 2:92 Unspecified 2700 Leisure USA 0
## 2:93 Yes 195 Foodservice Other 0
## 2:94 Yes 29 Hospital Other 0 Yes
## 2:95 Unspecified 29 Other Japan 0
## 2:96 Unspecified 139 School Japan 0 Yes
## 2:97 Unspecified 25 Nursing Home Japan 0 Yes
## 2:98 Unspecified 18 School Japan 0
## 2:99 Unspecified 245 Leisure USA 0
## 2:100 Unspecified 22 Leisure Japan 0
## 2:101 Unspecified 5 Unknown Japan 0
## 2:102 Unspecified 162 Leisure Japan 0 Yes
## 2:103 Unspecified 325 Leisure Japan 0 Yes
## 2:104 Yes 201 Leisure Other 0
## 2:105 Yes 20 Leisure USA 0
## 2:106 Unspecified 6 Other Japan 0
## 2:107 Unspecified 53 School Japan 0
## 2:108 Unspecified 40 School Japan 0
## 2:109 Unspecified 12 School Japan 0
## 2:110 Unspecified 14 School Japan 0
## 2:111 Unspecified 13 School Japan 0
## 2:112 Unspecified 3 School Japan 0
## 2:113 Unspecified 12 Foodservice Japan 0
## 2:114 Unspecified 10 Leisure Japan 0
## 2:115 Unspecified 34 Leisure Japan 0
## 2:116 Unspecified 97 Leisure Other 0 Yes
## 2:117 Unspecified 97 Leisure Other 0
## 2:118 Yes 368 Other Other 0
## 2:119 Yes 26 Nursing Home Other 0
## 2:120 Unspecified 2000 Other Other 0
## 2:121 Unspecified 58 Other Other 0
## 2:122 Unspecified 25 Leisure Other 0
## 2:123 Unspecified 95 Other Other 0 Yes
## 2:124 Unspecified 40 Leisure Other 0
## 2:125 Unspecified 40 Other Other 0
## 2:126 Yes 31 Other Japan 0
## 2:127 Unspecified 16 Nursing Home Other 0
## 2:128 Unspecified 47 Leisure Other 0
## 2:129 Unspecified 61 Leisure Other 0
## 2:130 Unspecified 4 Foodservice Japan 0
## 2:131 Unspecified 2 Hospital Japan 0
## 2:132 Unspecified 2 Nursing Home Japan 0
## 2:133 Unspecified 2 Foodservice Japan 0
## 2:134 Unspecified 2 Nursing Home Japan 0
## 2:135 Unspecified 3 Nursing Home Japan 0 Yes
## 2:136 Yes 126 Nursing Home USA 2
## 2:137 Unspecified 55 Leisure Other 0
## 2:138 Unspecified 2 Unspecified Japan 0
## 2:139 Unspecified 5 Unspecified Japan 0
## 2:140 Unspecified 20 Unspecified Japan 0
## 2:141 Unspecified 2 Unspecified Japan 0
## 2:142 Unspecified 27 Unspecified Japan 0
## 2:143 Unspecified 11 Unspecified Japan 0
## 2:144 Unspecified 3 Unspecified Japan 0
## 2:145 Unspecified 157 Unspecified Japan 0
## 2:146 Unspecified 68 School Japan 0
## 2:147 Unspecified 184 Foodservice Japan 0 Yes
## 2:148 Unspecified 203 Leisure Japan 0 Yes
## 2:149 Unspecified 18 Foodservice Other 0
## 2:150 Unspecified 2 Foodservice Other 0
## 2:151 Unspecified 17 Foodservice Other 0
## 2:152 Unspecified 2 Foodservice Other 0
## 2:153 Yes 73 Foodservice Other 0
## 2:154 Unspecified 37 Foodservice USA 0
## 2:155 Unspecified 17 Foodservice USA 0
## 2:156 Unspecified 70 Foodservice USA 0 Yes
## 2:157 Unspecified 75 Other USA 0
## 2:158 Unspecified 104 School USA 0
## 2:159 Unspecified 71 Daycare Japan 0
## 2:160 Yes 47 Foodservice Other 0
## 2:161 Yes 34 Leisure Other 0
## 2:162 Unspecified 14 Leisure USA 0 Yes
## 2:163 Unspecified 42 Nursing Home USA 0 Yes
## 2:164 Unspecified 3 School Other 0
## 2:165 Unspecified 53 School Other 0
## 2:166 Yes 260 Other Medical Setting Other 0 Yes
## 2:167 Yes 13 Hospital Other 0 Yes
## 2:168 Yes 205 Military USA 0
## 2:169 Unspecified 70 Foodservice Other 0
## 2:170 Unspecified 40 Leisure Other 0
## 2:171 Unspecified 49 Foodservice Other 0
## 2:172 Unspecified 33 Leisure Other 0 Yes
## 2:173 Unspecified 19 Foodservice Other 0 Yes
## 2:174 Unspecified 61 Leisure Other 0 Yes
## 2:175 Unspecified 15 Leisure Other 0
## 2:176 Unspecified 10 Foodservice Other 0 Yes
## 2:177 Unspecified 8 Foodservice Other 0 Yes
## 2:178 Yes 80 Leisure USA 0
## 2:179 Yes 40 Leisure USA 0
## 2:180 Yes 395 Leisure Multiple 0
## 2:182 Unspecified 22 Daycare Other 0 Yes
## 2:183 Yes 21 Foodservice Other 0
## 2:184 Unspecified 66 Nursing Home Other 0
## 2:185 Yes 326 Leisure Other 0 Yes
## 2:186 Yes 12 Other Other 0
## 2:187 Yes 12 School Other 0
## 2:188 Yes 129 Leisure Other 0
## 2:189 Unspecified 16 Foodservice Japan 0
## 2:190 Unspecified 16 Leisure Japan 0
## 2:191 Unspecified 150 Foodservice Other 0
## 2:192 Yes 229 School Other 0
## 2:193 Unspecified 13 Leisure Other 0
## 2:194 Unspecified 40 Leisure Other 0
## 2:195 Unspecified 60 Leisure Other 0
## 2:196 Unspecified 13 Other Other 0
## 2:197 Unspecified 20 Leisure Other 0
## 2:198 Unspecified 37 Nursing Home Japan 0
## 2:199 Unspecified 27 School Japan 0
## 2:200 Unspecified 14 Leisure Other 0
## 2:201 Unspecified 186 Leisure Other 0
## 2:202 Yes 47 Foodservice Other 0
## 2:203 Yes 41 Leisure Other 0
## 2:204 Unspecified 8 Foodservice Other 0
## 2:205 Unspecified 8 Foodservice Other 0
## 2:206 Unspecified 5 Foodservice Other 0
## 2:207 Unspecified 5 Foodservice Other 0
## 2:208 Unspecified 16 Foodservice Other 0
## 2:209 Unspecified 5 Foodservice Other 0
## 2:210 Unspecified 14 Foodservice Other 0
## 2:211 Yes 162 Military Multiple 0
## 2:212 Yes 425 Military Multiple 0
## 2:213 Yes 48 Leisure Other 0 Yes
## 2:214 Yes 19 Foodservice Other 0
## 2:215 Yes 60 Foodservice Other 0
## 2:216 Yes 166 Nursing Home Other 0
## 2:217 Unspecified 55 Leisure USA 0 Yes
## 2:218 Yes 395 Leisure USA 0 Yes
## 2:219 Unspecified 11 Foodservice USA 0 Yes
## 2:220 Unspecified 17 Foodservice USA 0 Yes
## 2:221 Yes 8 Leisure USA 0
## 2:222 Yes 26 Leisure USA 0
## 2:223 Yes 22 Leisure USA 0
## 2:224 Unspecified 44 Leisure Other 0
## 2:225 Yes 87 Leisure Multiple 0
## 2:226 Yes 333 Foodservice USA 0
## 2:227 Yes 35 Leisure USA 0
## 2:228 Unspecified 103 Leisure Other 0
## 2:229 Unspecified 60 Foodservice Other 0
## 2:230 Unspecified 9 Leisure Other 0 Yes
## 2:231 Yes 38 Hospital USA 0
## 2:232 Yes 175 Leisure Other 0
## 2:233 Unspecified 13 Leisure Other 0
## 2:234 Yes 53 Leisure USA 0
## 2:235 Yes 103 School USA 0
## 2:236 Yes 942 Leisure Other 0 Yes
## 2:237 Yes 231 Foodservice Other 0
## 2:238 Yes 21 Unknown Other 0 Yes
## 2:239 Yes 29 Leisure Other 0
## 2:240 Yes 21 Leisure Other 0
## 2:241 Yes 13 Leisure Other 0
## 2:242 Yes 70 Hospital Other 0 Yes
## 2:243 Unspecified 15 Foodservice Other 0 Yes
## 2:244 Yes 159 Military Other 0
## 2:245 Unspecified 106 Military Other 0 Yes
## 2:246 Unspecified 152 Military Other 0 Yes
## 2:247 Unspecified 13 Other Japan 0
## 2:248 Unspecified 36 Nursing Home Japan 0
## 2:249 Unspecified 76 School Japan 0
## 2:250 Unspecified 28 Other Japan 0
## 2:251 Unspecified 41 School Japan 0
## 2:252 Unspecified 2 Other Japan 0
## 2:253 Unspecified 1 Other Japan 0
## 2:254 Unspecified 17 Leisure Japan 0
## 2:255 Unspecified 82 School Japan 0
## 2:256 Unspecified 28 Other Japan 0
## 2:257 Unspecified 12 Leisure Japan 0
## 2:258 Unspecified 15 Foodservice Japan 0
## 2:259 Unspecified 103 Leisure Japan 0
## 2:260 Unspecified 107 Leisure Japan 0
## 2:261 Unspecified 47 Leisure Japan 0
## 2:262 Unspecified 2 Unknown Japan 0
## 2:263 Yes 7 Other USA 0 Yes
## 2:264 Yes 355 Hospital USA 0 Yes
## 2:265 Unspecified 7 Other Japan 0 Yes
## 2:266 Unspecified 2 Other Japan 0 Yes
## 2:267 Unspecified 2 Other Japan 0 Yes
## 2:268 Unspecified 56 School Japan 0 Yes
## 2:269 Unspecified 6 School Japan 0
## 2:270 Unspecified 19 Foodservice Japan 0
## 2:271 Unspecified 10 Foodservice Japan 0
## 2:272 Unspecified 2 Foodservice Japan 0
## 2:273 Unspecified 3 Foodservice Japan 0
## 2:274 Unspecified 27 Leisure Japan 0
## 2:275 Unspecified 21 Leisure Japan 0
## 2:276 Yes 445 Hospital Other 9 Yes
## 2:277 Unspecified 80 Foodservice USA 0
## 2:278 Unspecified 52 Foodservice Japan 0
## 2:279 Yes 1655 Other Other 0 Yes
## 2:280 Yes 176 Leisure Other 0
## 2:281 Yes 52 Foodservice Other 0
## 2:282 Yes 150 Nursing Home USA 3
## 2:283 Unspecified 200 Other Other 0 Yes
## 2:284 Unspecified 100 Other Other 0
## 2:285 Unspecified 300 Other Other 0 Yes
## 2:286 Unspecified 11 Leisure Other 0 Yes
## 2:287 Unspecified 140 Leisure USA 0
## 2:288 Yes 35 Nursing Home Other 0 Yes
## 2:289 Unspecified 69 Foodservice Other 0
## 2:290 Unspecified 63 Nursing Home Japan 1 Yes
## 2:291 Unspecified 68 Nursing Home Japan 1 Yes
## 2:292 Unspecified 50 Nursing Home Japan 1 Yes
## 2:293 Unspecified 2 Foodservice Japan 0
## 2:294 Unspecified 61 Foodservice Japan 0 Yes
## 2:295 Unspecified 6 Foodservice Japan 0 Yes
## 2:296 Unspecified 2 Foodservice Japan 0
## 2:297 Unspecified 10 Nursing Home Japan 0 Yes
## 2:298 Unspecified 2 Hospital Japan 0 Yes
## 2:299 Unspecified 7 Nursing Home Japan 0 Yes
## 2:300 Unspecified 3 Nursing Home Japan 0 Yes
## 2:301 Unspecified 6 Nursing Home Japan 0 Yes
## 2:302 Unspecified 2 School Japan 0 Yes
## 2:303 Unspecified 2 Hospital Japan 0 Yes
## 2:304 Unspecified 3 Hospital Japan 0 Yes
## 2:305 Unspecified 2 Nursing Home Japan 0 Yes
## 2:306 Unknown 11 Foodservice Japan 0 Yes
## 2:307 Unspecified 2 Hospital Japan 0
## 2:308 Unspecified 8 Foodservice Japan 0 Yes
## 2:309 Unspecified 63 Foodservice Japan 0 Yes
## 2:310 Unspecified 4 Foodservice Japan 0
## 2:311 Unspecified 6 Foodservice Japan 0
## 2:312 Unspecified 13 Leisure Japan 0
## 2:313 Unspecified 3 Nursing Home Japan 0 Yes
## 2:314 Unspecified 5 Hospital Japan 0 Yes
## 2:315 Unspecified 2 Hospital Japan 0 Yes
## 2:316 Unspecified 3 Hospital Japan 0
## 2:317 Unspecified 5 Hospital Japan 0 Yes
## 2:318 Unspecified 33 Nursing Home Japan 0 Yes
## 2:319 Unspecified 2 Nursing Home Japan 0 Yes
## 2:320 Unspecified 3 Nursing Home Japan 0
## 2:321 Unspecified 4 Nursing Home Japan 0 Yes
## 2:322 Unspecified 9 Nursing Home Japan 0
## 2:323 Unspecified 32 Nursing Home Japan 0 Yes
## 2:324 Unspecified 2 Nursing Home Japan 0 Yes
## 2:325 Unspecified 2 Nursing Home Japan 0 Yes
## 2:326 Unspecified 8 Nursing Home Japan 0
## 2:327 Unspecified 2 Nursing Home Japan 0 Yes
## 2:328 Unspecified 2 Nursing Home Japan 0
## 2:329 Unspecified 6 Nursing Home Japan 0
## 2:330 Unspecified 9 Hospital Japan 0 Yes
## 2:331 Unspecified 6 Nursing Home Japan 0
## 2:332 Unspecified 6 Leisure Japan 0 Yes
## 2:333 Unspecified 5 School Japan 0
## 2:334 Unspecified 3 School Japan 0
## 2:335 Unspecified 3 Nursing Home Japan 0
## 2:336 Unspecified 6 Nursing Home Japan 0
## 2:337 Unspecified 8 Foodservice Japan 0
## 2:338 Unspecified 85 Foodservice USA 0
## 2:339 Unspecified 71 Leisure Other 0
## 2:340 Yes 69 Leisure USA 0
## 2:341 Unspecified 2 Other Other 0 Yes
## 2:342 Unspecified 91 Foodservice Japan 0
## 2:343 Yes 182 Foodservice Other 0
## 2:344 Unspecified 4 Unspecified Japan 0 Yes
## 2:345 Unspecified 1 Unspecified Japan 0
## 2:346 Unspecified 28 Unspecified Japan 0
## 2:347 Unspecified 3 Unspecified Japan 0
## 2:348 Unspecified 1 Unspecified Japan 0
## 2:349 Unspecified 77 Unspecified Japan 0
## 2:350 Unspecified 10 Unspecified Japan 0
## 2:351 Unspecified 3 Unspecified Japan 0
## 2:352 Unspecified 2 Unspecified Japan 0
## 2:353 Unspecified 5 Unspecified Japan 0
## 2:354 Unspecified 6 Unspecified Japan 0
## 2:355 Unspecified 26 Unspecified Japan 0
## 2:356 Unspecified 2 Unspecified Japan 0
## 2:357 Unspecified 3 Unspecified Japan 0
## 2:358 Unspecified 3 Unspecified Japan 0
## 2:359 Unspecified 6 Unspecified Japan 0
## 2:360 Unspecified 3 Unspecified Japan 0
## 2:361 Unspecified 3 Unspecified Japan 0
## 2:362 Unspecified 5 Unspecified Japan 0
## 2:363 Unspecified 29 Foodservice Japan 0
## 2:364 Unspecified 37 Nursing Home Japan 0 Yes
## 2:365 Unspecified 70 Leisure Japan 0 Yes
## 2:366 Yes 115 Foodservice Other 0
## 2:367 Unspecified 50 Foodservice USA 0 Yes
## 2:368 Unspecified 8 Foodservice USA 0
## 2:369 Unspecified 28 Foodservice USA 0 Yes
## 2:370 Unspecified 23 Other Japan 0
## 2:371 Unspecified 71 Nursing Home Other 0
## 2:372 Yes 8 Hospital USA 2
## 2:373 Unspecified 316 Leisure Other 0 Yes
## 2:374 Unspecified 357 Leisure Other 0 Yes
## 2:375 Unspecified 117 Leisure Other 0
## 2:376 Unspecified 25 Nursing Home USA 0 Yes
## 2:377 Unspecified 26 Nursing Home USA 0 Yes
## 2:378 Yes 13 Leisure Multiple 0
## 2:379 Yes 211 Nursing Home USA 9 Yes
## 2:380 Unspecified 299 School Other 0 Yes
## 2:381 Unspecified 27 Other Other 0 Yes
## 2:382 Unspecified 20 Hospital Other 0 Yes
## 2:383 Unspecified 16 Hospital Other 0 Yes
## 2:384 Unspecified 9 School Other 0 Yes
## 2:385 Unspecified 13 Other Other 0 Yes
## 2:386 Unspecified 8 School Other 0 Yes
## 2:387 Unspecified 3 Nursing Home Other 0 Yes
## 2:388 Unspecified 22 Other Other 0 Yes
## 2:389 Yes 42 Hospital Other 0
## 2:390 Unspecified 10 Hospital Other 0
## 2:391 Unspecified 10 Hospital Other 0
## 2:392 Unspecified 12 Hospital Other 0
## 2:393 Unspecified 10 Hospital Other 0
## 2:394 Unspecified 6 Hospital Other 0
## 2:395 Unspecified 11 Hospital Other 0
## 2:396 Unspecified 14 Hospital Other 0
## 2:397 Unspecified 3 Hospital Other 0
## 2:398 Unspecified 15 Hospital Other 0
## 2:399 Yes 43 Other Other 0 Yes
## 2:400 Unspecified 67 Leisure Other 0
## 2:401 Unspecified 23 Foodservice Other 0 Yes
## 2:402 Unspecified 19 Foodservice Other 0 Yes
## 2:403 Yes 102 Hospital Japan 0 Yes
## 2:404 Yes 4 Hospital Other 0
## 2:405 Yes 70 Hospital Other 0 Yes
## 2:406 Yes 31 Hospital Other 0
## 2:407 Yes 58 Hospital Other 0 Yes
## 2:408 Yes 26 Leisure Multiple 0 Yes
## 2:409 Yes 31 Leisure Multiple 0 Yes
## 2:410 Yes 101 Military Other 0 Yes
## 2:411 Unspecified 16 Foodservice Other 0
## 2:412 Unspecified 101 Leisure Other 0
## 2:413 Yes 252 Leisure Other 0
## 2:414 Yes 112 Leisure Other 0
## 2:415 Unspecified 23 Foodservice Other 0
## 2:416 Unspecified 16 Foodservice Other 0
## 2:417 Unspecified 14 Foodservice Other 0
## 2:418 Unspecified 86 Foodservice Other 0
## 2:419 Unspecified 15 Foodservice Other 0
## 2:420 Unspecified 15 Leisure Unspecified 0 Yes
## 2:421 Unspecified 104 Leisure Unspecified 0 Yes
## 2:422 Unspecified 61 Leisure Unspecified 0 Yes
## 2:423 Unspecified 342 Leisure Unspecified 0 Yes
## 2:424 Unspecified 293 Leisure Unspecified 0 Yes
## 2:425 Unspecified 369 Leisure Unspecified 0 Yes
## 2:426 Unspecified 40 Leisure Unspecified 0 Yes
## 2:427 Unspecified 68 Leisure Unspecified 0 Yes
## 2:428 Unspecified 137 Leisure Unspecified 0 Yes
## 2:429 Unspecified 40 Leisure Unspecified 0 Yes
## 2:430 Unspecified 39 Nursing Home Other 0
## 2:431 Unspecified 85 Nursing Home Other 0
## 2:432 Unspecified 31 Nursing Home Other 0
## 2:433 Unknown 14 Unspecified Other 0
## 2:434 Unspecified 20 Unspecified Other 0
## 2:435 Unspecified 40 Other Medical Setting Other 0
## 2:436 Unspecified 62 Unspecified Other 0
## 2:437 Unspecified 40 Nursing Home Other 0
## 2:438 Unspecified 70 Nursing Home Other 0 Yes
## 2:439 Unspecified 64 Nursing Home Other 0 Yes
## 2:440 Unspecified 25 Nursing Home Other 0 Yes
## 2:441 Unspecified 77 Nursing Home Other 0 Yes
## 2:442 Unspecified 33 Nursing Home Other 0 Yes
## 2:443 Unspecified 22 Hospital Other 0 Yes
## 2:444 Unspecified 8 Unspecified Other 0
## 2:445 Unspecified 88 Nursing Home Other 0 Yes
## 2:446 Unspecified 17 Nursing Home Other 0 Yes
## 2:447 Unspecified 35 Unspecified Other 0 Yes
## 2:448 Unspecified 10 Hospital Other 0 Yes
## 2:449 Unspecified 10 Unspecified Other 0 Yes
## 2:450 Yes 236 Leisure Unspecified 0 Yes
## Hemisphere Hospitalizations MeanD1 MeanI1 MedianD1 MedianI1 OBYear
## 1:1 Northern 0 0.0 0 0 0 2006
## 1:2 Northern 0 0.0 0 0 0 2006
## 1:3 Northern 0 0.0 0 0 0 2003
## 1:4 Northern 0 0.0 31 0 0 2003
## 1:5 Northern 0 43.0 32 0 33 2000
## 1:6 Northern 0 0.0 0 0 0 1998
## 1:7 Northern 0 0.0 0 0 0 1999
## 1:8 Southern 0 0.0 28 0 0 1999
## 1:9 Northern 0 0.0 0 0 0 2002
## 1:10 Northern 0 0.0 0 0 0 2007
## 1:11 Northern 0 0.0 0 0 0 2001
## 1:12 Northern 0 0.0 0 0 0 2003
## 1:13 Northern 0 0.0 0 0 0 2004
## 1:14 Northern 0 0.0 0 0 0 1997
## 1:15 Northern 0 0.0 0 0 0 1997
## 1:16 Northern 0 0.0 0 0 0 1998
## 1:17 Northern 0 0.0 0 0 0 1998
## 1:18 Northern 0 0.0 0 0 0 1998
## 1:19 Northern 0 0.0 0 0 0 2004
## 1:20 Northern 0 0.0 0 0 0 2004
## 1:21 Northern 0 0.0 0 0 0 2004
## 1:22 Northern 0 0.0 0 0 0 2004
## 1:23 Northern 0 0.0 0 0 0 2004
## 1:24 Northern 0 0.0 0 0 0 2004
## 1:25 Northern 0 0.0 0 0 0 2004
## 1:26 Northern 0 0.0 0 0 0 2004
## 1:27 Northern 0 0.0 0 0 0 1999
## 1:28 Northern 0 0.0 0 0 0 2000
## 1:29 Northern 0 0.0 0 0 0 2001
## 1:30 Northern 0 0.0 0 0 0 2002
## 1:31 Northern 0 0.0 0 0 0 2002
## 1:32 Northern 0 0.0 0 0 0 1999
## 1:33 Northern 0 0.0 0 0 0 2000
## 1:34 Northern 0 0.0 0 0 0 2002
## 1:35 Northern 0 0.0 0 0 0 2002
## 1:36 Northern 0 0.0 0 0 28 2002
## 1:37 Northern 0 0.0 0 0 0 1995
## 1:38 Northern 0 0.0 0 0 0 2006
## 1:39 Northern 0 0.0 0 0 0 2001
## 1:40 Northern 0 0.0 0 0 3 2002
## 1:41 Northern 0 0.0 0 0 0 2004
## 1:42 Northern 0 0.0 0 0 0 2006
## 1:43 Northern 0 0.0 0 0 0 2006
## 1:44 Northern 0 0.0 0 0 0 2006
## 1:45 Northern 0 0.0 0 0 0 2006
## 1:46 Northern 1 0.0 0 27 31 2000
## 1:47 Northern 0 0.0 0 42 32 2006
## 1:48 Northern 0 0.0 0 0 0 1998
## 1:49 Northern 0 0.0 0 0 0 2000
## 1:50 Northern 0 0.0 0 0 0 2000
## 1:51 Northern 0 0.0 0 0 0 2001
## 1:52 Northern 0 0.0 0 0 0 2002
## 1:53 Northern 0 0.0 0 0 0 2003
## 1:54 Northern 0 0.0 0 0 0 2003
## 1:55 Northern 0 0.0 0 0 0 2003
## 1:56 Northern 0 0.0 0 0 0 2004
## 1:57 Northern 0 0.0 0 0 0 2004
## 1:58 Northern 0 0.0 0 0 0 1997
## 1:59 Northern 0 0.0 0 0 0 1997
## 1:60 Northern 0 0.0 0 0 0 1997
## 1:61 Northern 0 0.0 0 0 0 1997
## 1:62 Northern 0 0.0 0 0 0 1997
## 1:63 Northern 0 0.0 0 0 0 1997
## 1:64 Northern 0 0.0 0 0 0 1997
## 1:65 Northern 0 0.0 0 0 0 1998
## 1:66 Northern 0 0.0 0 0 0 1999
## 1:67 Northern 0 0.0 0 0 0 1999
## 1:68 Northern 0 0.0 0 0 0 1999
## 1:69 Northern 0 0.0 0 0 0 2000
## 1:70 Northern 0 0.0 0 0 0 2000
## 1:71 Northern 0 0.0 0 0 0 2000
## 1:72 Northern 0 0.0 0 0 0 2000
## 1:73 Northern 0 0.0 0 0 0 2000
## 1:74 Northern 0 0.0 0 0 0 1998
## 1:75 Northern 0 0.0 0 0 0 1999
## 1:76 Northern 0 0.0 0 0 0 2000
## 1:77 Northern 0 0.0 0 0 0 2000
## 1:78 Northern 0 0.0 0 0 0 2001
## 1:79 Northern 0 0.0 0 0 0 2001
## 1:80 Northern 0 0.0 0 0 0 2001
## 1:81 Northern 0 0.0 0 0 0 2002
## 1:82 Northern 0 0.0 0 0 0 2002
## 1:83 Northern 0 0.0 0 0 0 2002
## 1:84 Northern 0 0.0 0 0 0 1997
## 1:85 Northern 0 0.0 0 0 0 1997
## 1:86 Northern 0 0.0 0 0 0 1997
## 1:87 Northern 0 0.0 0 0 0 1998
## 1:88 Northern 0 0.0 0 0 0 1999
## 1:89 Northern 0 0.0 0 0 0 1999
## 1:90 Northern 0 0.0 0 0 0 2000
## 1:91 Northern 0 0.0 0 0 0 2001
## 1:92 Northern 0 0.0 0 0 0 2001
## 1:93 Northern 0 0.0 0 0 0 2002
## 1:94 Northern 0 0.0 0 0 0 2002
## 1:95 Northern 0 0.0 0 0 0 2002
## 1:96 Southern 0 0.0 0 0 0 1999
## 1:97 Northern 0 0.0 0 0 0 2007
## 1:98 Northern 0 0.0 0 0 0 2006
## 1:99 Southern 0 0.0 0 0 0 2006
## 1:100 Northern 0 0.0 0 0 0 2002
## 1:101 Northern 0 0.0 0 0 0 2003
## 1:102 Northern 0 0.0 0 0 0 2005
## 1:103 Northern 0 0.0 0 0 0 2007
## 2:1 Northern 0 0.0 0 36 37 1998
## 2:2 Northern 0 0.0 0 0 0 2006
## 2:3 Northern 0 0.0 0 0 0 2006
## 2:4 Northern 0 0.0 0 0 0 2006
## 2:5 Northern 0 0.0 0 0 0 2006
## 2:6 Northern 5 0.0 0 0 0 2004
## 2:7 Northern 10 0.0 0 48 31 1993
## 2:8 Northern 0 0.0 0 24 33 1999
## 2:9 Northern 0 24.0 0 0 0 1999
## 2:10 Northern 0 0.0 0 0 0 2002
## 2:11 Northern 0 0.0 0 0 0 2002
## 2:12 Northern 0 0.0 0 0 0 2002
## 2:13 Northern 0 0.0 0 0 0 2005
## 2:14 Northern 0 0.0 0 54 0 2006
## 2:15 Northern 0 0.0 0 36 0 1994
## 2:16 Northern 0 0.0 0 0 0 2008
## 2:17 Northern 0 0.0 0 0 0 2000
## 2:18 Northern 0 0.0 0 0 0 2001
## 2:19 Northern 0 48.0 0 48 0 2006
## 2:20 Northern 0 0.0 0 0 0 2002
## 2:21 Northern 0 0.0 0 0 0 2001
## 2:22 Northern 0 0.0 0 0 0 2001
## 2:23 Northern 0 0.0 0 0 0 1997
## 2:24 Northern 0 0.0 0 0 0 1999
## 2:25 Northern 0 0.0 0 0 0 2001
## 2:26 Northern 0 0.0 0 0 0 1997
## 2:27 Northern 0 0.0 0 0 0 2001
## 2:28 Northern 0 0.0 0 24 37 1993
## 2:29 Northern 0 0.0 0 36 31 1993
## 2:30 Northern 0 0.0 0 0 0 2005
## 2:31 Northern 0 0.0 0 0 0 2003
## 2:32 Northern 0 0.0 0 0 36 2006
## 2:33 Northern 0 0.0 0 0 0 2002
## 2:34 Northern 0 0.0 0 0 0 2005
## 2:35 Northern 0 0.0 0 0 0 2006
## 2:36 Northern 0 0.0 0 0 0 2006
## 2:37 Northern 0 0.0 0 0 0 2005
## 2:38 Northern 0 48.0 0 0 0 2001
## 2:39 Northern 0 0.0 0 48 0 2004
## 2:40 Northern 0 0.0 0 0 0 2002
## 2:41 Northern 0 0.0 0 0 0 2002
## 2:42 Northern 0 0.0 0 0 0 2002
## 2:43 Northern 0 0.0 0 0 0 2002
## 2:44 Northern 0 0.0 0 0 0 1995
## 2:45 Northern 0 0.0 0 0 0 1996
## 2:46 Northern 0 0.0 0 0 0 1998
## 2:47 Northern 0 0.0 0 0 0 1999
## 2:48 Northern 1 0.0 0 0 0 2008
## 2:49 Southern 0 0.0 0 0 0 1999
## 2:50 Northern 0 0.0 0 0 0 2002
## 2:51 Northern 0 0.0 0 0 0 2002
## 2:52 Northern 0 0.0 0 0 0 2002
## 2:53 Northern 0 0.0 0 0 0 2002
## 2:54 Northern 0 0.0 0 0 0 2002
## 2:55 Northern 0 0.0 0 0 0 2002
## 2:56 Northern 0 0.0 0 0 0 2002
## 2:57 Northern 0 0.0 0 0 0 2002
## 2:58 Northern 0 0.0 0 0 0 2002
## 2:59 Northern 0 0.0 0 0 0 2004
## 2:60 Northern 0 0.0 0 0 0 2006
## 2:61 Northern 0 0.0 0 0 0 2005
## 2:62 Northern 0 21.0 0 0 0 2007
## 2:63 Northern 0 58.0 0 0 0 2008
## 2:64 Northern 0 0.0 0 0 0 2008
## 2:65 Northern 10 0.0 0 48 0 2008
## 2:66 Northern 0 0.0 0 0 0 2009
## 2:67 Northern 0 0.0 0 0 0 2009
## 2:68 Northern 0 0.0 0 0 0 2009
## 2:69 Northern 0 0.0 0 0 0 2009
## 2:70 Northern 0 0.0 0 0 0 1995
## 2:71 Northern 2 0.0 0 0 0 2008
## 2:72 Northern 0 0.0 0 0 0 2009
## 2:73 Northern 0 22.0 33 0 0 2009
## 2:74 Northern 0 0.0 0 0 0 2009
## 2:75 Northern 0 35.0 36 0 0 2007
## 2:76 Northern 0 72.0 0 0 0 2008
## 2:77 Northern 13 0.0 0 0 0 2006
## 2:78 Northern 0 0.0 0 0 0 2007
## 2:79 Northern 0 0.0 0 0 0 2007
## 2:80 Northern 0 0.0 0 0 0 2007
## 2:81 Northern 0 0.0 0 0 0 2006
## 2:82 Northern 0 0.0 0 0 0 2006
## 2:83 Northern 0 0.0 0 0 0 2006
## 2:84 Northern 0 0.0 0 0 0 2006
## 2:85 Southern 0 0.0 0 0 0 1994
## 2:86 Northern 0 0.0 0 0 0 2005
## 2:87 Northern 0 0.0 0 0 0 2005
## 2:88 Northern 0 0.0 0 0 0 2005
## 2:89 Northern 0 0.0 0 0 0 2004
## 2:90 Northern 23 0.0 0 48 0 1998
## 2:91 Northern 0 0.0 0 24 0 2000
## 2:92 Northern 8 0.0 0 4 35 2002
## 2:93 Northern 0 0.0 0 0 34 1999
## 2:94 Northern 0 12.0 0 0 0 1994
## 2:95 Northern 0 0.0 0 0 0 1998
## 2:96 Northern 0 0.0 0 0 0 1998
## 2:97 Northern 0 0.0 0 0 0 1999
## 2:98 Northern 0 0.0 0 0 0 2003
## 2:99 Northern 0 0.0 0 0 0 1990
## 2:100 Northern 0 0.0 0 0 0 1997
## 2:101 Northern 0 0.0 0 0 0 2000
## 2:102 Northern 0 0.0 0 0 0 2004
## 2:103 Northern 0 0.0 0 0 0 2004
## 2:104 Northern 0 0.0 0 0 0 2000
## 2:105 Northern 0 67.0 0 0 0 2004
## 2:106 Northern 0 0.0 0 0 0 2002
## 2:107 Northern 0 0.0 0 0 0 1998
## 2:108 Northern 0 0.0 0 0 0 1999
## 2:109 Northern 0 0.0 0 0 0 1999
## 2:110 Northern 0 0.0 0 0 0 2000
## 2:111 Northern 0 0.0 0 0 0 2000
## 2:112 Northern 0 0.0 0 0 0 2002
## 2:113 Northern 0 0.0 0 0 0 2001
## 2:114 Northern 0 0.0 0 0 0 1999
## 2:115 Northern 0 0.0 0 0 0 2000
## 2:116 Northern 0 0.0 0 72 0 2004
## 2:117 Northern 0 0.0 0 72 0 2004
## 2:118 Northern 0 0.0 0 0 0 2000
## 2:119 Southern 2 0.0 7 36 65 2002
## 2:120 Northern 0 0.0 0 0 0 1998
## 2:121 Northern 0 0.0 0 0 0 1999
## 2:122 Northern 0 0.0 0 0 0 2002
## 2:123 Northern 0 0.0 0 0 0 2003
## 2:124 Northern 0 0.0 0 0 0 2003
## 2:125 Northern 0 0.0 0 0 0 2003
## 2:126 Northern 2 0.0 0 0 0 2007
## 2:127 Northern 0 0.0 0 0 0 2000
## 2:128 Northern 0 0.0 0 0 0 2001
## 2:129 Northern 0 0.0 0 0 0 2001
## 2:130 Northern 0 0.0 0 0 0 2006
## 2:131 Northern 0 0.0 0 0 0 2006
## 2:132 Northern 0 0.0 0 0 0 2006
## 2:133 Northern 0 0.0 0 0 0 2006
## 2:134 Northern 0 0.0 0 0 0 2006
## 2:135 Northern 0 0.0 0 0 0 2006
## 2:136 Northern 3 0.0 0 0 0 1994
## 2:137 Northern 0 0.0 0 0 0 2005
## 2:138 Northern 0 0.0 0 0 0 2002
## 2:139 Northern 0 0.0 0 0 0 2003
## 2:140 Northern 0 0.0 0 0 0 2003
## 2:141 Northern 0 0.0 0 0 0 2003
## 2:142 Northern 0 0.0 0 0 0 2003
## 2:143 Northern 0 0.0 0 0 0 2003
## 2:144 Northern 0 0.0 0 0 0 2003
## 2:145 Northern 0 0.0 0 0 0 2003
## 2:146 Northern 0 0.0 0 0 0 2003
## 2:147 Northern 0 0.0 0 0 0 2004
## 2:148 Northern 0 0.0 0 0 0 2006
## 2:149 Southern 0 0.0 0 48 31 1999
## 2:150 Southern 0 0.0 0 14 37 1999
## 2:151 Southern 0 0.0 0 33 33 1999
## 2:152 Southern 0 0.0 0 16 18 1999
## 2:153 Southern 1 0.0 0 0 0 2003
## 2:154 Northern 0 0.0 0 0 0 1997
## 2:155 Northern 0 0.0 0 0 0 1997
## 2:156 Northern 0 0.0 0 0 0 1997
## 2:157 Northern 0 0.0 0 0 0 1998
## 2:158 Northern 0 0.0 0 0 0 2000
## 2:159 Northern 0 0.0 0 0 0 2005
## 2:160 Southern 0 0.0 0 54 34 2003
## 2:161 Southern 0 0.0 0 48 34 2003
## 2:162 Northern 0 0.0 0 0 0 2002
## 2:163 Northern 0 0.0 0 0 0 2002
## 2:164 Northern 0 0.0 0 0 0 2005
## 2:165 Northern 0 0.0 0 0 0 2005
## 2:166 Northern 0 0.0 0 48 0 2009
## 2:167 Northern 0 36.0 0 0 0 2007
## 2:168 Northern 99 0.0 0 0 0 1998
## 2:169 Northern 0 0.0 0 0 0 2007
## 2:170 Northern 0 0.0 0 0 0 2007
## 2:171 Northern 0 0.0 0 0 0 2007
## 2:172 Northern 0 0.0 0 0 0 2006
## 2:173 Northern 0 0.0 0 0 0 2006
## 2:174 Northern 0 0.0 0 0 0 2006
## 2:175 Northern 0 0.0 0 0 0 2006
## 2:176 Northern 0 0.0 0 0 0 2006
## 2:177 Northern 0 0.0 0 0 0 2006
## 2:178 Northern 0 0.0 0 0 0 2001
## 2:179 Northern 0 0.0 0 0 0 2001
## 2:180 Northern 0 0.0 0 0 0 2002
## 2:182 Southern 0 0.0 0 0 0 1998
## 2:183 Northern 0 0.0 0 0 0 2001
## 2:184 Southern 0 0.0 0 0 0 2003
## 2:185 Northern 54 0.0 0 0 0 2004
## 2:186 Northern 0 0.0 0 0 0 2006
## 2:187 Northern 0 0.0 0 0 0 2006
## 2:188 Northern 3 0.0 30 0 0 2002
## 2:189 Northern 0 0.0 0 0 0 1999
## 2:190 Northern 0 0.0 0 0 0 1999
## 2:191 Northern 0 49.0 0 0 0 2006
## 2:192 Northern 0 55.2 0 48 0 2001
## 2:193 Northern 0 0.0 0 0 0 1998
## 2:194 Northern 0 0.0 0 0 0 1998
## 2:195 Northern 0 0.0 0 0 0 1999
## 2:196 Northern 0 0.0 0 0 0 2000
## 2:197 Northern 0 0.0 0 0 0 2003
## 2:198 Northern 0 0.0 0 0 0 2005
## 2:199 Northern 0 0.0 0 0 0 2005
## 2:200 Northern 0 0.0 0 0 0 1998
## 2:201 Northern 0 0.0 0 0 0 1998
## 2:202 Northern 0 0.0 39 0 39 1996
## 2:203 Northern 0 0.0 0 0 0 2005
## 2:204 Southern 0 0.0 0 28 34 1999
## 2:205 Southern 0 0.0 0 34 40 1999
## 2:206 Southern 0 0.0 0 34 22 1999
## 2:207 Southern 0 0.0 0 17 28 1999
## 2:208 Southern 0 0.0 0 48 33 1999
## 2:209 Southern 0 0.0 0 33 37 1999
## 2:210 Southern 0 0.0 0 0 0 1983
## 2:211 Northern 0 0.0 0 0 0 1999
## 2:212 Northern 0 0.0 0 0 0 1999
## 2:213 Northern 0 0.0 0 0 0 2006
## 2:214 Northern 0 37.0 32 0 0 2007
## 2:215 Northern 0 44.0 39 0 0 2007
## 2:216 Southern 0 0.0 0 0 0 1999
## 2:217 Northern 0 0.0 0 0 0 2002
## 2:218 Northern 0 0.0 0 0 0 2002
## 2:219 Northern 0 0.0 0 0 0 2002
## 2:220 Northern 0 0.0 0 0 0 2002
## 2:221 Northern 0 0.0 0 0 0 2001
## 2:222 Northern 0 0.0 0 0 0 2001
## 2:223 Northern 0 0.0 0 0 0 2001
## 2:224 Northern 0 0.0 32 0 0 2005
## 2:225 Northern 40 0.0 0 60 0 2007
## 2:226 Northern 3 0.0 0 48 0 2000
## 2:227 Northern 1 0.0 0 48 0 2001
## 2:228 Northern 0 0.0 0 0 0 2007
## 2:229 Northern 0 0.0 0 0 0 2006
## 2:230 Northern 0 0.0 0 0 0 2006
## 2:231 Northern 0 0.0 0 0 0 1996
## 2:232 Northern 0 0.0 0 0 0 2002
## 2:233 Southern 0 0.0 0 0 0 1994
## 2:234 Northern 1 0.0 0 0 30 2004
## 2:235 Northern 0 0.0 0 36 0 2007
## 2:236 Northern 0 0.0 0 0 0 1996
## 2:237 Northern 0 0.0 0 48 31 2001
## 2:238 Northern 0 36.0 0 0 34 2002
## 2:239 Northern 0 0.0 0 0 0 2001
## 2:240 Northern 0 0.0 0 0 0 2001
## 2:241 Northern 0 0.0 0 0 0 2001
## 2:242 Northern 0 0.0 0 0 0 2006
## 2:243 Northern 0 0.0 0 0 0 2004
## 2:244 Northern 0 0.0 0 0 0 1999
## 2:245 Northern 0 0.0 0 0 0 2003
## 2:246 Northern 0 0.0 0 0 0 2005
## 2:247 Northern 0 0.0 0 0 0 1998
## 2:248 Northern 0 0.0 0 0 0 2000
## 2:249 Northern 0 0.0 0 0 0 2003
## 2:250 Northern 0 0.0 0 0 0 2003
## 2:251 Northern 0 0.0 0 0 0 2004
## 2:252 Northern 0 0.0 0 0 0 1997
## 2:253 Northern 0 0.0 0 0 0 1997
## 2:254 Northern 0 0.0 0 0 0 1997
## 2:255 Northern 0 0.0 0 0 0 1997
## 2:256 Northern 0 0.0 0 0 0 1998
## 2:257 Northern 0 0.0 0 0 0 1999
## 2:258 Northern 0 0.0 0 0 0 1999
## 2:259 Northern 0 0.0 0 0 0 2000
## 2:260 Northern 0 0.0 0 0 0 2000
## 2:261 Northern 0 0.0 0 0 0 2000
## 2:262 Northern 0 0.0 0 0 0 2000
## 2:263 Northern 0 0.0 0 0 0 2003
## 2:264 Northern 0 0.0 0 0 0 2004
## 2:265 Northern 0 0.0 0 0 0 2001
## 2:266 Northern 0 0.0 0 0 0 2001
## 2:267 Northern 0 0.0 0 0 0 2002
## 2:268 Northern 0 0.0 0 0 0 2001
## 2:269 Northern 0 0.0 0 0 0 1998
## 2:270 Northern 0 0.0 0 0 0 1997
## 2:271 Northern 0 0.0 0 0 0 1999
## 2:272 Northern 0 0.0 0 0 0 2000
## 2:273 Northern 0 0.0 0 0 0 2000
## 2:274 Northern 0 0.0 0 0 0 1998
## 2:275 Northern 0 0.0 0 0 0 2002
## 2:276 Northern 0 0.0 0 0 0 2006
## 2:277 Northern 1 0.0 0 0 31 1999
## 2:278 Northern 0 0.0 0 0 42 2001
## 2:279 Northern 0 0.0 0 0 0 1998
## 2:280 Northern 4 0.0 0 48 0 2007
## 2:281 Northern 0 0.0 0 0 0 1998
## 2:282 Northern 4 0.0 0 0 0 1996
## 2:283 Northern 0 0.0 0 0 0 1999
## 2:284 Northern 0 0.0 0 0 0 1999
## 2:285 Northern 0 0.0 0 0 0 2000
## 2:286 Northern 0 0.0 0 0 0 2003
## 2:287 Northern 5 0.0 0 48 48 1994
## 2:288 Northern 0 0.0 43 24 0 2006
## 2:289 Northern 0 0.0 0 0 0 2003
## 2:290 Northern 0 0.0 0 0 0 2005
## 2:291 Northern 0 0.0 0 0 0 2005
## 2:292 Northern 0 0.0 0 0 0 2005
## 2:293 Northern 0 0.0 0 0 0 2006
## 2:294 Northern 0 0.0 0 0 0 2006
## 2:295 Northern 0 0.0 0 0 0 2006
## 2:296 Northern 0 0.0 0 0 0 2006
## 2:297 Northern 0 0.0 0 0 0 2006
## 2:298 Northern 0 0.0 0 0 0 2006
## 2:299 Northern 0 0.0 0 0 0 2005
## 2:300 Northern 0 0.0 0 0 0 2006
## 2:301 Northern 0 0.0 0 0 0 2006
## 2:302 Northern 0 0.0 0 0 0 2005
## 2:303 Northern 0 0.0 0 0 0 2006
## 2:304 Northern 0 0.0 0 0 0 2006
## 2:305 Northern 0 0.0 0 0 0 2006
## 2:306 Northern 0 0.0 0 0 0 2005
## 2:307 Northern 0 0.0 0 0 0 2006
## 2:308 Northern 0 0.0 0 0 0 2005
## 2:309 Northern 0 0.0 0 0 0 2006
## 2:310 Northern 0 0.0 0 0 0 2006
## 2:311 Northern 0 0.0 0 0 0 2006
## 2:312 Northern 0 0.0 0 0 0 2006
## 2:313 Northern 0 0.0 0 0 0 2006
## 2:314 Northern 0 0.0 0 0 0 2006
## 2:315 Northern 0 0.0 0 0 0 2006
## 2:316 Northern 0 0.0 0 0 0 2005
## 2:317 Northern 0 0.0 0 0 0 2006
## 2:318 Northern 0 0.0 0 0 0 2006
## 2:319 Northern 0 0.0 0 0 0 2005
## 2:320 Northern 0 0.0 0 0 0 2006
## 2:321 Northern 0 0.0 0 0 0 2005
## 2:322 Northern 0 0.0 0 0 0 2006
## 2:323 Northern 0 0.0 0 0 0 2005
## 2:324 Northern 0 0.0 0 0 0 2006
## 2:325 Northern 0 0.0 0 0 0 2006
## 2:326 Northern 0 0.0 0 0 0 2006
## 2:327 Northern 0 0.0 0 0 0 2005
## 2:328 Northern 0 0.0 0 0 0 2006
## 2:329 Northern 0 0.0 0 0 0 2006
## 2:330 Northern 0 0.0 0 0 0 2005
## 2:331 Northern 0 0.0 0 0 0 2006
## 2:332 Northern 0 0.0 0 0 0 2006
## 2:333 Northern 0 0.0 0 0 0 2005
## 2:334 Northern 0 0.0 0 0 0 2006
## 2:335 Northern 0 0.0 0 0 0 2006
## 2:336 Northern 0 0.0 0 0 0 2006
## 2:337 Northern 0 0.0 0 0 0 2006
## 2:338 Northern 0 0.0 0 18 0 1997
## 2:339 Northern 0 0.0 0 48 0 2002
## 2:340 Northern 0 0.0 0 0 30 2004
## 2:341 Northern 0 0.0 0 0 0 2004
## 2:342 Northern 0 0.0 0 0 0 2004
## 2:343 Northern 10 0.0 0 48 0 2006
## 2:344 Northern 0 0.0 0 0 0 2002
## 2:345 Northern 0 0.0 0 0 0 2003
## 2:346 Northern 0 0.0 0 0 0 2003
## 2:347 Northern 0 0.0 0 0 0 2003
## 2:348 Northern 0 0.0 0 0 0 2003
## 2:349 Northern 0 0.0 0 0 0 2003
## 2:350 Northern 0 0.0 0 0 0 2003
## 2:351 Northern 0 0.0 0 0 0 2003
## 2:352 Northern 0 0.0 0 0 0 2003
## 2:353 Northern 0 0.0 0 0 0 2003
## 2:354 Northern 0 0.0 0 0 0 2003
## 2:355 Northern 0 0.0 0 0 0 2003
## 2:356 Northern 0 0.0 0 0 0 2003
## 2:357 Northern 0 0.0 0 0 0 2003
## 2:358 Northern 0 0.0 0 0 0 2003
## 2:359 Northern 0 0.0 0 0 0 2003
## 2:360 Northern 0 0.0 0 0 0 2003
## 2:361 Northern 0 0.0 0 0 0 2003
## 2:362 Northern 0 0.0 0 0 0 2003
## 2:363 Northern 0 0.0 0 0 0 2003
## 2:364 Northern 0 0.0 0 0 0 2004
## 2:365 Northern 0 0.0 0 0 0 2004
## 2:366 Southern 0 0.0 32 0 0 2006
## 2:367 Northern 0 0.0 0 0 0 1996
## 2:368 Northern 0 0.0 0 0 0 1998
## 2:369 Northern 0 0.0 0 0 0 2000
## 2:370 Northern 0 0.0 0 0 0 2000
## 2:371 Southern 0 0.0 0 0 0 2003
## 2:372 Northern 0 0.0 0 0 0 1998
## 2:373 Northern 0 0.0 0 0 0 2002
## 2:374 Northern 0 0.0 0 0 0 2002
## 2:375 Northern 0 0.0 0 0 0 2002
## 2:376 Northern 0 0.0 0 0 0 2002
## 2:377 Northern 0 0.0 0 0 0 2002
## 2:378 Northern 2 0.0 0 0 0 2002
## 2:379 Northern 37 0.0 0 0 0 2003
## 2:380 Northern 0 0.0 0 0 0 2004
## 2:381 Northern 0 0.0 0 0 0 2004
## 2:382 Northern 0 0.0 0 0 0 2005
## 2:383 Northern 0 0.0 0 0 0 2005
## 2:384 Northern 0 0.0 0 0 0 2005
## 2:385 Northern 0 0.0 0 0 0 2005
## 2:386 Northern 0 0.0 0 0 0 2005
## 2:387 Northern 0 0.0 0 0 0 2005
## 2:388 Northern 0 0.0 0 0 0 2005
## 2:389 Northern 0 0.0 0 0 0 2003
## 2:390 Northern 0 0.0 0 0 0 2009
## 2:391 Northern 0 0.0 0 0 0 2009
## 2:392 Northern 0 0.0 0 0 0 2009
## 2:393 Northern 0 0.0 0 0 0 2009
## 2:394 Northern 0 0.0 0 0 0 2009
## 2:395 Northern 0 0.0 0 0 0 2010
## 2:396 Northern 0 0.0 0 0 0 2010
## 2:397 Northern 0 0.0 0 0 0 2010
## 2:398 Northern 0 0.0 0 0 0 2010
## 2:399 Northern 0 0.0 0 0 0 2007
## 2:400 Northern 0 0.0 0 0 36 2008
## 2:401 Northern 0 96.0 33 0 0 2008
## 2:402 Northern 0 45.0 28 0 0 2008
## 2:403 Northern 0 0.0 0 0 0 2007
## 2:404 Northern 0 0.0 0 0 0 2007
## 2:405 Northern 0 67.0 0 0 0 2005
## 2:406 Northern 0 58.0 0 0 0 2006
## 2:407 Northern 0 29.0 0 0 0 2006
## 2:408 Northern 6 0.0 0 0 0 2009
## 2:409 Northern 6 0.0 0 0 0 2009
## 2:410 Northern 0 0.0 0 0 0 2008
## 2:411 Northern 0 0.0 0 0 0 2007
## 2:412 Northern 0 0.0 0 0 0 2006
## 2:413 Northern 0 0.0 0 0 0 2006
## 2:414 Northern 0 0.0 0 0 0 2006
## 2:415 Northern 0 0.0 0 0 0 2003
## 2:416 Northern 0 0.0 0 0 0 2003
## 2:417 Northern 0 0.0 0 0 0 2003
## 2:418 Northern 0 0.0 0 0 0 2003
## 2:419 Northern 0 0.0 0 0 0 2004
## 2:420 Northern 0 0.0 0 0 0 2006
## 2:421 Northern 0 0.0 0 0 0 2006
## 2:422 Northern 0 0.0 0 0 0 2006
## 2:423 Northern 0 0.0 0 0 0 2006
## 2:424 Northern 0 0.0 0 0 0 2006
## 2:425 Northern 0 0.0 0 0 0 2006
## 2:426 Northern 0 0.0 0 0 0 2006
## 2:427 Northern 0 0.0 0 0 0 2006
## 2:428 Northern 0 0.0 0 0 0 2006
## 2:429 Northern 0 0.0 0 0 0 2006
## 2:430 Northern 0 0.0 0 0 0 1994
## 2:431 Northern 0 0.0 0 0 0 1994
## 2:432 Northern 0 0.0 0 0 0 1994
## 2:433 Northern 0 0.0 0 0 0 1994
## 2:434 Northern 0 0.0 0 0 0 1994
## 2:435 Northern 0 0.0 0 0 0 1994
## 2:436 Northern 0 0.0 0 0 0 1994
## 2:437 Northern 0 0.0 0 0 0 1994
## 2:438 Northern 0 0.0 0 0 0 1994
## 2:439 Northern 0 0.0 0 0 0 1995
## 2:440 Northern 0 0.0 0 0 0 1995
## 2:441 Northern 0 0.0 0 0 0 1995
## 2:442 Northern 0 0.0 0 0 0 1995
## 2:443 Northern 0 0.0 0 0 0 1995
## 2:444 Northern 0 0.0 0 0 0 1995
## 2:445 Northern 0 0.0 0 0 0 1995
## 2:446 Northern 0 0.0 0 0 0 1995
## 2:447 Northern 0 0.0 0 0 0 1995
## 2:448 Northern 0 0.0 0 0 0 1995
## 2:449 Northern 0 0.0 0 0 0 1995
## 2:450 Unspecified 12 0.0 0 48 0 2009
## Path1 RiskAll season Trans1 Vomit RateAll
## 1:1 Unspecified 4.00000 Fall Foodborne 1 100.0000000
## 1:2 Unspecified 12.00000 Fall Foodborne 1 83.3333333
## 1:3 Unspecified 58.00000 Fall Foodborne 0 33.0000000
## 1:4 Yes 1492.00000 Fall Foodborne 1 44.2000000
## 1:5 No 72.00000 Fall Foodborne 1 65.2777778
## 1:6 Unspecified 53.00000 Fall Foodborne 1 62.2641509
## 1:7 Unspecified 13.00000 Fall Foodborne 0 69.0000000
## 1:8 No 25.00000 Fall Unspecified 1 64.0000000
## 1:9 Unspecified 300.00000 Fall Foodborne 0 17.0000000
## 1:10 Unspecified 36.00000 Spring Foodborne 1 88.9000000
## 1:11 Unspecified 96.00000 Spring Unspecified 0 33.0000000
## 1:12 Unspecified 118.00000 Spring Foodborne 0 41.0000000
## 1:13 Unspecified 20.00000 Spring Foodborne 0 60.0000000
## 1:14 Unspecified 2.00000 Spring Foodborne 1 100.0000000
## 1:15 Unspecified 4.00000 Spring Unknown 1 75.0000000
## 1:16 Unspecified 26.00000 Spring Foodborne 1 69.2307692
## 1:17 Unspecified 25.00000 Spring Foodborne 1 56.0000000
## 1:18 Unspecified 13.00000 Spring Foodborne 1 61.5384615
## 1:19 Unspecified 12.00000 Spring Foodborne 0 75.0000000
## 1:20 Unspecified 3.00000 Spring Foodborne 0 100.0000000
## 1:21 Unspecified 2.00000 Spring Foodborne 0 100.0000000
## 1:22 Unspecified 60.00000 Spring Unknown 0 48.3333333
## 1:23 Unspecified 71.00000 Spring Foodborne 0 56.3380282
## 1:24 Unspecified 14.00000 Spring Foodborne 0 42.8571429
## 1:25 Unspecified 176.00000 Spring Unknown 0 40.9090909
## 1:26 Unspecified 5.00000 Spring Unknown 0 80.0000000
## 1:27 Unspecified 5.00000 Spring Foodborne 0 100.0000000
## 1:28 Unspecified 34.00000 Spring Foodborne 0 18.0000000
## 1:29 Unspecified 17.00000 Spring Foodborne 0 41.0000000
## 1:30 Unspecified 24.00000 Spring Foodborne 0 58.0000000
## 1:31 Unspecified 53.00000 Spring Foodborne 0 28.0000000
## 1:32 Unspecified 12.00000 Spring Unspecified 0 25.0000000
## 1:33 Unspecified 8.00000 Spring Unspecified 0 63.0000000
## 1:34 Unspecified 2.00000 Spring Unspecified 0 100.0000000
## 1:35 No 11.00000 Spring Person to Person 1 81.8181818
## 1:36 Unspecified 38.00000 Spring Unknown 1 76.3157895
## 1:37 No 1732.00000 Summer Waterborne 1 25.0000000
## 1:38 Unspecified 3.00000 Summer Foodborne 1 100.0000000
## 1:39 Unspecified 9.00000 Summer Foodborne 0 56.0000000
## 1:40 Unspecified 700.00000 Summer Unknown 1 5.2857143
## 1:41 Unspecified 3639.00000 Summer Foodborne 0 3.4075295
## 1:42 Unspecified 4.00000 Winter Foodborne 1 50.0000000
## 1:43 Unspecified 21.00000 Winter Foodborne 1 52.3809524
## 1:44 Unspecified 18.00000 Winter Foodborne 1 77.7777778
## 1:45 Unspecified 2.00000 Winter Foodborne 1 100.0000000
## 1:46 No 68.00000 Winter Foodborne 1 52.9411765
## 1:47 No 625.00000 Winter Foodborne 1 60.9600000
## 1:48 Unspecified 45.00000 Winter Foodborne 0 76.0000000
## 1:49 Unspecified 7.00000 Winter Unspecified 0 86.0000000
## 1:50 Unspecified 14.00000 Winter Foodborne 0 57.0000000
## 1:51 Unspecified 17.00000 Winter Foodborne 0 65.0000000
## 1:52 Unspecified 12.00000 Winter Unspecified 0 83.0000000
## 1:53 Unspecified 10.00000 Winter Unspecified 0 60.0000000
## 1:54 Unspecified 14.00000 Winter Unspecified 0 43.0000000
## 1:55 Unspecified 77.00000 Winter Foodborne 0 44.0000000
## 1:56 Unspecified 20.00000 Winter Foodborne 0 75.0000000
## 1:57 Unspecified 74.00000 Winter Unspecified 0 51.0000000
## 1:58 Unspecified 18.00000 Winter Foodborne 1 61.1111111
## 1:59 Unspecified 6.00000 Winter Unknown 1 66.6666667
## 1:60 Unspecified 50.00000 Winter Foodborne 1 40.0000000
## 1:61 Unspecified 4.00000 Winter Unknown 1 75.0000000
## 1:62 Unspecified 2.00000 Winter Unknown 1 100.0000000
## 1:63 Unspecified 19.00000 Winter Foodborne 1 31.5789474
## 1:64 Unspecified 158.00000 Winter Foodborne 1 34.8101266
## 1:65 Unspecified 10.00000 Winter Foodborne 1 70.0000000
## 1:66 Unspecified 3.00000 Winter Foodborne 1 100.0000000
## 1:67 Unspecified 96.00000 Winter Foodborne 1 59.3750000
## 1:68 Unspecified 8.00000 Winter Foodborne 0 100.0000000
## 1:69 Unspecified 4.00000 Winter Foodborne 0 100.0000000
## 1:70 Unspecified 11.00000 Winter Foodborne 0 90.9090909
## 1:71 Unspecified 40.00000 Winter Foodborne 0 47.5000000
## 1:72 Unspecified 17.00000 Winter Unknown 0 52.9411765
## 1:73 Unspecified 32.00000 Winter Unknown 0 59.3750000
## 1:74 Unspecified 4.00000 Winter Foodborne 0 75.0000000
## 1:75 Unspecified 3.00000 Winter Foodborne 0 67.0000000
## 1:76 Unspecified 9.00000 Winter Foodborne 0 78.0000000
## 1:77 Unspecified 14.00000 Winter Foodborne 0 79.0000000
## 1:78 Unspecified 18.00000 Winter Foodborne 0 39.0000000
## 1:79 Unspecified 29.00000 Winter Foodborne 0 45.0000000
## 1:80 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 1:81 Unspecified 5.00000 Winter Foodborne 0 40.0000000
## 1:82 Unspecified 10.00000 Winter Foodborne 0 70.0000000
## 1:83 Unspecified 86.00000 Winter Foodborne 0 37.0000000
## 1:84 Unspecified 37.00000 Winter Unspecified 0 32.0000000
## 1:85 Unspecified 15.00000 Winter Unspecified 0 87.0000000
## 1:86 Unspecified 4.00000 Winter Unspecified 0 100.0000000
## 1:87 Unspecified 15.00000 Winter Unspecified 0 73.0000000
## 1:88 Unspecified 27.00000 Winter Unspecified 0 56.0000000
## 1:89 Unspecified 28.00000 Winter Unspecified 0 61.0000000
## 1:90 Unspecified 45.00000 Winter Unspecified 0 49.0000000
## 1:91 Unspecified 36.00000 Winter Unspecified 0 33.0000000
## 1:92 Unspecified 23.00000 Winter Unspecified 0 52.0000000
## 1:93 Unspecified 55.00000 Winter Unspecified 0 36.0000000
## 1:94 Unspecified 10.00000 Winter Unspecified 0 40.0000000
## 1:95 Unspecified 2.00000 Winter Unspecified 0 100.0000000
## 1:96 No 34.00000 Winter Unspecified 1 85.2941177
## 1:97 No 100.00000 Winter Foodborne 1 30.0000000
## 1:98 Unspecified 41.00000 Winter Unspecified 1 19.5121951
## 1:99 Unspecified 6.00000 Winter Foodborne 1 33.3333333
## 1:100 Unspecified 29.00000 Winter Foodborne 0 31.0344828
## 1:101 Unspecified 29.00000 Winter Foodborne 0 62.0689655
## 1:102 Unspecified 287.00000 Winter Foodborne 0 16.3763066
## 1:103 Unspecified 63.00000 Winter Foodborne 1 33.3000000
## 2:1 No 108.00000 Fall Foodborne 1 39.8148148
## 2:2 Unspecified 130.00000 Fall Foodborne 1 20.7692308
## 2:3 Unspecified 25.00000 Fall Foodborne 1 60.0000000
## 2:4 Unspecified 8.00000 Fall Foodborne 1 75.0000000
## 2:5 Unspecified 48.00000 Fall Foodborne 1 83.3333333
## 2:6 No 220.00000 Fall Unspecified 1 54.2000000
## 2:7 Unspecified 71.42857 Fall Foodborne 1 63.0000000
## 2:8 No 509.00000 Fall Foodborne 1 37.5245580
## 2:9 No 36.00000 Fall Person to Person 1 53.0000000
## 2:10 Unspecified 2925.00000 Fall Foodborne 1 12.6153846
## 2:11 Unspecified 3826.00000 Fall Unspecified 1 3.4239415
## 2:12 Unspecified 1280.00000 Fall Unspecified 1 38.4375000
## 2:13 No 24000.00000 Fall Person to Person 1 4.8708333
## 2:14 No 53.00000 Fall Person to Person 1 58.0000000
## 2:15 Unspecified 13.00000 Fall Waterborne 1 53.8461539
## 2:16 No 135.00000 Fall Person to Person 1 32.5925926
## 2:17 Unspecified 113.00000 Fall Foodborne 0 50.0000000
## 2:18 Unspecified 83.00000 Fall Unspecified 0 31.0000000
## 2:19 Unspecified 1800.00000 Fall Environmental 1 7.7222222
## 2:20 Unspecified 1276.00000 Fall Foodborne 0 16.6144201
## 2:21 Unspecified 23.00000 Fall Foodborne 0 52.0000000
## 2:22 Unspecified 6.00000 Fall Unspecified 0 50.0000000
## 2:23 Unspecified 20.00000 Fall Unspecified 0 60.0000000
## 2:24 Unspecified 103.00000 Fall Unspecified 0 49.0000000
## 2:25 Unspecified 128.00000 Fall Unspecified 0 15.0000000
## 2:26 Unspecified 20.00000 Fall Foodborne 0 95.0000000
## 2:27 Unspecified 37.00000 Fall Foodborne 0 51.0000000
## 2:28 No 72.00000 Fall Foodborne 1 38.0000000
## 2:29 No 194.00000 Fall Foodborne 1 63.4803150
## 2:30 No 1357.00000 Fall Foodborne 1 8.8000000
## 2:31 Unspecified 224.00000 Fall Person to Person 1 34.3750000
## 2:32 Unspecified 66.00000 Fall Foodborne 0 15.1515151
## 2:33 Yes 960.00000 Fall Waterborne 0 31.2500000
## 2:34 Unspecified 105.00000 Fall Foodborne 1 80.9523810
## 2:35 Unspecified 48.00000 Fall Unspecified 1 4.1666667
## 2:36 Unspecified 78.00000 Fall Unspecified 1 3.8461538
## 2:37 Unspecified 68.00000 Fall Unspecified 1 2.9411765
## 2:38 Unspecified 111.00000 Fall Waterborne 1 76.0000000
## 2:39 No 213.00000 Fall Person to Person 1 46.6544218
## 2:40 Unspecified 28.00000 Fall Foodborne 0 17.8571429
## 2:41 Unspecified 3.00000 Fall Unknown 0 66.6666667
## 2:42 Unspecified 129.00000 Fall Foodborne 0 39.5348837
## 2:43 Unspecified 16.00000 Fall Foodborne 0 37.5000000
## 2:44 Unspecified 550.00000 Fall Unspecified 1 36.3636364
## 2:45 Unspecified 300.00000 Fall Foodborne 1 15.6666667
## 2:46 Unspecified 108.00000 Fall Foodborne 1 50.0000000
## 2:47 Unspecified 73.00000 Fall Foodborne 1 76.7123288
## 2:48 Unspecified 550.00000 Fall Person to Person 0 22.0000000
## 2:49 No 179.00000 Fall Unknown 1 36.3128492
## 2:50 Unspecified 2925.00000 Fall Foodborne 0 12.6153846
## 2:51 Unspecified 112.00000 Fall Waterborne 0 9.8214286
## 2:52 Unspecified 7454.00000 Fall Person to Person 0 9.4445935
## 2:53 Unspecified 6761.00000 Fall Foodborne 0 9.6287531
## 2:54 Unspecified 10276.00000 Fall Person to Person 0 1.2748151
## 2:55 Unspecified 171.00000 Fall Person to Person 0 13.0000000
## 2:56 Unspecified 170.00000 Fall Foodborne 0 50.0000000
## 2:57 Unspecified 10000.00000 Fall Waterborne 0 72.0000000
## 2:58 Unspecified 673.00000 Fall Person to Person 0 19.0000000
## 2:59 Yes 108.00000 Fall Unknown 1 34.2592593
## 2:60 No 355.00000 Fall Person to Person 1 30.4225352
## 2:61 No 6985.00000 Fall Person to Person 1 17.0000000
## 2:62 No 1744.00000 Fall Foodborne 1 24.0000000
## 2:63 Unspecified 5270.00000 Fall Unknown 1 9.0702087
## 2:64 Unspecified 3868.00000 Fall Unknown 1 11.6597725
## 2:65 Unspecified 6180.00000 Fall Unspecified 1 2.5242718
## 2:66 Unspecified 72.00000 Fall Unspecified 0 11.1111111
## 2:67 Unspecified 71.00000 Fall Unspecified 0 11.2676056
## 2:68 Unspecified 54.00000 Fall Unspecified 0 24.0740741
## 2:69 Unspecified 65.00000 Fall Unspecified 0 21.5384615
## 2:70 No 107.00000 Fall Foodborne 1 24.2990654
## 2:71 Unspecified 122.00000 Fall Person to Person 1 49.0000000
## 2:72 Unspecified 30.00000 Fall Foodborne 1 50.0000000
## 2:73 Unspecified 69.00000 Fall Foodborne 1 57.9710145
## 2:74 Unspecified 30.00000 Fall Foodborne 1 50.0000000
## 2:75 Unspecified 83.00000 Fall Foodborne 0 40.0000000
## 2:76 Yes 284.00000 Fall Unknown 1 36.0000000
## 2:77 No 361.00000 Fall Person to Person 1 14.1000000
## 2:78 No 325.00000 Spring Foodborne 1 10.8000000
## 2:79 Unspecified 400.00000 Spring Foodborne 1 10.0000000
## 2:80 Unspecified 132.00000 Spring Foodborne 1 3.0000000
## 2:81 Unspecified 14.00000 Spring Foodborne 1 85.7142857
## 2:82 Unspecified 23.00000 Spring Foodborne 1 82.6086957
## 2:83 Unspecified 130.00000 Spring Foodborne 1 11.5384615
## 2:84 Unspecified 158.00000 Spring Foodborne 1 39.2405063
## 2:85 Unspecified 37.00000 Spring Unspecified 1 48.6486486
## 2:86 Unspecified 29.00000 Spring Foodborne 1 80.0000000
## 2:87 Unspecified 95.00000 Spring Foodborne 1 58.0000000
## 2:88 Unspecified 18.00000 Spring Foodborne 1 50.0000000
## 2:89 Unknown 1276.00000 Spring Person to Person 1 28.1347962
## 2:90 No 2054.00000 Spring Foodborne 1 6.0856865
## 2:91 Unspecified 113.00000 Spring Foodborne 1 56.6371681
## 2:92 No 7169.00000 Spring Foodborne 1 38.0000000
## 2:93 No 524.00000 Spring Foodborne 1 37.0000000
## 2:94 No 56.00000 Spring Unspecified 1 51.7857143
## 2:95 Unspecified 49.00000 Spring Foodborne 0 59.0000000
## 2:96 Unspecified 266.00000 Spring Unspecified 0 52.0000000
## 2:97 Unspecified 165.00000 Spring Person to Person 0 20.0000000
## 2:98 Unspecified 23.00000 Spring Unspecified 0 78.0000000
## 2:99 No 500.00000 Spring Foodborne 1 49.0000000
## 2:100 Yes 112.00000 Spring Foodborne 1 19.6428571
## 2:101 Unspecified 10.00000 Spring Unknown 0 50.0000000
## 2:102 Unspecified 565.00000 Spring Foodborne 0 28.6725664
## 2:103 Unspecified 796.00000 Spring Unknown 0 40.8291457
## 2:104 No 414.45455 Spring Foodborne 1 94.0000000
## 2:105 Unspecified 27.00000 Spring Person to Person 1 74.0000000
## 2:106 Unspecified 6.00000 Spring Unspecified 0 100.0000000
## 2:107 Unspecified 212.00000 Spring Unspecified 0 25.0000000
## 2:108 Unspecified 60.00000 Spring Unspecified 0 67.0000000
## 2:109 Unspecified 34.00000 Spring Unspecified 0 35.0000000
## 2:110 Unspecified 33.00000 Spring Unspecified 0 42.0000000
## 2:111 Unspecified 38.00000 Spring Unspecified 0 34.0000000
## 2:112 Unspecified 3.00000 Spring Unspecified 0 100.0000000
## 2:113 Unspecified 19.00000 Spring Foodborne 0 63.0000000
## 2:114 Unspecified 11.00000 Spring Unspecified 0 91.0000000
## 2:115 Unspecified 139.00000 Spring Unspecified 0 24.0000000
## 2:116 No 309.00000 Spring Waterborne 1 31.0000000
## 2:117 No 207.00000 Spring Waterborne 1 47.0000000
## 2:118 No 672.00000 Spring Waterborne 1 55.0000000
## 2:119 No 61.90476 Spring Person to Person 1 42.0000000
## 2:120 Unspecified 15000.00000 Spring Waterborne 0 13.3333333
## 2:121 Yes 160.00000 Spring Waterborne 0 36.2500000
## 2:122 Yes 50.00000 Spring Waterborne 0 50.0000000
## 2:123 Yes 150.00000 Spring Waterborne 0 63.3333333
## 2:124 Unspecified 56.00000 Spring Waterborne 0 71.4285714
## 2:125 Unspecified 90.00000 Spring Waterborne 0 44.4444444
## 2:126 Unspecified 74.00000 Spring Unspecified 1 41.8918919
## 2:127 Unspecified 25.39683 Spring Unspecified 1 63.0000000
## 2:128 Unspecified 750.00000 Spring Unspecified 0 6.2666667
## 2:129 Unspecified 94.00000 Spring Waterborne 1 65.0000000
## 2:130 Unspecified 25.00000 Spring Unspecified 1 16.0000000
## 2:131 Unspecified 9.00000 Spring Unspecified 1 22.2222222
## 2:132 Unspecified 92.00000 Spring Unspecified 1 2.1739130
## 2:133 Unspecified 16.00000 Spring Unspecified 1 12.5000000
## 2:134 Unspecified 36.00000 Spring Unspecified 1 5.5555556
## 2:135 Unspecified 96.00000 Spring Unspecified 1 3.1250000
## 2:136 No 257.00000 Spring Person to Person 1 49.0000000
## 2:137 No 74.00000 Spring Waterborne 1 74.3243243
## 2:138 Unspecified 5.00000 Spring Unknown 0 40.0000000
## 2:139 Unspecified 9.00000 Spring Unknown 0 55.5555556
## 2:140 Unspecified 47.00000 Spring Unknown 0 42.5531915
## 2:141 Unspecified 8.00000 Spring Unknown 0 25.0000000
## 2:142 Unspecified 62.00000 Spring Unknown 0 43.5483871
## 2:143 Unspecified 50.00000 Spring Unknown 0 22.0000000
## 2:144 Unspecified 6.00000 Spring Foodborne 0 50.0000000
## 2:145 Unspecified 283.00000 Spring Unknown 0 55.4770318
## 2:146 Unspecified 236.00000 Spring Foodborne 0 28.8135593
## 2:147 Unspecified 356.00000 Spring Foodborne 0 51.6853933
## 2:148 Unspecified 817.00000 Spring Foodborne 0 24.8470012
## 2:149 Unspecified 55.00000 Spring Foodborne 1 32.7000000
## 2:150 Unspecified 2.00000 Spring Foodborne 1 100.0000000
## 2:151 Unspecified 90.00000 Spring Foodborne 1 18.9000000
## 2:152 Unspecified 2.00000 Spring Foodborne 1 100.0000000
## 2:153 No 125.00000 Spring Foodborne 1 59.0000000
## 2:154 Unspecified 45.00000 Spring Foodborne 1 82.2222222
## 2:155 Unspecified 24.00000 Spring Foodborne 1 70.8333333
## 2:156 Unspecified 180.00000 Spring Foodborne 1 38.8888889
## 2:157 Unspecified 250.00000 Spring Unspecified 1 30.0000000
## 2:158 Unspecified 620.00000 Spring Person to Person 1 16.7741935
## 2:159 Unknown 250.00000 Spring Unknown 1 28.4000000
## 2:160 Unspecified 192.00000 Spring Foodborne 1 23.4375000
## 2:161 Unspecified 87.00000 Spring Foodborne 1 39.0804598
## 2:162 Unspecified 2769.00000 Spring Person to Person 0 0.5055977
## 2:163 Unspecified 136.00000 Spring Person to Person 0 31.0000000
## 2:164 No 398.00000 Spring Unknown 1 0.7537688
## 2:165 Yes 231.00000 Spring Person to Person 1 22.9437229
## 2:166 No 790.00000 Spring Foodborne 1 25.8000000
## 2:167 Unspecified 351.35135 Spring Unspecified 1 3.7000000
## 2:168 No 859.00000 Summer Foodborne 1 23.9000000
## 2:169 Unspecified 100.00000 Summer Foodborne 1 70.0000000
## 2:170 Unspecified 105.00000 Summer Waterborne 1 38.1000000
## 2:171 No 200.00000 Summer Foodborne 1 24.5000000
## 2:172 Unspecified 1000.00000 Summer Foodborne 1 3.3000000
## 2:173 Unspecified 20.00000 Summer Foodborne 1 95.0000000
## 2:174 Unspecified 137.00000 Summer Foodborne 1 44.5255474
## 2:175 Unspecified 110.00000 Summer Foodborne 1 13.6363636
## 2:176 Unspecified 13.00000 Summer Foodborne 1 76.9230769
## 2:177 Unspecified 8.00000 Summer Foodborne 1 100.0000000
## 2:178 No 400.00000 Summer Person to Person 1 20.0000000
## 2:179 No 240.00000 Summer Person to Person 1 17.0000000
## 2:180 Unspecified 3789.00000 Summer Unspecified 1 10.4249142
## 2:182 No 40.00000 Summer Person to Person 1 55.0000000
## 2:183 Unspecified 25.00000 Summer Unspecified 1 84.0000000
## 2:184 No 200.00000 Summer Unspecified 1 33.0000000
## 2:185 Unspecified 4500.00000 Summer Person to Person 1 7.2000000
## 2:186 Unspecified 15.00000 Summer Foodborne 0 80.0000000
## 2:187 Unspecified 30.00000 Summer Foodborne 1 40.0000000
## 2:188 Yes 449.00000 Summer Waterborne 1 62.0000000
## 2:189 Unspecified 33.00000 Summer Foodborne 0 48.0000000
## 2:190 Unspecified 264.00000 Summer Unspecified 0 6.0000000
## 2:191 No 273.00000 Summer Foodborne 1 55.0000000
## 2:192 Unspecified 748.00000 Summer Person to Person 1 60.6875000
## 2:193 Unspecified 45.00000 Summer Waterborne 0 28.8888889
## 2:194 Unspecified 120.00000 Summer Waterborne 0 33.3333333
## 2:195 Yes 100.00000 Summer Waterborne 0 60.0000000
## 2:196 Yes 14.00000 Summer Waterborne 0 92.8571429
## 2:197 Yes 25.00000 Summer Waterborne 0 80.0000000
## 2:198 Unspecified 220.00000 Summer Person to Person 1 16.8181818
## 2:199 Unspecified 181.00000 Summer Person to Person 1 14.9171271
## 2:200 Unspecified 53.00000 Summer Environmental 1 26.4150943
## 2:201 Unspecified 563.63636 Summer Unspecified 1 33.0000000
## 2:202 Unspecified 94.00000 Summer Foodborne 1 50.0000000
## 2:203 Unspecified 150.00000 Summer Foodborne 1 27.3000000
## 2:204 Unspecified 33.00000 Summer Foodborne 1 24.2000000
## 2:205 Unspecified 44.00000 Summer Foodborne 1 18.2000000
## 2:206 Unspecified 13.00000 Summer Foodborne 1 38.5000000
## 2:207 Unspecified 6.00000 Summer Foodborne 1 83.3000000
## 2:208 Unspecified 65.00000 Summer Foodborne 1 24.6000000
## 2:209 Unspecified 16.00000 Summer Foodborne 1 31.3000000
## 2:210 Unspecified 53.00000 Summer Foodborne 1 26.4150943
## 2:211 No 2800.00000 Summer Person to Person 1 6.0000000
## 2:212 No 4500.00000 Summer Person to Person 1 9.0000000
## 2:213 Unspecified 137.00000 Summer Person to Person 0 35.0000000
## 2:214 No 26.00000 Summer Foodborne 1 73.1000000
## 2:215 No 106.00000 Summer Foodborne 1 56.6000000
## 2:216 No 795.00000 Summer Person to Person 1 20.8805031
## 2:217 Unspecified 2953.00000 Summer Person to Person 0 1.8625127
## 2:218 Unspecified 3789.00000 Summer Person to Person 0 10.4249142
## 2:219 Unspecified 23.00000 Summer Foodborne 0 48.0000000
## 2:220 Unspecified 56.00000 Summer Foodborne 0 30.0000000
## 2:221 Unspecified 80.00000 Summer Unknown 1 10.0000000
## 2:222 Unspecified 84.00000 Summer Unknown 1 31.0000000
## 2:223 Unspecified 80.00000 Summer Unknown 1 28.0000000
## 2:224 No 80.00000 Summer Foodborne 1 52.5000000
## 2:225 No 163.00000 Summer Waterborne 1 105.0000000
## 2:226 No 753.00000 Winter Foodborne 1 44.0000000
## 2:227 No 81.00000 Winter Waterborne 1 43.2098765
## 2:228 Unspecified 225.00000 Winter Foodborne 1 30.7000000
## 2:229 Unspecified 150.00000 Winter Foodborne 1 40.0000000
## 2:230 Unspecified 12.00000 Winter Foodborne 1 75.0000000
## 2:231 No 180.00000 Winter Person to Person 1 21.1111111
## 2:232 No 772.00000 Winter Waterborne 1 22.6683938
## 2:233 Unspecified 27.00000 Winter Unspecified 1 48.1481481
## 2:234 Unspecified 189.00000 Winter Waterborne 1 28.0000000
## 2:235 No 266.00000 Winter Environmental 1 39.0000000
## 2:236 Unspecified 4517.00000 Winter Environmental 1 20.8545495
## 2:237 No 850.00000 Winter Foodborne 1 27.5000000
## 2:238 No 36.00000 Winter Foodborne 1 58.0000000
## 2:239 Unspecified 34.00000 Winter Foodborne 1 85.0000000
## 2:240 Unspecified 26.00000 Winter Environmental 1 81.0000000
## 2:241 Unspecified 30.00000 Winter Person to Person 1 43.0000000
## 2:242 No 1067.00000 Winter Person to Person 0 6.5604499
## 2:243 No 22.00000 Winter Foodborne 1 68.1818182
## 2:244 No 1195.48872 Winter Foodborne 0 13.3000000
## 2:245 No 530.00000 Winter Unspecified 1 20.0000000
## 2:246 No 760.00000 Winter Unspecified 0 20.0000000
## 2:247 Unspecified 19.00000 Winter Unspecified 0 68.0000000
## 2:248 Unspecified 79.00000 Winter Person to Person 0 46.0000000
## 2:249 Unspecified 118.00000 Winter Foodborne 0 64.0000000
## 2:250 Unspecified 31.00000 Winter Unspecified 0 90.0000000
## 2:251 Unspecified 337.00000 Winter Person to Person 0 12.0000000
## 2:252 Unspecified 2.00000 Winter Unknown 1 100.0000000
## 2:253 Unspecified 2.00000 Winter Unknown 1 50.0000000
## 2:254 Unspecified 27.00000 Winter Foodborne 1 62.9629630
## 2:255 Unspecified 190.00000 Winter Foodborne 1 43.1578947
## 2:256 Unspecified 77.00000 Winter Foodborne 1 36.3636364
## 2:257 Unspecified 22.00000 Winter Foodborne 0 54.5454546
## 2:258 Unspecified 15.00000 Winter Foodborne 0 100.0000000
## 2:259 Unspecified 261.00000 Winter Foodborne 0 39.4636015
## 2:260 Unspecified 211.00000 Winter Foodborne 0 50.7109005
## 2:261 Unspecified 262.00000 Winter Foodborne 0 17.9389313
## 2:262 Unspecified 12.00000 Winter Unknown 0 16.6666667
## 2:263 Unspecified 8.00000 Winter Person to Person 1 75.0000000
## 2:264 Unspecified 675.00000 Winter Person to Person 1 52.5925926
## 2:265 Unspecified 15.00000 Winter Foodborne 0 47.0000000
## 2:266 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 2:267 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 2:268 Unspecified 217.00000 Winter Unspecified 0 26.0000000
## 2:269 Unspecified 49.00000 Winter Unspecified 0 12.0000000
## 2:270 Unspecified 20.00000 Winter Foodborne 0 95.0000000
## 2:271 Unspecified 35.00000 Winter Foodborne 0 29.0000000
## 2:272 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 2:273 Unspecified 3.00000 Winter Foodborne 0 100.0000000
## 2:274 Unspecified 52.00000 Winter Unspecified 0 52.0000000
## 2:275 Unspecified 50.00000 Winter Unspecified 0 42.0000000
## 2:276 Unspecified 2447.00000 Winter Person to Person 1 18.1855333
## 2:277 No 137.00000 Winter Foodborne 1 58.3941606
## 2:278 No 736.00000 Winter Foodborne 1 7.1000000
## 2:279 No 2585.00000 Winter Waterborne 1 20.9671180
## 2:280 Unspecified 284.00000 Winter Person to Person 1 61.9000000
## 2:281 No 83.00000 Winter Person to Person 1 63.0000000
## 2:282 No 188.00000 Winter Person to Person 1 75.5319149
## 2:283 Unspecified 2500.00000 Winter Waterborne 0 8.0000000
## 2:284 Yes 250.00000 Winter Waterborne 0 40.0000000
## 2:285 Yes 2200.00000 Winter Waterborne 0 13.6363636
## 2:286 Unspecified 13.00000 Winter Waterborne 0 84.6153846
## 2:287 No 299.00000 Winter Foodborne 1 43.8127090
## 2:288 Yes 61.00000 Winter Foodborne 0 57.4000000
## 2:289 No 154.00000 Winter Foodborne 1 44.8051948
## 2:290 No 138.00000 Winter Person to Person 1 45.6521739
## 2:291 No 484.00000 Winter Person to Person 1 14.0000000
## 2:292 No 166.00000 Winter Person to Person 1 30.1204819
## 2:293 Unspecified 33.00000 Winter Unspecified 1 6.0606061
## 2:294 Unspecified 467.00000 Winter Unspecified 1 13.0620985
## 2:295 Unspecified 385.00000 Winter Unspecified 1 1.5584416
## 2:296 Unspecified 7.00000 Winter Unspecified 1 28.5714286
## 2:297 Unspecified 121.00000 Winter Unspecified 1 8.2644628
## 2:298 Unspecified 95.00000 Winter Unspecified 1 2.1052632
## 2:299 No 78.00000 Winter Unspecified 1 8.9743590
## 2:300 Unspecified 85.00000 Winter Unspecified 1 3.5294118
## 2:301 Unspecified 123.00000 Winter Unspecified 1 4.8780488
## 2:302 Unspecified 145.00000 Winter Unspecified 1 1.3793103
## 2:303 Unspecified 76.00000 Winter Unspecified 1 2.6315789
## 2:304 Unspecified 235.00000 Winter Unspecified 1 1.2765957
## 2:305 Unspecified 78.00000 Winter Unspecified 1 2.5641026
## 2:306 Unspecified 18.00000 Winter Unspecified 1 61.1111111
## 2:307 Unspecified 56.00000 Winter Unspecified 1 3.5714286
## 2:308 Unspecified 59.00000 Winter Unspecified 1 13.5593220
## 2:309 Unspecified 861.00000 Winter Unspecified 1 7.3170732
## 2:310 Unspecified 21.00000 Winter Unspecified 1 19.0476191
## 2:311 Unspecified 36.00000 Winter Unspecified 1 16.6666667
## 2:312 Unspecified 42.00000 Winter Unspecified 1 30.9523809
## 2:313 Unspecified 110.00000 Winter Unspecified 1 2.7272727
## 2:314 Unspecified 156.00000 Winter Unspecified 1 3.2051282
## 2:315 Unspecified 52.00000 Winter Unspecified 1 3.8461538
## 2:316 Unspecified 185.00000 Winter Unspecified 1 1.6216216
## 2:317 Unspecified 162.00000 Winter Unspecified 1 3.0864198
## 2:318 Unspecified 93.00000 Winter Unspecified 1 35.4838710
## 2:319 Unspecified 79.00000 Winter Unspecified 1 2.5316456
## 2:320 Unspecified 135.00000 Winter Unspecified 1 2.2222222
## 2:321 Unspecified 92.00000 Winter Unspecified 1 4.3478261
## 2:322 Unspecified 65.00000 Winter Unspecified 1 13.8461539
## 2:323 Unspecified 109.00000 Winter Unspecified 1 29.3577982
## 2:324 Unspecified 36.00000 Winter Unspecified 1 5.5555556
## 2:325 Unspecified 85.00000 Winter Unspecified 1 2.3529412
## 2:326 Unspecified 68.00000 Winter Unspecified 1 11.7647059
## 2:327 Unspecified 74.00000 Winter Unspecified 1 2.7027027
## 2:328 Unspecified 55.00000 Winter Unspecified 1 3.6363636
## 2:329 Unspecified 101.00000 Winter Unspecified 1 5.9405941
## 2:330 Unspecified 65.00000 Winter Unspecified 1 13.8461539
## 2:331 Unspecified 85.00000 Winter Unspecified 1 7.0588235
## 2:332 Unspecified 85.00000 Winter Unspecified 1 7.0588235
## 2:333 Unspecified 132.00000 Winter Unspecified 1 3.7878788
## 2:334 Unspecified 33.00000 Winter Unspecified 1 9.0909091
## 2:335 Unspecified 76.00000 Winter Unspecified 1 3.9473684
## 2:336 Unspecified 98.00000 Winter Unspecified 1 6.1224490
## 2:337 Unspecified 41.00000 Winter Unspecified 1 19.5121951
## 2:338 No 234.00000 Winter Foodborne 1 36.0000000
## 2:339 Unspecified 234.00000 Winter Waterborne 1 30.0000000
## 2:340 Unspecified 263.00000 Winter Waterborne 1 49.6000000
## 2:341 Unspecified 3.00000 Winter Foodborne 1 66.6666667
## 2:342 Unspecified 162.00000 Winter Foodborne 1 56.2000000
## 2:343 No 325.00000 Winter Foodborne 1 52.9000000
## 2:344 Unspecified 5.00000 Winter Unknown 0 80.0000000
## 2:345 Unspecified 1.00000 Winter Foodborne 0 100.0000000
## 2:346 Unspecified 35.00000 Winter Foodborne 0 80.0000000
## 2:347 Unspecified 3.00000 Winter Foodborne 0 100.0000000
## 2:348 Unspecified 1.00000 Winter Foodborne 0 100.0000000
## 2:349 Unspecified 295.00000 Winter Foodborne 0 26.1016949
## 2:350 Unspecified 13.00000 Winter Unknown 0 76.9230769
## 2:351 Unspecified 3.00000 Winter Foodborne 0 100.0000000
## 2:352 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 2:353 Unspecified 5.00000 Winter Foodborne 0 100.0000000
## 2:354 Unspecified 15.00000 Winter Unknown 0 40.0000000
## 2:355 Unspecified 331.00000 Winter Foodborne 0 7.8549849
## 2:356 Unspecified 2.00000 Winter Foodborne 0 100.0000000
## 2:357 Unspecified 3.00000 Winter Foodborne 0 100.0000000
## 2:358 Unspecified 3.00000 Winter Foodborne 0 100.0000000
## 2:359 Unspecified 6.00000 Winter Foodborne 0 100.0000000
## 2:360 Unspecified 5.00000 Winter Foodborne 0 60.0000000
## 2:361 Unspecified 15.00000 Winter Unknown 0 20.0000000
## 2:362 Unspecified 9.00000 Winter Foodborne 0 55.5555556
## 2:363 Unspecified 67.00000 Winter Foodborne 0 43.2835821
## 2:364 Unspecified 118.00000 Winter Foodborne 0 31.3559322
## 2:365 Unspecified 255.00000 Winter Foodborne 0 27.4509804
## 2:366 No 387.00000 Winter Foodborne 1 55.0000000
## 2:367 Unspecified 400.00000 Winter Foodborne 1 12.5000000
## 2:368 No 18.00000 Winter Foodborne 1 44.4444444
## 2:369 Unspecified 60.00000 Winter Foodborne 1 46.6666667
## 2:370 No 34.00000 Winter Person to Person 1 68.0000000
## 2:371 Unspecified 125.00000 Winter Unspecified 1 56.8000000
## 2:372 No 35.00000 Winter Unspecified 1 22.8571429
## 2:373 Unspecified 2729.00000 Winter Person to Person 0 11.5793331
## 2:374 Unspecified 8591.00000 Winter Person to Person 0 4.1555116
## 2:375 Unspecified 6851.00000 Winter Person to Person 0 1.7077799
## 2:376 Unspecified 57.00000 Winter Person to Person 0 44.0000000
## 2:377 Unspecified 65.00000 Winter Person to Person 0 40.0000000
## 2:378 Unspecified 107.00000 Winter Environmental 1 12.1495327
## 2:379 No 427.00000 Winter Environmental 1 49.4145199
## 2:380 Yes 1466.00000 Winter Unknown 0 20.3956344
## 2:381 No 90.00000 Winter Waterborne 0 30.0000000
## 2:382 No 96.00000 Winter Environmental 0 20.8333333
## 2:383 No 76.00000 Winter Person to Person 0 21.0526316
## 2:384 No 143.00000 Winter Unknown 0 6.2937063
## 2:385 No 58.00000 Winter Unknown 0 22.4137931
## 2:386 Yes 40.00000 Winter Foodborne 1 20.0000000
## 2:387 No 39.00000 Winter Unknown 1 7.6923077
## 2:388 No 5400.00000 Winter Foodborne 1 0.4074074
## 2:389 No 203.00000 Winter Unspecified 1 20.6896552
## 2:390 Unspecified 77.00000 Winter Unspecified 0 12.9870130
## 2:391 Unspecified 80.00000 Winter Unspecified 0 12.5000000
## 2:392 Unspecified 62.00000 Winter Unspecified 0 19.3548387
## 2:393 Unspecified 104.00000 Winter Unspecified 0 9.6153846
## 2:394 Unspecified 80.00000 Winter Unspecified 0 7.5000000
## 2:395 Unspecified 62.00000 Winter Unspecified 0 17.7419355
## 2:396 Unspecified 70.00000 Winter Unspecified 0 20.0000000
## 2:397 Unspecified 61.00000 Winter Unspecified 0 4.9180328
## 2:398 Unspecified 64.00000 Winter Unspecified 0 23.4375000
## 2:399 Unspecified 369.00000 Winter Waterborne 1 11.6531165
## 2:400 No 216.00000 Winter Waterborne 1 31.0000000
## 2:401 Yes 34.00000 Winter Foodborne 1 67.6470588
## 2:402 No 21.00000 Winter Foodborne 1 73.0000000
## 2:403 Yes 698.00000 Winter Foodborne 1 14.6000000
## 2:404 No 36.00000 Winter Unspecified 1 11.1111111
## 2:405 Unspecified 319.63470 Winter Unknown 1 21.9000000
## 2:406 Unspecified 348.31461 Winter Unspecified 1 8.9000000
## 2:407 Unspecified 331.42857 Winter Unspecified 1 17.5000000
## 2:408 No 34.00000 Winter Foodborne 1 53.0000000
## 2:409 No 41.00000 Winter Foodborne 1 49.0000000
## 2:410 Yes 815.00000 Winter Foodborne 1 12.4000000
## 2:411 Unspecified 72.00000 Foodborne 1 22.2000000
## 2:412 Unspecified 1888.00000 Person to Person 1 5.3000000
## 2:413 Unspecified 3245.00000 Person to Person 1 7.8000000
## 2:414 Unspecified 1986.00000 Person to Person 1 5.6000000
## 2:415 No 41.00000 Foodborne 1 56.0975610
## 2:416 No 28.00000 Foodborne 1 57.1428571
## 2:417 No 47.00000 Foodborne 1 29.7872340
## 2:418 No 134.00000 Foodborne 1 64.1791045
## 2:419 No 39.00000 Foodborne 1 38.4615385
## 2:420 Unspecified 140.00000 Person to Person 0 11.0000000
## 2:421 Unspecified 2590.00000 Person to Person 0 4.0000000
## 2:422 Unspecified 166.00000 Person to Person 0 37.0000000
## 2:423 Unspecified 4042.00000 Person to Person 0 8.0000000
## 2:424 Unspecified 3578.00000 Person to Person 0 8.0000000
## 2:425 Unspecified 12124.00000 Person to Person 0 3.0000000
## 2:426 Unspecified 10013.00000 Person to Person 0 1.0000000
## 2:427 Unspecified 2217.00000 Person to Person 0 3.0000000
## 2:428 Unspecified 454.00000 Person to Person 0 30.0000000
## 2:429 Unspecified 2442.00000 Person to Person 0 2.0000000
## 2:430 No 140.00000 Unspecified 0 28.0000000
## 2:431 No 170.00000 Unspecified 0 50.0000000
## 2:432 No 146.00000 Unspecified 0 21.0000000
## 2:433 No 45.00000 Foodborne 0 31.0000000
## 2:434 No 20.00000 Foodborne 0 100.0000000
## 2:435 No 70.00000 Unspecified 0 57.0000000
## 2:436 No 67.00000 Foodborne 0 93.0000000
## 2:437 No 130.00000 Unspecified 0 31.0000000
## 2:438 No 200.00000 Unspecified 0 35.0000000
## 2:439 No 245.00000 Unspecified 0 26.0000000
## 2:440 No 75.00000 Foodborne 0 33.0000000
## 2:441 No 132.00000 Unspecified 0 58.0000000
## 2:442 No 50.00000 Unspecified 0 66.0000000
## 2:443 No 45.00000 Unspecified 0 49.0000000
## 2:444 No 15.00000 Foodborne 0 50.0000000
## 2:445 No 200.00000 Unspecified 0 44.0000000
## 2:446 No 100.00000 Unspecified 0 17.0000000
## 2:447 No 50.00000 Foodborne 0 70.0000000
## 2:448 No 20.00000 Unspecified 0 50.0000000
## 2:449 No 22.00000 Foodborne 0 45.0000000
## 2:450 Unspecified 1533.00000 Person to Person 1 15.4000000
## fracinf Setting
## 1:1 100.0000000 Restaurant
## 1:2 83.3333333 Restaurant
## 1:3 32.7586207 Restaurant
## 1:4 45.7774799 Restaurant
## 1:5 70.8333333 Restaurant
## 1:6 62.2641509 Restaurant
## 1:7 69.2307692 Restaurant
## 1:8 64.0000000 Restaurant
## 1:9 16.6666667 Restaurant
## 1:10 88.8888889 Restaurant
## 1:11 33.3333333 Restaurant
## 1:12 40.6779661 Restaurant
## 1:13 60.0000000 Restaurant
## 1:14 100.0000000 Restaurant
## 1:15 75.0000000 Restaurant
## 1:16 69.2307692 Restaurant
## 1:17 56.0000000 Restaurant
## 1:18 61.5384615 Restaurant
## 1:19 75.0000000 Restaurant
## 1:20 100.0000000 Restaurant
## 1:21 100.0000000 Restaurant
## 1:22 48.3333333 Restaurant
## 1:23 56.3380282 Restaurant
## 1:24 42.8571429 Restaurant
## 1:25 40.9090909 Restaurant
## 1:26 80.0000000 Restaurant
## 1:27 100.0000000 Restaurant
## 1:28 17.6470588 Restaurant
## 1:29 41.1764706 Restaurant
## 1:30 58.3333333 Restaurant
## 1:31 28.3018868 Restaurant
## 1:32 25.0000000 Restaurant
## 1:33 62.5000000 Restaurant
## 1:34 100.0000000 Restaurant
## 1:35 81.8181818 Restaurant
## 1:36 76.3157895 Restaurant
## 1:37 25.0000000 Restaurant
## 1:38 100.0000000 Restaurant
## 1:39 55.5555556 Restaurant
## 1:40 6.0000000 Restaurant
## 1:41 3.4075295 Restaurant
## 1:42 50.0000000 Restaurant
## 1:43 52.3809524 Restaurant
## 1:44 77.7777778 Restaurant
## 1:45 100.0000000 Restaurant
## 1:46 52.9411765 Restaurant
## 1:47 61.9200000 Restaurant
## 1:48 75.5555556 Restaurant
## 1:49 85.7142857 Restaurant
## 1:50 57.1428571 Restaurant
## 1:51 64.7058824 Restaurant
## 1:52 83.3333333 Restaurant
## 1:53 60.0000000 Restaurant
## 1:54 42.8571429 Restaurant
## 1:55 44.1558442 Restaurant
## 1:56 75.0000000 Restaurant
## 1:57 51.3513514 Restaurant
## 1:58 61.1111111 Restaurant
## 1:59 66.6666667 Restaurant
## 1:60 40.0000000 Restaurant
## 1:61 75.0000000 Restaurant
## 1:62 100.0000000 Restaurant
## 1:63 31.5789474 Restaurant
## 1:64 34.8101266 Restaurant
## 1:65 70.0000000 Restaurant
## 1:66 100.0000000 Restaurant
## 1:67 59.3750000 Restaurant
## 1:68 100.0000000 Restaurant
## 1:69 100.0000000 Restaurant
## 1:70 90.9090909 Restaurant
## 1:71 47.5000000 Restaurant
## 1:72 52.9411765 Restaurant
## 1:73 59.3750000 Restaurant
## 1:74 75.0000000 Restaurant
## 1:75 66.6666667 Restaurant
## 1:76 77.7777778 Restaurant
## 1:77 78.5714286 Restaurant
## 1:78 38.8888889 Restaurant
## 1:79 44.8275862 Restaurant
## 1:80 100.0000000 Restaurant
## 1:81 40.0000000 Restaurant
## 1:82 70.0000000 Restaurant
## 1:83 37.2093023 Restaurant
## 1:84 32.4324324 Restaurant
## 1:85 86.6666667 Restaurant
## 1:86 100.0000000 Restaurant
## 1:87 73.3333333 Restaurant
## 1:88 55.5555556 Restaurant
## 1:89 60.7142857 Restaurant
## 1:90 48.8888889 Restaurant
## 1:91 33.3333333 Restaurant
## 1:92 52.1739130 Restaurant
## 1:93 36.3636364 Restaurant
## 1:94 40.0000000 Restaurant
## 1:95 100.0000000 Restaurant
## 1:96 85.2941176 Restaurant
## 1:97 30.0000000 Restaurant
## 1:98 19.5121951 Restaurant
## 1:99 33.3333333 Restaurant
## 1:100 31.0344828 Restaurant
## 1:101 62.0689655 Restaurant
## 1:102 16.3763066 Restaurant
## 1:103 33.3333333 Restaurant
## 2:1 60.1851852 Other
## 2:2 20.7692308 Other
## 2:3 60.0000000 Other
## 2:4 75.0000000 Other
## 2:5 83.3333333 Other
## 2:6 52.7272727 Other
## 2:7 63.0000000 Other
## 2:8 37.5245580 Other
## 2:9 52.7777778 Other
## 2:10 12.6153846 Other
## 2:11 3.4239415 Other
## 2:12 38.4375000 Other
## 2:13 4.8708333 Other
## 2:14 60.3773585 Other
## 2:15 53.8461538 Other
## 2:16 32.5925926 Other
## 2:17 50.4424779 Other
## 2:18 31.3253012 Other
## 2:19 7.7222222 Other
## 2:20 30.3291536 Other
## 2:21 52.1739130 Other
## 2:22 50.0000000 Other
## 2:23 60.0000000 Other
## 2:24 48.5436893 Other
## 2:25 14.8437500 Other
## 2:26 95.0000000 Other
## 2:27 51.3513514 Other
## 2:28 37.5000000 Other
## 2:29 39.6907216 Other
## 2:30 8.8430361 Other
## 2:31 34.3750000 Other
## 2:32 15.1515152 Other
## 2:33 31.2500000 Other
## 2:34 94.2857143 Other
## 2:35 4.1666667 Other
## 2:36 3.8461538 Other
## 2:37 2.9411765 Other
## 2:38 75.6756757 Other
## 2:39 28.1690141 Other
## 2:40 17.8571429 Other
## 2:41 66.6666667 Other
## 2:42 39.5348837 Other
## 2:43 37.5000000 Other
## 2:44 36.3636364 Other
## 2:45 15.6666667 Other
## 2:46 50.0000000 Other
## 2:47 76.7123288 Other
## 2:48 21.6363636 Other
## 2:49 36.3128492 Other
## 2:50 12.6153846 Other
## 2:51 9.8214286 Other
## 2:52 9.4445935 Other
## 2:53 9.6287531 Other
## 2:54 1.2748151 Other
## 2:55 12.8654971 Other
## 2:56 50.0000000 Other
## 2:57 71.5000000 Other
## 2:58 18.7221397 Other
## 2:59 34.2592593 Other
## 2:60 30.4225352 Other
## 2:61 16.7931281 Other
## 2:62 23.6811927 Other
## 2:63 9.0702087 Other
## 2:64 11.6597725 Other
## 2:65 2.5242718 Other
## 2:66 11.1111111 Other
## 2:67 11.2676056 Other
## 2:68 24.0740741 Other
## 2:69 21.5384615 Other
## 2:70 28.0373832 Other
## 2:71 18.0327869 Other
## 2:72 50.0000000 Other
## 2:73 66.6666667 Other
## 2:74 50.0000000 Other
## 2:75 39.7590361 Other
## 2:76 36.6197183 Other
## 2:77 14.1274238 Other
## 2:78 10.7692308 Other
## 2:79 10.0000000 Other
## 2:80 3.0303030 Other
## 2:81 85.7142857 Other
## 2:82 82.6086957 Other
## 2:83 11.5384615 Other
## 2:84 39.2405063 Other
## 2:85 48.6486486 Other
## 2:86 79.3103448 Other
## 2:87 57.8947368 Other
## 2:88 50.0000000 Other
## 2:89 28.1347962 Other
## 2:90 6.0856865 Other
## 2:91 56.6371681 Other
## 2:92 37.6621565 Other
## 2:93 37.2137405 Other
## 2:94 51.7857143 Other
## 2:95 59.1836735 Other
## 2:96 52.2556391 Other
## 2:97 15.1515152 Other
## 2:98 78.2608696 Other
## 2:99 49.0000000 Other
## 2:100 19.6428571 Other
## 2:101 50.0000000 Other
## 2:102 28.6725664 Other
## 2:103 40.8291457 Other
## 2:104 48.4974775 Other
## 2:105 74.0740741 Other
## 2:106 100.0000000 Other
## 2:107 25.0000000 Other
## 2:108 66.6666667 Other
## 2:109 35.2941176 Other
## 2:110 42.4242424 Other
## 2:111 34.2105263 Other
## 2:112 100.0000000 Other
## 2:113 63.1578947 Other
## 2:114 90.9090909 Other
## 2:115 24.4604317 Other
## 2:116 31.3915858 Other
## 2:117 46.8599034 Other
## 2:118 54.7619048 Other
## 2:119 42.0000000 Other
## 2:120 13.3333333 Other
## 2:121 36.2500000 Other
## 2:122 50.0000000 Other
## 2:123 63.3333333 Other
## 2:124 71.4285714 Other
## 2:125 44.4444444 Other
## 2:126 41.8918919 Other
## 2:127 63.0000000 Other
## 2:128 6.2666667 Other
## 2:129 64.8936170 Other
## 2:130 16.0000000 Other
## 2:131 22.2222222 Other
## 2:132 2.1739130 Other
## 2:133 12.5000000 Other
## 2:134 5.5555556 Other
## 2:135 3.1250000 Other
## 2:136 49.0272374 Other
## 2:137 74.3243243 Other
## 2:138 40.0000000 Other
## 2:139 55.5555556 Other
## 2:140 42.5531915 Other
## 2:141 25.0000000 Other
## 2:142 43.5483871 Other
## 2:143 22.0000000 Other
## 2:144 50.0000000 Other
## 2:145 55.4770318 Other
## 2:146 28.8135593 Other
## 2:147 51.6853933 Other
## 2:148 24.8470012 Other
## 2:149 32.7272727 Other
## 2:150 100.0000000 Other
## 2:151 18.8888889 Other
## 2:152 100.0000000 Other
## 2:153 58.4000000 Other
## 2:154 82.2222222 Other
## 2:155 70.8333333 Other
## 2:156 38.8888889 Other
## 2:157 30.0000000 Other
## 2:158 16.7741935 Other
## 2:159 28.4000000 Other
## 2:160 24.4791667 Other
## 2:161 39.0804598 Other
## 2:162 0.5055977 Other
## 2:163 30.8823529 Other
## 2:164 0.7537688 Other
## 2:165 22.9437229 Other
## 2:166 32.9113924 Other
## 2:167 3.7000000 Other
## 2:168 23.8649593 Other
## 2:169 70.0000000 Other
## 2:170 38.0952381 Other
## 2:171 24.5000000 Other
## 2:172 3.3000000 Other
## 2:173 95.0000000 Other
## 2:174 44.5255474 Other
## 2:175 13.6363636 Other
## 2:176 76.9230769 Other
## 2:177 100.0000000 Other
## 2:178 20.0000000 Other
## 2:179 16.6666667 Other
## 2:180 10.4249142 Other
## 2:182 55.0000000 Other
## 2:183 84.0000000 Other
## 2:184 33.0000000 Other
## 2:185 7.2444444 Other
## 2:186 80.0000000 Other
## 2:187 40.0000000 Other
## 2:188 28.7305122 Other
## 2:189 48.4848485 Other
## 2:190 6.0606061 Other
## 2:191 54.9450549 Other
## 2:192 30.6149733 Other
## 2:193 28.8888889 Other
## 2:194 33.3333333 Other
## 2:195 60.0000000 Other
## 2:196 92.8571429 Other
## 2:197 80.0000000 Other
## 2:198 16.8181818 Other
## 2:199 14.9171271 Other
## 2:200 26.4150943 Other
## 2:201 33.0000000 Other
## 2:202 50.0000000 Other
## 2:203 27.3333333 Other
## 2:204 24.2424242 Other
## 2:205 18.1818182 Other
## 2:206 38.4615385 Other
## 2:207 83.3333333 Other
## 2:208 24.6153846 Other
## 2:209 31.2500000 Other
## 2:210 26.4150943 Other
## 2:211 5.7857143 Other
## 2:212 9.4444444 Other
## 2:213 35.0364964 Other
## 2:214 73.0769231 Other
## 2:215 56.6037736 Other
## 2:216 20.8805031 Other
## 2:217 1.8625127 Other
## 2:218 10.4249142 Other
## 2:219 47.8260870 Other
## 2:220 30.3571429 Other
## 2:221 10.0000000 Other
## 2:222 30.9523810 Other
## 2:223 27.5000000 Other
## 2:224 55.0000000 Other
## 2:225 53.3742331 Other
## 2:226 44.2231076 Other
## 2:227 43.2098765 Other
## 2:228 45.7777778 Other
## 2:229 40.0000000 Other
## 2:230 75.0000000 Other
## 2:231 21.1111111 Other
## 2:232 22.6683938 Other
## 2:233 48.1481481 Other
## 2:234 28.0423280 Other
## 2:235 38.7218045 Other
## 2:236 20.8545495 Other
## 2:237 27.1764706 Other
## 2:238 58.3333333 Other
## 2:239 85.2941176 Other
## 2:240 80.7692308 Other
## 2:241 43.3333333 Other
## 2:242 6.5604499 Other
## 2:243 68.1818182 Other
## 2:244 13.3000000 Other
## 2:245 20.0000000 Other
## 2:246 20.0000000 Other
## 2:247 68.4210526 Other
## 2:248 45.5696203 Other
## 2:249 64.4067797 Other
## 2:250 90.3225806 Other
## 2:251 12.1661721 Other
## 2:252 100.0000000 Other
## 2:253 50.0000000 Other
## 2:254 62.9629630 Other
## 2:255 43.1578947 Other
## 2:256 36.3636364 Other
## 2:257 54.5454545 Other
## 2:258 100.0000000 Other
## 2:259 39.4636015 Other
## 2:260 50.7109005 Other
## 2:261 17.9389313 Other
## 2:262 16.6666667 Other
## 2:263 87.5000000 Other
## 2:264 52.5925926 Other
## 2:265 46.6666667 Other
## 2:266 100.0000000 Other
## 2:267 100.0000000 Other
## 2:268 25.8064516 Other
## 2:269 12.2448980 Other
## 2:270 95.0000000 Other
## 2:271 28.5714286 Other
## 2:272 100.0000000 Other
## 2:273 100.0000000 Other
## 2:274 51.9230769 Other
## 2:275 42.0000000 Other
## 2:276 18.1855333 Other
## 2:277 58.3941606 Other
## 2:278 7.0652174 Other
## 2:279 64.0232108 Other
## 2:280 61.9718310 Other
## 2:281 62.6506024 Other
## 2:282 79.7872340 Other
## 2:283 8.0000000 Other
## 2:284 40.0000000 Other
## 2:285 13.6363636 Other
## 2:286 84.6153846 Other
## 2:287 46.8227425 Other
## 2:288 57.3770492 Other
## 2:289 44.8051948 Other
## 2:290 45.6521739 Other
## 2:291 14.0495868 Other
## 2:292 30.1204819 Other
## 2:293 6.0606061 Other
## 2:294 13.0620985 Other
## 2:295 1.5584416 Other
## 2:296 28.5714286 Other
## 2:297 8.2644628 Other
## 2:298 2.1052632 Other
## 2:299 8.9743590 Other
## 2:300 3.5294118 Other
## 2:301 4.8780488 Other
## 2:302 1.3793103 Other
## 2:303 2.6315789 Other
## 2:304 1.2765957 Other
## 2:305 2.5641026 Other
## 2:306 61.1111111 Other
## 2:307 3.5714286 Other
## 2:308 13.5593220 Other
## 2:309 7.3170732 Other
## 2:310 19.0476190 Other
## 2:311 16.6666667 Other
## 2:312 30.9523810 Other
## 2:313 2.7272727 Other
## 2:314 3.2051282 Other
## 2:315 3.8461538 Other
## 2:316 1.6216216 Other
## 2:317 3.0864198 Other
## 2:318 35.4838710 Other
## 2:319 2.5316456 Other
## 2:320 2.2222222 Other
## 2:321 4.3478261 Other
## 2:322 13.8461538 Other
## 2:323 29.3577982 Other
## 2:324 5.5555556 Other
## 2:325 2.3529412 Other
## 2:326 11.7647059 Other
## 2:327 2.7027027 Other
## 2:328 3.6363636 Other
## 2:329 5.9405941 Other
## 2:330 13.8461538 Other
## 2:331 7.0588235 Other
## 2:332 7.0588235 Other
## 2:333 3.7878788 Other
## 2:334 9.0909091 Other
## 2:335 3.9473684 Other
## 2:336 6.1224490 Other
## 2:337 19.5121951 Other
## 2:338 36.3247863 Other
## 2:339 30.3418803 Other
## 2:340 26.2357414 Other
## 2:341 66.6666667 Other
## 2:342 56.1728395 Other
## 2:343 56.0000000 Other
## 2:344 80.0000000 Other
## 2:345 100.0000000 Other
## 2:346 80.0000000 Other
## 2:347 100.0000000 Other
## 2:348 100.0000000 Other
## 2:349 26.1016949 Other
## 2:350 76.9230769 Other
## 2:351 100.0000000 Other
## 2:352 100.0000000 Other
## 2:353 100.0000000 Other
## 2:354 40.0000000 Other
## 2:355 7.8549849 Other
## 2:356 100.0000000 Other
## 2:357 100.0000000 Other
## 2:358 100.0000000 Other
## 2:359 100.0000000 Other
## 2:360 60.0000000 Other
## 2:361 20.0000000 Other
## 2:362 55.5555556 Other
## 2:363 43.2835821 Other
## 2:364 31.3559322 Other
## 2:365 27.4509804 Other
## 2:366 29.7157623 Other
## 2:367 12.5000000 Other
## 2:368 44.4444444 Other
## 2:369 46.6666667 Other
## 2:370 67.6470588 Other
## 2:371 56.8000000 Other
## 2:372 22.8571429 Other
## 2:373 11.5793331 Other
## 2:374 4.1555116 Other
## 2:375 1.7077799 Other
## 2:376 43.8596491 Other
## 2:377 40.0000000 Other
## 2:378 12.1495327 Other
## 2:379 49.4145199 Other
## 2:380 20.3956344 Other
## 2:381 30.0000000 Other
## 2:382 20.8333333 Other
## 2:383 21.0526316 Other
## 2:384 6.2937063 Other
## 2:385 22.4137931 Other
## 2:386 20.0000000 Other
## 2:387 7.6923077 Other
## 2:388 0.4074074 Other
## 2:389 20.6896552 Other
## 2:390 12.9870130 Other
## 2:391 12.5000000 Other
## 2:392 19.3548387 Other
## 2:393 9.6153846 Other
## 2:394 7.5000000 Other
## 2:395 17.7419355 Other
## 2:396 20.0000000 Other
## 2:397 4.9180328 Other
## 2:398 23.4375000 Other
## 2:399 11.6531165 Other
## 2:400 31.0185185 Other
## 2:401 67.6470588 Other
## 2:402 90.4761905 Other
## 2:403 14.6131805 Other
## 2:404 11.1111111 Other
## 2:405 21.9000000 Other
## 2:406 8.9000000 Other
## 2:407 17.5000000 Other
## 2:408 76.4705882 Other
## 2:409 75.6097561 Other
## 2:410 12.3926380 Other
## 2:411 22.2222222 Other
## 2:412 5.3495763 Other
## 2:413 7.7657935 Other
## 2:414 5.6394763 Other
## 2:415 56.0975610 Other
## 2:416 57.1428571 Other
## 2:417 29.7872340 Other
## 2:418 64.1791045 Other
## 2:419 38.4615385 Other
## 2:420 10.7142857 Other
## 2:421 4.0154440 Other
## 2:422 36.7469880 Other
## 2:423 8.4611578 Other
## 2:424 8.1889324 Other
## 2:425 3.0435500 Other
## 2:426 0.3994807 Other
## 2:427 3.0672079 Other
## 2:428 30.1762115 Other
## 2:429 1.6380016 Other
## 2:430 27.8571429 Other
## 2:431 50.0000000 Other
## 2:432 21.2328767 Other
## 2:433 31.1111111 Other
## 2:434 100.0000000 Other
## 2:435 57.1428571 Other
## 2:436 92.5373134 Other
## 2:437 30.7692308 Other
## 2:438 35.0000000 Other
## 2:439 26.1224490 Other
## 2:440 33.3333333 Other
## 2:441 58.3333333 Other
## 2:442 66.0000000 Other
## 2:443 48.8888889 Other
## 2:444 53.3333333 Other
## 2:445 44.0000000 Other
## 2:446 17.0000000 Other
## 2:447 70.0000000 Other
## 2:448 50.0000000 Other
## 2:449 45.4545455 Other
## 2:450 15.3946510 Other
removeCategory <- final_draft %>%
dplyr::select(-c(Category))
# Checked that category was gone with removeCategory before proceeding
#Look at levels and answers for data in Hemisphere variable
glimpse(removeCategory$Hemisphere)## Factor w/ 3 levels "Northern","Southern",..: 1 1 1 1 1 1 1 2 1 1 ...
removeHemisphere <- removeCategory %>%
subset(Hemisphere != "Unspecified")
# checking removeHemisphere let me see I only lost the one observation that was Unspecified for Hemisphere
# look at responses and levels in Action variable
glimpse(removeHemisphere$Action1)## Factor w/ 3 levels "Unknown","Unspecified",..: 2 2 2 3 3 2 2 2 2 2 ...
combineAction1 <- removeHemisphere %>%
mutate(Action1= fct_recode(Action1, "Unspecified" = "Unknown"))
glimpse(combineAction1$Path1)## Factor w/ 4 levels "No","Unknown",..: 3 3 3 4 1 3 3 1 3 3 ...
combinePath1 <- combineAction1 %>%
mutate(Path1= fct_recode(Path1, "Unspecified" = "Unknown"))
glimpse(combinePath1$Path1)## Factor w/ 3 levels "No","Unspecified",..: 2 2 2 3 1 2 2 1 2 2 ...
final_draft <- combinePath1
ggplot(final_draft, aes(Hemisphere, RateAll)) + geom_bar(stat="identity", aes(fill=Hemisphere)) + theme( axis.text.x = element_blank()) -> p1
ggplot(final_draft, aes(Path1, RateAll)) + geom_bar(stat="identity", aes(fill=Path1)) + theme( axis.text.x = element_blank()) -> p2
ggplot(final_draft, aes(Action1, RateAll)) + geom_bar(stat="identity", aes(fill=Action1)) + theme( axis.text.x = element_blank()) -> p3
grid.arrange(p1, p2, p3)
At this step, you should have a dataframe containing 551 observations, and 19 variables: 1 outcome, 9 numeric/integer predictors, and 9 factor variables. There should be no missing values.
#final_draft
#glimpse(final_draft)
#Looks like I have 20 variables since I have my fracinf variable and my RateAll variable (2 outcomes). My observation number is correct. We will drop RateAll and work with fracinf as our outcome variable from here out. Also will put fracinf as the first column variable for the code later on.
removeRateAll <- final_draft %>%
select(-c(RateAll))
putFracinfFirst <- removeRateAll %>%
select(fracinf, everything())
final_draft <- putFracinfFirst
final_draft## fracinf Action1 CasesAll Country Deaths gg2c4 Hemisphere
## 1 100.0000000 Unspecified 4 Other 0 Northern
## 2 83.3333333 Unspecified 10 Other 0 Northern
## 3 32.7586207 Unspecified 19 Japan 0 Northern
## 4 45.7774799 Yes 683 Japan 0 Northern
## 5 70.8333333 Yes 51 Other 0 Northern
## 6 62.2641509 Unspecified 33 Japan 0 Northern
## 7 69.2307692 Unspecified 9 Japan 0 Yes Northern
## 8 64.0000000 Unspecified 16 Other 0 Southern
## 9 16.6666667 Unspecified 50 USA 0 Yes Northern
## 10 88.8888889 Unspecified 32 Other 0 Northern
## 11 33.3333333 Unspecified 32 Japan 0 Northern
## 12 40.6779661 Unspecified 48 Japan 0 Northern
## 13 60.0000000 Unspecified 12 Japan 0 Northern
## 14 100.0000000 Unspecified 2 Japan 0 Northern
## 15 75.0000000 Unspecified 3 Japan 0 Northern
## 16 69.2307692 Unspecified 18 Japan 0 Northern
## 17 56.0000000 Unspecified 14 Japan 0 Northern
## 18 61.5384615 Unspecified 8 Japan 0 Northern
## 19 75.0000000 Unspecified 9 Japan 0 Northern
## 20 100.0000000 Unspecified 3 Japan 0 Northern
## 21 100.0000000 Unspecified 2 Japan 0 Northern
## 22 48.3333333 Unspecified 29 Japan 0 Northern
## 23 56.3380282 Unspecified 40 Japan 0 Northern
## 24 42.8571429 Unspecified 6 Japan 0 Northern
## 25 40.9090909 Unspecified 72 Japan 0 Northern
## 26 80.0000000 Unspecified 4 Japan 0 Northern
## 27 100.0000000 Unspecified 5 Japan 0 Northern
## 28 17.6470588 Unspecified 6 Japan 0 Northern
## 29 41.1764706 Unspecified 7 Japan 0 Northern
## 30 58.3333333 Unspecified 14 Japan 0 Yes Northern
## 31 28.3018868 Unspecified 15 Japan 0 Northern
## 32 25.0000000 Unspecified 3 Japan 0 Northern
## 33 62.5000000 Unspecified 5 Japan 0 Northern
## 34 100.0000000 Unspecified 2 Japan 0 Northern
## 35 81.8181818 Yes 9 Other 0 Northern
## 36 76.3157895 Yes 29 Other 0 Northern
## 37 25.0000000 Yes 433 USA 0 Northern
## 38 100.0000000 Unspecified 3 Other 0 Northern
## 39 55.5555556 Unspecified 5 Japan 0 Yes Northern
## 40 6.0000000 Unspecified 42 Other 0 Northern
## 41 3.4075295 Unspecified 124 Japan 0 Northern
## 42 50.0000000 Unspecified 2 Other 0 Yes Northern
## 43 52.3809524 Unspecified 11 Other 0 Northern
## 44 77.7777778 Unspecified 14 Other 0 Northern
## 45 100.0000000 Unspecified 2 Other 0 Northern
## 46 52.9411765 Unspecified 36 USA 0 Northern
## 47 61.9200000 Yes 387 USA 0 Northern
## 48 75.5555556 Unspecified 34 Japan 0 Northern
## 49 85.7142857 Unspecified 6 Japan 0 Northern
## 50 57.1428571 Unspecified 8 Japan 0 Northern
## 51 64.7058824 Unspecified 11 Japan 0 Northern
## 52 83.3333333 Unspecified 10 Japan 0 Northern
## 53 60.0000000 Unspecified 6 Japan 0 Northern
## 54 42.8571429 Unspecified 6 Japan 0 Northern
## 55 44.1558442 Unspecified 34 Japan 0 Northern
## 56 75.0000000 Unspecified 15 Japan 0 Yes Northern
## 57 51.3513514 Unspecified 38 Japan 0 Northern
## 58 61.1111111 Unspecified 11 Japan 0 Northern
## 59 66.6666667 Unspecified 4 Japan 0 Northern
## 60 40.0000000 Unspecified 20 Japan 0 Northern
## 61 75.0000000 Unspecified 3 Japan 0 Northern
## 62 100.0000000 Unspecified 2 Japan 0 Northern
## 63 31.5789474 Unspecified 6 Japan 0 Northern
## 64 34.8101266 Unspecified 55 Japan 0 Northern
## 65 70.0000000 Unspecified 7 Japan 0 Northern
## 66 100.0000000 Unspecified 3 Japan 0 Northern
## 67 59.3750000 Unspecified 57 Japan 0 Northern
## 68 100.0000000 Unspecified 8 Japan 0 Northern
## 69 100.0000000 Unspecified 4 Japan 0 Northern
## 70 90.9090909 Unspecified 10 Japan 0 Northern
## 71 47.5000000 Unspecified 19 Japan 0 Northern
## 72 52.9411765 Unspecified 9 Japan 0 Northern
## 73 59.3750000 Unspecified 19 Japan 0 Northern
## 74 75.0000000 Unspecified 3 Japan 0 Northern
## 75 66.6666667 Unspecified 2 Japan 0 Northern
## 76 77.7777778 Unspecified 7 Japan 0 Northern
## 77 78.5714286 Unspecified 11 Japan 0 Northern
## 78 38.8888889 Unspecified 7 Japan 0 Yes Northern
## 79 44.8275862 Unspecified 13 Japan 0 Northern
## 80 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 81 40.0000000 Unspecified 2 Japan 0 Northern
## 82 70.0000000 Unspecified 7 Japan 0 Northern
## 83 37.2093023 Unspecified 32 Japan 0 Yes Northern
## 84 32.4324324 Unspecified 12 Japan 0 Northern
## 85 86.6666667 Unspecified 13 Japan 0 Yes Northern
## 86 100.0000000 Unspecified 4 Japan 0 Yes Northern
## 87 73.3333333 Unspecified 11 Japan 0 Northern
## 88 55.5555556 Unspecified 15 Japan 0 Northern
## 89 60.7142857 Unspecified 17 Japan 0 Yes Northern
## 90 48.8888889 Unspecified 22 Japan 0 Yes Northern
## 91 33.3333333 Unspecified 12 Japan 0 Northern
## 92 52.1739130 Unspecified 12 Japan 0 Northern
## 93 36.3636364 Unspecified 20 Japan 0 Northern
## 94 40.0000000 Unspecified 4 Japan 0 Northern
## 95 100.0000000 Unspecified 2 Japan 0 Northern
## 96 85.2941176 Unspecified 29 Other 0 Yes Southern
## 97 30.0000000 Unspecified 30 Other 0 Northern
## 98 19.5121951 Unspecified 8 Japan 0 Northern
## 99 33.3333333 Yes 2 Other 0 Southern
## 100 31.0344828 Unspecified 9 Japan 0 Yes Northern
## 101 62.0689655 Unspecified 18 Japan 0 Northern
## 102 16.3763066 Unspecified 47 Japan 0 Northern
## 103 33.3333333 Unspecified 21 Other 0 Northern
## 104 60.1851852 Unspecified 65 USA 0 Northern
## 105 20.7692308 Unspecified 27 Other 0 Yes Northern
## 106 60.0000000 Unspecified 15 Other 0 Yes Northern
## 107 75.0000000 Unspecified 6 Other 0 Northern
## 108 83.3333333 Unspecified 40 Other 0 Northern
## 109 52.7272727 Unspecified 116 Other 0 Yes Northern
## 110 63.0000000 Yes 45 USA 0 Northern
## 111 37.5245580 Unspecified 191 USA 0 Northern
## 112 52.7777778 Unspecified 19 USA 0 Northern
## 113 12.6153846 Yes 369 Multiple 0 Northern
## 114 3.4239415 Yes 131 Multiple 0 Northern
## 115 38.4375000 Yes 492 Multiple 0 Northern
## 116 4.8708333 Yes 1169 USA 0 Northern
## 117 60.3773585 Yes 32 USA 0 Yes Northern
## 118 53.8461538 Unspecified 7 Other 0 Yes Northern
## 119 32.5925926 Yes 44 Other 0 Northern
## 120 50.4424779 Unspecified 57 Japan 0 Northern
## 121 31.3253012 Unspecified 26 Japan 0 Northern
## 122 7.7222222 Yes 139 Other 0 Northern
## 123 30.3291536 Yes 387 Multiple 0 Yes Northern
## 124 52.1739130 Unspecified 12 Japan 0 Northern
## 125 50.0000000 Unspecified 3 Japan 0 Northern
## 126 60.0000000 Unspecified 12 Japan 0 Yes Northern
## 127 48.5436893 Unspecified 50 Japan 0 Northern
## 128 14.8437500 Unspecified 19 Japan 0 Northern
## 129 95.0000000 Unspecified 19 Japan 0 Yes Northern
## 130 51.3513514 Unspecified 19 Japan 0 Northern
## 131 37.5000000 Unspecified 27 USA 0 Northern
## 132 39.6907216 Yes 77 USA 0 Northern
## 133 8.8430361 Yes 120 Other 0 Northern
## 134 34.3750000 Yes 77 Other 1 Yes Northern
## 135 15.1515152 Yes 10 USA 0 Northern
## 136 31.2500000 Unspecified 300 Other 0 Northern
## 137 94.2857143 Yes 99 Japan 0 Northern
## 138 4.1666667 Unspecified 2 Japan 0 Yes Northern
## 139 3.8461538 Unspecified 3 Japan 0 Yes Northern
## 140 2.9411765 Unspecified 2 Japan 0 Yes Northern
## 141 75.6756757 Yes 84 USA 0 Northern
## 142 28.1690141 Yes 60 Other 0 Yes Northern
## 143 17.8571429 Unspecified 5 Japan 0 Northern
## 144 66.6666667 Unspecified 2 Japan 0 Northern
## 145 39.5348837 Unspecified 51 Japan 0 Northern
## 146 37.5000000 Unspecified 6 Japan 0 Northern
## 147 36.3636364 Unspecified 200 USA 0 Northern
## 148 15.6666667 Unspecified 47 USA 0 Northern
## 149 50.0000000 Unspecified 54 USA 0 Northern
## 150 76.7123288 Unspecified 56 USA 0 Northern
## 151 21.6363636 Unspecified 119 Multiple 4 Yes Northern
## 152 36.3128492 Unspecified 65 Other 0 Southern
## 153 12.6153846 Unspecified 369 Other 0 Yes Northern
## 154 9.8214286 Unspecified 11 Other 0 Northern
## 155 9.4445935 Yes 704 Other 0 Yes Northern
## 156 9.6287531 Yes 651 Other 0 Yes Northern
## 157 1.2748151 Unspecified 131 Other 0 Yes Northern
## 158 12.8654971 Unspecified 22 USA 0 Yes Northern
## 159 50.0000000 Unspecified 85 USA 0 Yes Northern
## 160 71.5000000 Unspecified 7150 USA 0 Yes Northern
## 161 18.7221397 Unspecified 126 USA 0 Yes Northern
## 162 34.2592593 Unspecified 37 Other 0 Yes Northern
## 163 30.4225352 Yes 108 Japan 0 Yes Northern
## 164 16.7931281 Yes 1173 USA 0 Northern
## 165 23.6811927 Yes 413 Other 0 Northern
## 166 9.0702087 Yes 478 USA 0 Northern
## 167 11.6597725 Yes 451 USA 0 Northern
## 168 2.5242718 Yes 156 USA 0 Northern
## 169 11.1111111 Unspecified 8 Other 0 Northern
## 170 11.2676056 Unspecified 8 Other 0 Northern
## 171 24.0740741 Unspecified 13 Other 0 Northern
## 172 21.5384615 Unspecified 14 Other 0 Northern
## 173 28.0373832 Yes 30 Other 0 Northern
## 174 18.0327869 Yes 22 USA 0 Yes Northern
## 175 50.0000000 Yes 15 Other 0 Northern
## 176 66.6666667 Yes 46 Other 0 Northern
## 177 50.0000000 Yes 15 Other 0 Northern
## 178 39.7590361 Unspecified 33 Other 0 Northern
## 179 36.6197183 Yes 104 Multiple 4 Yes Northern
## 180 14.1274238 Yes 51 Other 0 Northern
## 181 10.7692308 Unspecified 35 Other 0 Northern
## 182 10.0000000 Unspecified 40 Other 0 Yes Northern
## 183 3.0303030 Unspecified 4 Other 0 Northern
## 184 85.7142857 Unspecified 12 Other 0 Northern
## 185 82.6086957 Unspecified 19 Other 0 Yes Northern
## 186 11.5384615 Unspecified 15 Other 0 Yes Northern
## 187 39.2405063 Unspecified 62 Other 0 Yes Northern
## 188 48.6486486 Unspecified 18 Other 0 Southern
## 189 79.3103448 Yes 23 USA 0 Northern
## 190 57.8947368 Yes 55 USA 0 Northern
## 191 50.0000000 Yes 9 USA 0 Northern
## 192 28.1347962 Yes 359 Multiple 0 Northern
## 193 6.0856865 Yes 125 USA 0 Yes Northern
## 194 56.6371681 Unspecified 64 USA 0 Northern
## 195 37.6621565 Unspecified 2700 USA 0 Northern
## 196 37.2137405 Yes 195 Other 0 Northern
## 197 51.7857143 Yes 29 Other 0 Yes Northern
## 198 59.1836735 Unspecified 29 Japan 0 Northern
## 199 52.2556391 Unspecified 139 Japan 0 Yes Northern
## 200 15.1515152 Unspecified 25 Japan 0 Yes Northern
## 201 78.2608696 Unspecified 18 Japan 0 Northern
## 202 49.0000000 Unspecified 245 USA 0 Northern
## 203 19.6428571 Unspecified 22 Japan 0 Northern
## 204 50.0000000 Unspecified 5 Japan 0 Northern
## 205 28.6725664 Unspecified 162 Japan 0 Yes Northern
## 206 40.8291457 Unspecified 325 Japan 0 Yes Northern
## 207 48.4974775 Yes 201 Other 0 Northern
## 208 74.0740741 Yes 20 USA 0 Northern
## 209 100.0000000 Unspecified 6 Japan 0 Northern
## 210 25.0000000 Unspecified 53 Japan 0 Northern
## 211 66.6666667 Unspecified 40 Japan 0 Northern
## 212 35.2941176 Unspecified 12 Japan 0 Northern
## 213 42.4242424 Unspecified 14 Japan 0 Northern
## 214 34.2105263 Unspecified 13 Japan 0 Northern
## 215 100.0000000 Unspecified 3 Japan 0 Northern
## 216 63.1578947 Unspecified 12 Japan 0 Northern
## 217 90.9090909 Unspecified 10 Japan 0 Northern
## 218 24.4604317 Unspecified 34 Japan 0 Northern
## 219 31.3915858 Unspecified 97 Other 0 Yes Northern
## 220 46.8599034 Unspecified 97 Other 0 Northern
## 221 54.7619048 Yes 368 Other 0 Northern
## 222 42.0000000 Yes 26 Other 0 Southern
## 223 13.3333333 Unspecified 2000 Other 0 Northern
## 224 36.2500000 Unspecified 58 Other 0 Northern
## 225 50.0000000 Unspecified 25 Other 0 Northern
## 226 63.3333333 Unspecified 95 Other 0 Yes Northern
## 227 71.4285714 Unspecified 40 Other 0 Northern
## 228 44.4444444 Unspecified 40 Other 0 Northern
## 229 41.8918919 Yes 31 Japan 0 Northern
## 230 63.0000000 Unspecified 16 Other 0 Northern
## 231 6.2666667 Unspecified 47 Other 0 Northern
## 232 64.8936170 Unspecified 61 Other 0 Northern
## 233 16.0000000 Unspecified 4 Japan 0 Northern
## 234 22.2222222 Unspecified 2 Japan 0 Northern
## 235 2.1739130 Unspecified 2 Japan 0 Northern
## 236 12.5000000 Unspecified 2 Japan 0 Northern
## 237 5.5555556 Unspecified 2 Japan 0 Northern
## 238 3.1250000 Unspecified 3 Japan 0 Yes Northern
## 239 49.0272374 Yes 126 USA 2 Northern
## 240 74.3243243 Unspecified 55 Other 0 Northern
## 241 40.0000000 Unspecified 2 Japan 0 Northern
## 242 55.5555556 Unspecified 5 Japan 0 Northern
## 243 42.5531915 Unspecified 20 Japan 0 Northern
## 244 25.0000000 Unspecified 2 Japan 0 Northern
## 245 43.5483871 Unspecified 27 Japan 0 Northern
## 246 22.0000000 Unspecified 11 Japan 0 Northern
## 247 50.0000000 Unspecified 3 Japan 0 Northern
## 248 55.4770318 Unspecified 157 Japan 0 Northern
## 249 28.8135593 Unspecified 68 Japan 0 Northern
## 250 51.6853933 Unspecified 184 Japan 0 Yes Northern
## 251 24.8470012 Unspecified 203 Japan 0 Yes Northern
## 252 32.7272727 Unspecified 18 Other 0 Southern
## 253 100.0000000 Unspecified 2 Other 0 Southern
## 254 18.8888889 Unspecified 17 Other 0 Southern
## 255 100.0000000 Unspecified 2 Other 0 Southern
## 256 58.4000000 Yes 73 Other 0 Southern
## 257 82.2222222 Unspecified 37 USA 0 Northern
## 258 70.8333333 Unspecified 17 USA 0 Northern
## 259 38.8888889 Unspecified 70 USA 0 Yes Northern
## 260 30.0000000 Unspecified 75 USA 0 Northern
## 261 16.7741935 Unspecified 104 USA 0 Northern
## 262 28.4000000 Unspecified 71 Japan 0 Northern
## 263 24.4791667 Yes 47 Other 0 Southern
## 264 39.0804598 Yes 34 Other 0 Southern
## 265 0.5055977 Unspecified 14 USA 0 Yes Northern
## 266 30.8823529 Unspecified 42 USA 0 Yes Northern
## 267 0.7537688 Unspecified 3 Other 0 Northern
## 268 22.9437229 Unspecified 53 Other 0 Northern
## 269 32.9113924 Yes 260 Other 0 Yes Northern
## 270 3.7000000 Yes 13 Other 0 Yes Northern
## 271 23.8649593 Yes 205 USA 0 Northern
## 272 70.0000000 Unspecified 70 Other 0 Northern
## 273 38.0952381 Unspecified 40 Other 0 Northern
## 274 24.5000000 Unspecified 49 Other 0 Northern
## 275 3.3000000 Unspecified 33 Other 0 Yes Northern
## 276 95.0000000 Unspecified 19 Other 0 Yes Northern
## 277 44.5255474 Unspecified 61 Other 0 Yes Northern
## 278 13.6363636 Unspecified 15 Other 0 Northern
## 279 76.9230769 Unspecified 10 Other 0 Yes Northern
## 280 100.0000000 Unspecified 8 Other 0 Yes Northern
## 281 20.0000000 Yes 80 USA 0 Northern
## 282 16.6666667 Yes 40 USA 0 Northern
## 283 10.4249142 Yes 395 Multiple 0 Northern
## 284 55.0000000 Unspecified 22 Other 0 Yes Southern
## 285 84.0000000 Yes 21 Other 0 Northern
## 286 33.0000000 Unspecified 66 Other 0 Southern
## 287 7.2444444 Yes 326 Other 0 Yes Northern
## 288 80.0000000 Yes 12 Other 0 Northern
## 289 40.0000000 Yes 12 Other 0 Northern
## 290 28.7305122 Yes 129 Other 0 Northern
## 291 48.4848485 Unspecified 16 Japan 0 Northern
## 292 6.0606061 Unspecified 16 Japan 0 Northern
## 293 54.9450549 Unspecified 150 Other 0 Northern
## 294 30.6149733 Yes 229 Other 0 Northern
## 295 28.8888889 Unspecified 13 Other 0 Northern
## 296 33.3333333 Unspecified 40 Other 0 Northern
## 297 60.0000000 Unspecified 60 Other 0 Northern
## 298 92.8571429 Unspecified 13 Other 0 Northern
## 299 80.0000000 Unspecified 20 Other 0 Northern
## 300 16.8181818 Unspecified 37 Japan 0 Northern
## 301 14.9171271 Unspecified 27 Japan 0 Northern
## 302 26.4150943 Unspecified 14 Other 0 Northern
## 303 33.0000000 Unspecified 186 Other 0 Northern
## 304 50.0000000 Yes 47 Other 0 Northern
## 305 27.3333333 Yes 41 Other 0 Northern
## 306 24.2424242 Unspecified 8 Other 0 Southern
## 307 18.1818182 Unspecified 8 Other 0 Southern
## 308 38.4615385 Unspecified 5 Other 0 Southern
## 309 83.3333333 Unspecified 5 Other 0 Southern
## 310 24.6153846 Unspecified 16 Other 0 Southern
## 311 31.2500000 Unspecified 5 Other 0 Southern
## 312 26.4150943 Unspecified 14 Other 0 Southern
## 313 5.7857143 Yes 162 Multiple 0 Northern
## 314 9.4444444 Yes 425 Multiple 0 Northern
## 315 35.0364964 Yes 48 Other 0 Yes Northern
## 316 73.0769231 Yes 19 Other 0 Northern
## 317 56.6037736 Yes 60 Other 0 Northern
## 318 20.8805031 Yes 166 Other 0 Southern
## 319 1.8625127 Unspecified 55 USA 0 Yes Northern
## 320 10.4249142 Yes 395 USA 0 Yes Northern
## 321 47.8260870 Unspecified 11 USA 0 Yes Northern
## 322 30.3571429 Unspecified 17 USA 0 Yes Northern
## 323 10.0000000 Yes 8 USA 0 Northern
## 324 30.9523810 Yes 26 USA 0 Northern
## 325 27.5000000 Yes 22 USA 0 Northern
## 326 55.0000000 Unspecified 44 Other 0 Northern
## 327 53.3742331 Yes 87 Multiple 0 Northern
## 328 44.2231076 Yes 333 USA 0 Northern
## 329 43.2098765 Yes 35 USA 0 Northern
## 330 45.7777778 Unspecified 103 Other 0 Northern
## 331 40.0000000 Unspecified 60 Other 0 Northern
## 332 75.0000000 Unspecified 9 Other 0 Yes Northern
## 333 21.1111111 Yes 38 USA 0 Northern
## 334 22.6683938 Yes 175 Other 0 Northern
## 335 48.1481481 Unspecified 13 Other 0 Southern
## 336 28.0423280 Yes 53 USA 0 Northern
## 337 38.7218045 Yes 103 USA 0 Northern
## 338 20.8545495 Yes 942 Other 0 Yes Northern
## 339 27.1764706 Yes 231 Other 0 Northern
## 340 58.3333333 Yes 21 Other 0 Yes Northern
## 341 85.2941176 Yes 29 Other 0 Northern
## 342 80.7692308 Yes 21 Other 0 Northern
## 343 43.3333333 Yes 13 Other 0 Northern
## 344 6.5604499 Yes 70 Other 0 Yes Northern
## 345 68.1818182 Unspecified 15 Other 0 Yes Northern
## 346 13.3000000 Yes 159 Other 0 Northern
## 347 20.0000000 Unspecified 106 Other 0 Yes Northern
## 348 20.0000000 Unspecified 152 Other 0 Yes Northern
## 349 68.4210526 Unspecified 13 Japan 0 Northern
## 350 45.5696203 Unspecified 36 Japan 0 Northern
## 351 64.4067797 Unspecified 76 Japan 0 Northern
## 352 90.3225806 Unspecified 28 Japan 0 Northern
## 353 12.1661721 Unspecified 41 Japan 0 Northern
## 354 100.0000000 Unspecified 2 Japan 0 Northern
## 355 50.0000000 Unspecified 1 Japan 0 Northern
## 356 62.9629630 Unspecified 17 Japan 0 Northern
## 357 43.1578947 Unspecified 82 Japan 0 Northern
## 358 36.3636364 Unspecified 28 Japan 0 Northern
## 359 54.5454545 Unspecified 12 Japan 0 Northern
## 360 100.0000000 Unspecified 15 Japan 0 Northern
## 361 39.4636015 Unspecified 103 Japan 0 Northern
## 362 50.7109005 Unspecified 107 Japan 0 Northern
## 363 17.9389313 Unspecified 47 Japan 0 Northern
## 364 16.6666667 Unspecified 2 Japan 0 Northern
## 365 87.5000000 Yes 7 USA 0 Yes Northern
## 366 52.5925926 Yes 355 USA 0 Yes Northern
## 367 46.6666667 Unspecified 7 Japan 0 Yes Northern
## 368 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 369 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 370 25.8064516 Unspecified 56 Japan 0 Yes Northern
## 371 12.2448980 Unspecified 6 Japan 0 Northern
## 372 95.0000000 Unspecified 19 Japan 0 Northern
## 373 28.5714286 Unspecified 10 Japan 0 Northern
## 374 100.0000000 Unspecified 2 Japan 0 Northern
## 375 100.0000000 Unspecified 3 Japan 0 Northern
## 376 51.9230769 Unspecified 27 Japan 0 Northern
## 377 42.0000000 Unspecified 21 Japan 0 Northern
## 378 18.1855333 Yes 445 Other 9 Yes Northern
## 379 58.3941606 Unspecified 80 USA 0 Northern
## 380 7.0652174 Unspecified 52 Japan 0 Northern
## 381 64.0232108 Yes 1655 Other 0 Yes Northern
## 382 61.9718310 Yes 176 Other 0 Northern
## 383 62.6506024 Yes 52 Other 0 Northern
## 384 79.7872340 Yes 150 USA 3 Northern
## 385 8.0000000 Unspecified 200 Other 0 Yes Northern
## 386 40.0000000 Unspecified 100 Other 0 Northern
## 387 13.6363636 Unspecified 300 Other 0 Yes Northern
## 388 84.6153846 Unspecified 11 Other 0 Yes Northern
## 389 46.8227425 Unspecified 140 USA 0 Northern
## 390 57.3770492 Yes 35 Other 0 Yes Northern
## 391 44.8051948 Unspecified 69 Other 0 Northern
## 392 45.6521739 Unspecified 63 Japan 1 Yes Northern
## 393 14.0495868 Unspecified 68 Japan 1 Yes Northern
## 394 30.1204819 Unspecified 50 Japan 1 Yes Northern
## 395 6.0606061 Unspecified 2 Japan 0 Northern
## 396 13.0620985 Unspecified 61 Japan 0 Yes Northern
## 397 1.5584416 Unspecified 6 Japan 0 Yes Northern
## 398 28.5714286 Unspecified 2 Japan 0 Northern
## 399 8.2644628 Unspecified 10 Japan 0 Yes Northern
## 400 2.1052632 Unspecified 2 Japan 0 Yes Northern
## 401 8.9743590 Unspecified 7 Japan 0 Yes Northern
## 402 3.5294118 Unspecified 3 Japan 0 Yes Northern
## 403 4.8780488 Unspecified 6 Japan 0 Yes Northern
## 404 1.3793103 Unspecified 2 Japan 0 Yes Northern
## 405 2.6315789 Unspecified 2 Japan 0 Yes Northern
## 406 1.2765957 Unspecified 3 Japan 0 Yes Northern
## 407 2.5641026 Unspecified 2 Japan 0 Yes Northern
## 408 61.1111111 Unspecified 11 Japan 0 Yes Northern
## 409 3.5714286 Unspecified 2 Japan 0 Northern
## 410 13.5593220 Unspecified 8 Japan 0 Yes Northern
## 411 7.3170732 Unspecified 63 Japan 0 Yes Northern
## 412 19.0476190 Unspecified 4 Japan 0 Northern
## 413 16.6666667 Unspecified 6 Japan 0 Northern
## 414 30.9523810 Unspecified 13 Japan 0 Northern
## 415 2.7272727 Unspecified 3 Japan 0 Yes Northern
## 416 3.2051282 Unspecified 5 Japan 0 Yes Northern
## 417 3.8461538 Unspecified 2 Japan 0 Yes Northern
## 418 1.6216216 Unspecified 3 Japan 0 Northern
## 419 3.0864198 Unspecified 5 Japan 0 Yes Northern
## 420 35.4838710 Unspecified 33 Japan 0 Yes Northern
## 421 2.5316456 Unspecified 2 Japan 0 Yes Northern
## 422 2.2222222 Unspecified 3 Japan 0 Northern
## 423 4.3478261 Unspecified 4 Japan 0 Yes Northern
## 424 13.8461538 Unspecified 9 Japan 0 Northern
## 425 29.3577982 Unspecified 32 Japan 0 Yes Northern
## 426 5.5555556 Unspecified 2 Japan 0 Yes Northern
## 427 2.3529412 Unspecified 2 Japan 0 Yes Northern
## 428 11.7647059 Unspecified 8 Japan 0 Northern
## 429 2.7027027 Unspecified 2 Japan 0 Yes Northern
## 430 3.6363636 Unspecified 2 Japan 0 Northern
## 431 5.9405941 Unspecified 6 Japan 0 Northern
## 432 13.8461538 Unspecified 9 Japan 0 Yes Northern
## 433 7.0588235 Unspecified 6 Japan 0 Northern
## 434 7.0588235 Unspecified 6 Japan 0 Yes Northern
## 435 3.7878788 Unspecified 5 Japan 0 Northern
## 436 9.0909091 Unspecified 3 Japan 0 Northern
## 437 3.9473684 Unspecified 3 Japan 0 Northern
## 438 6.1224490 Unspecified 6 Japan 0 Northern
## 439 19.5121951 Unspecified 8 Japan 0 Northern
## 440 36.3247863 Unspecified 85 USA 0 Northern
## 441 30.3418803 Unspecified 71 Other 0 Northern
## 442 26.2357414 Yes 69 USA 0 Northern
## 443 66.6666667 Unspecified 2 Other 0 Yes Northern
## 444 56.1728395 Unspecified 91 Japan 0 Northern
## 445 56.0000000 Yes 182 Other 0 Northern
## 446 80.0000000 Unspecified 4 Japan 0 Yes Northern
## 447 100.0000000 Unspecified 1 Japan 0 Northern
## 448 80.0000000 Unspecified 28 Japan 0 Northern
## 449 100.0000000 Unspecified 3 Japan 0 Northern
## 450 100.0000000 Unspecified 1 Japan 0 Northern
## 451 26.1016949 Unspecified 77 Japan 0 Northern
## 452 76.9230769 Unspecified 10 Japan 0 Northern
## 453 100.0000000 Unspecified 3 Japan 0 Northern
## 454 100.0000000 Unspecified 2 Japan 0 Northern
## 455 100.0000000 Unspecified 5 Japan 0 Northern
## 456 40.0000000 Unspecified 6 Japan 0 Northern
## 457 7.8549849 Unspecified 26 Japan 0 Northern
## 458 100.0000000 Unspecified 2 Japan 0 Northern
## 459 100.0000000 Unspecified 3 Japan 0 Northern
## 460 100.0000000 Unspecified 3 Japan 0 Northern
## 461 100.0000000 Unspecified 6 Japan 0 Northern
## 462 60.0000000 Unspecified 3 Japan 0 Northern
## 463 20.0000000 Unspecified 3 Japan 0 Northern
## 464 55.5555556 Unspecified 5 Japan 0 Northern
## 465 43.2835821 Unspecified 29 Japan 0 Northern
## 466 31.3559322 Unspecified 37 Japan 0 Yes Northern
## 467 27.4509804 Unspecified 70 Japan 0 Yes Northern
## 468 29.7157623 Yes 115 Other 0 Southern
## 469 12.5000000 Unspecified 50 USA 0 Yes Northern
## 470 44.4444444 Unspecified 8 USA 0 Northern
## 471 46.6666667 Unspecified 28 USA 0 Yes Northern
## 472 67.6470588 Unspecified 23 Japan 0 Northern
## 473 56.8000000 Unspecified 71 Other 0 Southern
## 474 22.8571429 Yes 8 USA 2 Northern
## 475 11.5793331 Unspecified 316 Other 0 Yes Northern
## 476 4.1555116 Unspecified 357 Other 0 Yes Northern
## 477 1.7077799 Unspecified 117 Other 0 Northern
## 478 43.8596491 Unspecified 25 USA 0 Yes Northern
## 479 40.0000000 Unspecified 26 USA 0 Yes Northern
## 480 12.1495327 Yes 13 Multiple 0 Northern
## 481 49.4145199 Yes 211 USA 9 Yes Northern
## 482 20.3956344 Unspecified 299 Other 0 Yes Northern
## 483 30.0000000 Unspecified 27 Other 0 Yes Northern
## 484 20.8333333 Unspecified 20 Other 0 Yes Northern
## 485 21.0526316 Unspecified 16 Other 0 Yes Northern
## 486 6.2937063 Unspecified 9 Other 0 Yes Northern
## 487 22.4137931 Unspecified 13 Other 0 Yes Northern
## 488 20.0000000 Unspecified 8 Other 0 Yes Northern
## 489 7.6923077 Unspecified 3 Other 0 Yes Northern
## 490 0.4074074 Unspecified 22 Other 0 Yes Northern
## 491 20.6896552 Yes 42 Other 0 Northern
## 492 12.9870130 Unspecified 10 Other 0 Northern
## 493 12.5000000 Unspecified 10 Other 0 Northern
## 494 19.3548387 Unspecified 12 Other 0 Northern
## 495 9.6153846 Unspecified 10 Other 0 Northern
## 496 7.5000000 Unspecified 6 Other 0 Northern
## 497 17.7419355 Unspecified 11 Other 0 Northern
## 498 20.0000000 Unspecified 14 Other 0 Northern
## 499 4.9180328 Unspecified 3 Other 0 Northern
## 500 23.4375000 Unspecified 15 Other 0 Northern
## 501 11.6531165 Yes 43 Other 0 Yes Northern
## 502 31.0185185 Unspecified 67 Other 0 Northern
## 503 67.6470588 Unspecified 23 Other 0 Yes Northern
## 504 90.4761905 Unspecified 19 Other 0 Yes Northern
## 505 14.6131805 Yes 102 Japan 0 Yes Northern
## 506 11.1111111 Yes 4 Other 0 Northern
## 507 21.9000000 Yes 70 Other 0 Yes Northern
## 508 8.9000000 Yes 31 Other 0 Northern
## 509 17.5000000 Yes 58 Other 0 Yes Northern
## 510 76.4705882 Yes 26 Multiple 0 Yes Northern
## 511 75.6097561 Yes 31 Multiple 0 Yes Northern
## 512 12.3926380 Yes 101 Other 0 Yes Northern
## 513 22.2222222 Unspecified 16 Other 0 Northern
## 514 5.3495763 Unspecified 101 Other 0 Northern
## 515 7.7657935 Yes 252 Other 0 Northern
## 516 5.6394763 Yes 112 Other 0 Northern
## 517 56.0975610 Unspecified 23 Other 0 Northern
## 518 57.1428571 Unspecified 16 Other 0 Northern
## 519 29.7872340 Unspecified 14 Other 0 Northern
## 520 64.1791045 Unspecified 86 Other 0 Northern
## 521 38.4615385 Unspecified 15 Other 0 Northern
## 522 10.7142857 Unspecified 15 Unspecified 0 Yes Northern
## 523 4.0154440 Unspecified 104 Unspecified 0 Yes Northern
## 524 36.7469880 Unspecified 61 Unspecified 0 Yes Northern
## 525 8.4611578 Unspecified 342 Unspecified 0 Yes Northern
## 526 8.1889324 Unspecified 293 Unspecified 0 Yes Northern
## 527 3.0435500 Unspecified 369 Unspecified 0 Yes Northern
## 528 0.3994807 Unspecified 40 Unspecified 0 Yes Northern
## 529 3.0672079 Unspecified 68 Unspecified 0 Yes Northern
## 530 30.1762115 Unspecified 137 Unspecified 0 Yes Northern
## 531 1.6380016 Unspecified 40 Unspecified 0 Yes Northern
## 532 27.8571429 Unspecified 39 Other 0 Northern
## 533 50.0000000 Unspecified 85 Other 0 Northern
## 534 21.2328767 Unspecified 31 Other 0 Northern
## 535 31.1111111 Unspecified 14 Other 0 Northern
## 536 100.0000000 Unspecified 20 Other 0 Northern
## 537 57.1428571 Unspecified 40 Other 0 Northern
## 538 92.5373134 Unspecified 62 Other 0 Northern
## 539 30.7692308 Unspecified 40 Other 0 Northern
## 540 35.0000000 Unspecified 70 Other 0 Yes Northern
## 541 26.1224490 Unspecified 64 Other 0 Yes Northern
## 542 33.3333333 Unspecified 25 Other 0 Yes Northern
## 543 58.3333333 Unspecified 77 Other 0 Yes Northern
## 544 66.0000000 Unspecified 33 Other 0 Yes Northern
## 545 48.8888889 Unspecified 22 Other 0 Yes Northern
## 546 53.3333333 Unspecified 8 Other 0 Northern
## 547 44.0000000 Unspecified 88 Other 0 Yes Northern
## 548 17.0000000 Unspecified 17 Other 0 Yes Northern
## 549 70.0000000 Unspecified 35 Other 0 Yes Northern
## 550 50.0000000 Unspecified 10 Other 0 Yes Northern
## 551 45.4545455 Unspecified 10 Other 0 Yes Northern
## Hospitalizations MeanD1 MeanI1 MedianD1 MedianI1 OBYear Path1
## 1 0 0.0 0 0 0 2006 Unspecified
## 2 0 0.0 0 0 0 2006 Unspecified
## 3 0 0.0 0 0 0 2003 Unspecified
## 4 0 0.0 31 0 0 2003 Yes
## 5 0 43.0 32 0 33 2000 No
## 6 0 0.0 0 0 0 1998 Unspecified
## 7 0 0.0 0 0 0 1999 Unspecified
## 8 0 0.0 28 0 0 1999 No
## 9 0 0.0 0 0 0 2002 Unspecified
## 10 0 0.0 0 0 0 2007 Unspecified
## 11 0 0.0 0 0 0 2001 Unspecified
## 12 0 0.0 0 0 0 2003 Unspecified
## 13 0 0.0 0 0 0 2004 Unspecified
## 14 0 0.0 0 0 0 1997 Unspecified
## 15 0 0.0 0 0 0 1997 Unspecified
## 16 0 0.0 0 0 0 1998 Unspecified
## 17 0 0.0 0 0 0 1998 Unspecified
## 18 0 0.0 0 0 0 1998 Unspecified
## 19 0 0.0 0 0 0 2004 Unspecified
## 20 0 0.0 0 0 0 2004 Unspecified
## 21 0 0.0 0 0 0 2004 Unspecified
## 22 0 0.0 0 0 0 2004 Unspecified
## 23 0 0.0 0 0 0 2004 Unspecified
## 24 0 0.0 0 0 0 2004 Unspecified
## 25 0 0.0 0 0 0 2004 Unspecified
## 26 0 0.0 0 0 0 2004 Unspecified
## 27 0 0.0 0 0 0 1999 Unspecified
## 28 0 0.0 0 0 0 2000 Unspecified
## 29 0 0.0 0 0 0 2001 Unspecified
## 30 0 0.0 0 0 0 2002 Unspecified
## 31 0 0.0 0 0 0 2002 Unspecified
## 32 0 0.0 0 0 0 1999 Unspecified
## 33 0 0.0 0 0 0 2000 Unspecified
## 34 0 0.0 0 0 0 2002 Unspecified
## 35 0 0.0 0 0 0 2002 No
## 36 0 0.0 0 0 28 2002 Unspecified
## 37 0 0.0 0 0 0 1995 No
## 38 0 0.0 0 0 0 2006 Unspecified
## 39 0 0.0 0 0 0 2001 Unspecified
## 40 0 0.0 0 0 3 2002 Unspecified
## 41 0 0.0 0 0 0 2004 Unspecified
## 42 0 0.0 0 0 0 2006 Unspecified
## 43 0 0.0 0 0 0 2006 Unspecified
## 44 0 0.0 0 0 0 2006 Unspecified
## 45 0 0.0 0 0 0 2006 Unspecified
## 46 1 0.0 0 27 31 2000 No
## 47 0 0.0 0 42 32 2006 No
## 48 0 0.0 0 0 0 1998 Unspecified
## 49 0 0.0 0 0 0 2000 Unspecified
## 50 0 0.0 0 0 0 2000 Unspecified
## 51 0 0.0 0 0 0 2001 Unspecified
## 52 0 0.0 0 0 0 2002 Unspecified
## 53 0 0.0 0 0 0 2003 Unspecified
## 54 0 0.0 0 0 0 2003 Unspecified
## 55 0 0.0 0 0 0 2003 Unspecified
## 56 0 0.0 0 0 0 2004 Unspecified
## 57 0 0.0 0 0 0 2004 Unspecified
## 58 0 0.0 0 0 0 1997 Unspecified
## 59 0 0.0 0 0 0 1997 Unspecified
## 60 0 0.0 0 0 0 1997 Unspecified
## 61 0 0.0 0 0 0 1997 Unspecified
## 62 0 0.0 0 0 0 1997 Unspecified
## 63 0 0.0 0 0 0 1997 Unspecified
## 64 0 0.0 0 0 0 1997 Unspecified
## 65 0 0.0 0 0 0 1998 Unspecified
## 66 0 0.0 0 0 0 1999 Unspecified
## 67 0 0.0 0 0 0 1999 Unspecified
## 68 0 0.0 0 0 0 1999 Unspecified
## 69 0 0.0 0 0 0 2000 Unspecified
## 70 0 0.0 0 0 0 2000 Unspecified
## 71 0 0.0 0 0 0 2000 Unspecified
## 72 0 0.0 0 0 0 2000 Unspecified
## 73 0 0.0 0 0 0 2000 Unspecified
## 74 0 0.0 0 0 0 1998 Unspecified
## 75 0 0.0 0 0 0 1999 Unspecified
## 76 0 0.0 0 0 0 2000 Unspecified
## 77 0 0.0 0 0 0 2000 Unspecified
## 78 0 0.0 0 0 0 2001 Unspecified
## 79 0 0.0 0 0 0 2001 Unspecified
## 80 0 0.0 0 0 0 2001 Unspecified
## 81 0 0.0 0 0 0 2002 Unspecified
## 82 0 0.0 0 0 0 2002 Unspecified
## 83 0 0.0 0 0 0 2002 Unspecified
## 84 0 0.0 0 0 0 1997 Unspecified
## 85 0 0.0 0 0 0 1997 Unspecified
## 86 0 0.0 0 0 0 1997 Unspecified
## 87 0 0.0 0 0 0 1998 Unspecified
## 88 0 0.0 0 0 0 1999 Unspecified
## 89 0 0.0 0 0 0 1999 Unspecified
## 90 0 0.0 0 0 0 2000 Unspecified
## 91 0 0.0 0 0 0 2001 Unspecified
## 92 0 0.0 0 0 0 2001 Unspecified
## 93 0 0.0 0 0 0 2002 Unspecified
## 94 0 0.0 0 0 0 2002 Unspecified
## 95 0 0.0 0 0 0 2002 Unspecified
## 96 0 0.0 0 0 0 1999 No
## 97 0 0.0 0 0 0 2007 No
## 98 0 0.0 0 0 0 2006 Unspecified
## 99 0 0.0 0 0 0 2006 Unspecified
## 100 0 0.0 0 0 0 2002 Unspecified
## 101 0 0.0 0 0 0 2003 Unspecified
## 102 0 0.0 0 0 0 2005 Unspecified
## 103 0 0.0 0 0 0 2007 Unspecified
## 104 0 0.0 0 36 37 1998 No
## 105 0 0.0 0 0 0 2006 Unspecified
## 106 0 0.0 0 0 0 2006 Unspecified
## 107 0 0.0 0 0 0 2006 Unspecified
## 108 0 0.0 0 0 0 2006 Unspecified
## 109 5 0.0 0 0 0 2004 No
## 110 10 0.0 0 48 31 1993 Unspecified
## 111 0 0.0 0 24 33 1999 No
## 112 0 24.0 0 0 0 1999 No
## 113 0 0.0 0 0 0 2002 Unspecified
## 114 0 0.0 0 0 0 2002 Unspecified
## 115 0 0.0 0 0 0 2002 Unspecified
## 116 0 0.0 0 0 0 2005 No
## 117 0 0.0 0 54 0 2006 No
## 118 0 0.0 0 36 0 1994 Unspecified
## 119 0 0.0 0 0 0 2008 No
## 120 0 0.0 0 0 0 2000 Unspecified
## 121 0 0.0 0 0 0 2001 Unspecified
## 122 0 48.0 0 48 0 2006 Unspecified
## 123 0 0.0 0 0 0 2002 Unspecified
## 124 0 0.0 0 0 0 2001 Unspecified
## 125 0 0.0 0 0 0 2001 Unspecified
## 126 0 0.0 0 0 0 1997 Unspecified
## 127 0 0.0 0 0 0 1999 Unspecified
## 128 0 0.0 0 0 0 2001 Unspecified
## 129 0 0.0 0 0 0 1997 Unspecified
## 130 0 0.0 0 0 0 2001 Unspecified
## 131 0 0.0 0 24 37 1993 No
## 132 0 0.0 0 36 31 1993 No
## 133 0 0.0 0 0 0 2005 No
## 134 0 0.0 0 0 0 2003 Unspecified
## 135 0 0.0 0 0 36 2006 Unspecified
## 136 0 0.0 0 0 0 2002 Yes
## 137 0 0.0 0 0 0 2005 Unspecified
## 138 0 0.0 0 0 0 2006 Unspecified
## 139 0 0.0 0 0 0 2006 Unspecified
## 140 0 0.0 0 0 0 2005 Unspecified
## 141 0 48.0 0 0 0 2001 Unspecified
## 142 0 0.0 0 48 0 2004 No
## 143 0 0.0 0 0 0 2002 Unspecified
## 144 0 0.0 0 0 0 2002 Unspecified
## 145 0 0.0 0 0 0 2002 Unspecified
## 146 0 0.0 0 0 0 2002 Unspecified
## 147 0 0.0 0 0 0 1995 Unspecified
## 148 0 0.0 0 0 0 1996 Unspecified
## 149 0 0.0 0 0 0 1998 Unspecified
## 150 0 0.0 0 0 0 1999 Unspecified
## 151 1 0.0 0 0 0 2008 Unspecified
## 152 0 0.0 0 0 0 1999 No
## 153 0 0.0 0 0 0 2002 Unspecified
## 154 0 0.0 0 0 0 2002 Unspecified
## 155 0 0.0 0 0 0 2002 Unspecified
## 156 0 0.0 0 0 0 2002 Unspecified
## 157 0 0.0 0 0 0 2002 Unspecified
## 158 0 0.0 0 0 0 2002 Unspecified
## 159 0 0.0 0 0 0 2002 Unspecified
## 160 0 0.0 0 0 0 2002 Unspecified
## 161 0 0.0 0 0 0 2002 Unspecified
## 162 0 0.0 0 0 0 2004 Yes
## 163 0 0.0 0 0 0 2006 No
## 164 0 0.0 0 0 0 2005 No
## 165 0 21.0 0 0 0 2007 No
## 166 0 58.0 0 0 0 2008 Unspecified
## 167 0 0.0 0 0 0 2008 Unspecified
## 168 10 0.0 0 48 0 2008 Unspecified
## 169 0 0.0 0 0 0 2009 Unspecified
## 170 0 0.0 0 0 0 2009 Unspecified
## 171 0 0.0 0 0 0 2009 Unspecified
## 172 0 0.0 0 0 0 2009 Unspecified
## 173 0 0.0 0 0 0 1995 No
## 174 2 0.0 0 0 0 2008 Unspecified
## 175 0 0.0 0 0 0 2009 Unspecified
## 176 0 22.0 33 0 0 2009 Unspecified
## 177 0 0.0 0 0 0 2009 Unspecified
## 178 0 35.0 36 0 0 2007 Unspecified
## 179 0 72.0 0 0 0 2008 Yes
## 180 13 0.0 0 0 0 2006 No
## 181 0 0.0 0 0 0 2007 No
## 182 0 0.0 0 0 0 2007 Unspecified
## 183 0 0.0 0 0 0 2007 Unspecified
## 184 0 0.0 0 0 0 2006 Unspecified
## 185 0 0.0 0 0 0 2006 Unspecified
## 186 0 0.0 0 0 0 2006 Unspecified
## 187 0 0.0 0 0 0 2006 Unspecified
## 188 0 0.0 0 0 0 1994 Unspecified
## 189 0 0.0 0 0 0 2005 Unspecified
## 190 0 0.0 0 0 0 2005 Unspecified
## 191 0 0.0 0 0 0 2005 Unspecified
## 192 0 0.0 0 0 0 2004 Unspecified
## 193 23 0.0 0 48 0 1998 No
## 194 0 0.0 0 24 0 2000 Unspecified
## 195 8 0.0 0 4 35 2002 No
## 196 0 0.0 0 0 34 1999 No
## 197 0 12.0 0 0 0 1994 No
## 198 0 0.0 0 0 0 1998 Unspecified
## 199 0 0.0 0 0 0 1998 Unspecified
## 200 0 0.0 0 0 0 1999 Unspecified
## 201 0 0.0 0 0 0 2003 Unspecified
## 202 0 0.0 0 0 0 1990 No
## 203 0 0.0 0 0 0 1997 Yes
## 204 0 0.0 0 0 0 2000 Unspecified
## 205 0 0.0 0 0 0 2004 Unspecified
## 206 0 0.0 0 0 0 2004 Unspecified
## 207 0 0.0 0 0 0 2000 No
## 208 0 67.0 0 0 0 2004 Unspecified
## 209 0 0.0 0 0 0 2002 Unspecified
## 210 0 0.0 0 0 0 1998 Unspecified
## 211 0 0.0 0 0 0 1999 Unspecified
## 212 0 0.0 0 0 0 1999 Unspecified
## 213 0 0.0 0 0 0 2000 Unspecified
## 214 0 0.0 0 0 0 2000 Unspecified
## 215 0 0.0 0 0 0 2002 Unspecified
## 216 0 0.0 0 0 0 2001 Unspecified
## 217 0 0.0 0 0 0 1999 Unspecified
## 218 0 0.0 0 0 0 2000 Unspecified
## 219 0 0.0 0 72 0 2004 No
## 220 0 0.0 0 72 0 2004 No
## 221 0 0.0 0 0 0 2000 No
## 222 2 0.0 7 36 65 2002 No
## 223 0 0.0 0 0 0 1998 Unspecified
## 224 0 0.0 0 0 0 1999 Yes
## 225 0 0.0 0 0 0 2002 Yes
## 226 0 0.0 0 0 0 2003 Yes
## 227 0 0.0 0 0 0 2003 Unspecified
## 228 0 0.0 0 0 0 2003 Unspecified
## 229 2 0.0 0 0 0 2007 Unspecified
## 230 0 0.0 0 0 0 2000 Unspecified
## 231 0 0.0 0 0 0 2001 Unspecified
## 232 0 0.0 0 0 0 2001 Unspecified
## 233 0 0.0 0 0 0 2006 Unspecified
## 234 0 0.0 0 0 0 2006 Unspecified
## 235 0 0.0 0 0 0 2006 Unspecified
## 236 0 0.0 0 0 0 2006 Unspecified
## 237 0 0.0 0 0 0 2006 Unspecified
## 238 0 0.0 0 0 0 2006 Unspecified
## 239 3 0.0 0 0 0 1994 No
## 240 0 0.0 0 0 0 2005 No
## 241 0 0.0 0 0 0 2002 Unspecified
## 242 0 0.0 0 0 0 2003 Unspecified
## 243 0 0.0 0 0 0 2003 Unspecified
## 244 0 0.0 0 0 0 2003 Unspecified
## 245 0 0.0 0 0 0 2003 Unspecified
## 246 0 0.0 0 0 0 2003 Unspecified
## 247 0 0.0 0 0 0 2003 Unspecified
## 248 0 0.0 0 0 0 2003 Unspecified
## 249 0 0.0 0 0 0 2003 Unspecified
## 250 0 0.0 0 0 0 2004 Unspecified
## 251 0 0.0 0 0 0 2006 Unspecified
## 252 0 0.0 0 48 31 1999 Unspecified
## 253 0 0.0 0 14 37 1999 Unspecified
## 254 0 0.0 0 33 33 1999 Unspecified
## 255 0 0.0 0 16 18 1999 Unspecified
## 256 1 0.0 0 0 0 2003 No
## 257 0 0.0 0 0 0 1997 Unspecified
## 258 0 0.0 0 0 0 1997 Unspecified
## 259 0 0.0 0 0 0 1997 Unspecified
## 260 0 0.0 0 0 0 1998 Unspecified
## 261 0 0.0 0 0 0 2000 Unspecified
## 262 0 0.0 0 0 0 2005 Unspecified
## 263 0 0.0 0 54 34 2003 Unspecified
## 264 0 0.0 0 48 34 2003 Unspecified
## 265 0 0.0 0 0 0 2002 Unspecified
## 266 0 0.0 0 0 0 2002 Unspecified
## 267 0 0.0 0 0 0 2005 No
## 268 0 0.0 0 0 0 2005 Yes
## 269 0 0.0 0 48 0 2009 No
## 270 0 36.0 0 0 0 2007 Unspecified
## 271 99 0.0 0 0 0 1998 No
## 272 0 0.0 0 0 0 2007 Unspecified
## 273 0 0.0 0 0 0 2007 Unspecified
## 274 0 0.0 0 0 0 2007 No
## 275 0 0.0 0 0 0 2006 Unspecified
## 276 0 0.0 0 0 0 2006 Unspecified
## 277 0 0.0 0 0 0 2006 Unspecified
## 278 0 0.0 0 0 0 2006 Unspecified
## 279 0 0.0 0 0 0 2006 Unspecified
## 280 0 0.0 0 0 0 2006 Unspecified
## 281 0 0.0 0 0 0 2001 No
## 282 0 0.0 0 0 0 2001 No
## 283 0 0.0 0 0 0 2002 Unspecified
## 284 0 0.0 0 0 0 1998 No
## 285 0 0.0 0 0 0 2001 Unspecified
## 286 0 0.0 0 0 0 2003 No
## 287 54 0.0 0 0 0 2004 Unspecified
## 288 0 0.0 0 0 0 2006 Unspecified
## 289 0 0.0 0 0 0 2006 Unspecified
## 290 3 0.0 30 0 0 2002 Yes
## 291 0 0.0 0 0 0 1999 Unspecified
## 292 0 0.0 0 0 0 1999 Unspecified
## 293 0 49.0 0 0 0 2006 No
## 294 0 55.2 0 48 0 2001 Unspecified
## 295 0 0.0 0 0 0 1998 Unspecified
## 296 0 0.0 0 0 0 1998 Unspecified
## 297 0 0.0 0 0 0 1999 Yes
## 298 0 0.0 0 0 0 2000 Yes
## 299 0 0.0 0 0 0 2003 Yes
## 300 0 0.0 0 0 0 2005 Unspecified
## 301 0 0.0 0 0 0 2005 Unspecified
## 302 0 0.0 0 0 0 1998 Unspecified
## 303 0 0.0 0 0 0 1998 Unspecified
## 304 0 0.0 39 0 39 1996 Unspecified
## 305 0 0.0 0 0 0 2005 Unspecified
## 306 0 0.0 0 28 34 1999 Unspecified
## 307 0 0.0 0 34 40 1999 Unspecified
## 308 0 0.0 0 34 22 1999 Unspecified
## 309 0 0.0 0 17 28 1999 Unspecified
## 310 0 0.0 0 48 33 1999 Unspecified
## 311 0 0.0 0 33 37 1999 Unspecified
## 312 0 0.0 0 0 0 1983 Unspecified
## 313 0 0.0 0 0 0 1999 No
## 314 0 0.0 0 0 0 1999 No
## 315 0 0.0 0 0 0 2006 Unspecified
## 316 0 37.0 32 0 0 2007 No
## 317 0 44.0 39 0 0 2007 No
## 318 0 0.0 0 0 0 1999 No
## 319 0 0.0 0 0 0 2002 Unspecified
## 320 0 0.0 0 0 0 2002 Unspecified
## 321 0 0.0 0 0 0 2002 Unspecified
## 322 0 0.0 0 0 0 2002 Unspecified
## 323 0 0.0 0 0 0 2001 Unspecified
## 324 0 0.0 0 0 0 2001 Unspecified
## 325 0 0.0 0 0 0 2001 Unspecified
## 326 0 0.0 32 0 0 2005 No
## 327 40 0.0 0 60 0 2007 No
## 328 3 0.0 0 48 0 2000 No
## 329 1 0.0 0 48 0 2001 No
## 330 0 0.0 0 0 0 2007 Unspecified
## 331 0 0.0 0 0 0 2006 Unspecified
## 332 0 0.0 0 0 0 2006 Unspecified
## 333 0 0.0 0 0 0 1996 No
## 334 0 0.0 0 0 0 2002 No
## 335 0 0.0 0 0 0 1994 Unspecified
## 336 1 0.0 0 0 30 2004 Unspecified
## 337 0 0.0 0 36 0 2007 No
## 338 0 0.0 0 0 0 1996 Unspecified
## 339 0 0.0 0 48 31 2001 No
## 340 0 36.0 0 0 34 2002 No
## 341 0 0.0 0 0 0 2001 Unspecified
## 342 0 0.0 0 0 0 2001 Unspecified
## 343 0 0.0 0 0 0 2001 Unspecified
## 344 0 0.0 0 0 0 2006 No
## 345 0 0.0 0 0 0 2004 No
## 346 0 0.0 0 0 0 1999 No
## 347 0 0.0 0 0 0 2003 No
## 348 0 0.0 0 0 0 2005 No
## 349 0 0.0 0 0 0 1998 Unspecified
## 350 0 0.0 0 0 0 2000 Unspecified
## 351 0 0.0 0 0 0 2003 Unspecified
## 352 0 0.0 0 0 0 2003 Unspecified
## 353 0 0.0 0 0 0 2004 Unspecified
## 354 0 0.0 0 0 0 1997 Unspecified
## 355 0 0.0 0 0 0 1997 Unspecified
## 356 0 0.0 0 0 0 1997 Unspecified
## 357 0 0.0 0 0 0 1997 Unspecified
## 358 0 0.0 0 0 0 1998 Unspecified
## 359 0 0.0 0 0 0 1999 Unspecified
## 360 0 0.0 0 0 0 1999 Unspecified
## 361 0 0.0 0 0 0 2000 Unspecified
## 362 0 0.0 0 0 0 2000 Unspecified
## 363 0 0.0 0 0 0 2000 Unspecified
## 364 0 0.0 0 0 0 2000 Unspecified
## 365 0 0.0 0 0 0 2003 Unspecified
## 366 0 0.0 0 0 0 2004 Unspecified
## 367 0 0.0 0 0 0 2001 Unspecified
## 368 0 0.0 0 0 0 2001 Unspecified
## 369 0 0.0 0 0 0 2002 Unspecified
## 370 0 0.0 0 0 0 2001 Unspecified
## 371 0 0.0 0 0 0 1998 Unspecified
## 372 0 0.0 0 0 0 1997 Unspecified
## 373 0 0.0 0 0 0 1999 Unspecified
## 374 0 0.0 0 0 0 2000 Unspecified
## 375 0 0.0 0 0 0 2000 Unspecified
## 376 0 0.0 0 0 0 1998 Unspecified
## 377 0 0.0 0 0 0 2002 Unspecified
## 378 0 0.0 0 0 0 2006 Unspecified
## 379 1 0.0 0 0 31 1999 No
## 380 0 0.0 0 0 42 2001 No
## 381 0 0.0 0 0 0 1998 No
## 382 4 0.0 0 48 0 2007 Unspecified
## 383 0 0.0 0 0 0 1998 No
## 384 4 0.0 0 0 0 1996 No
## 385 0 0.0 0 0 0 1999 Unspecified
## 386 0 0.0 0 0 0 1999 Yes
## 387 0 0.0 0 0 0 2000 Yes
## 388 0 0.0 0 0 0 2003 Unspecified
## 389 5 0.0 0 48 48 1994 No
## 390 0 0.0 43 24 0 2006 Yes
## 391 0 0.0 0 0 0 2003 No
## 392 0 0.0 0 0 0 2005 No
## 393 0 0.0 0 0 0 2005 No
## 394 0 0.0 0 0 0 2005 No
## 395 0 0.0 0 0 0 2006 Unspecified
## 396 0 0.0 0 0 0 2006 Unspecified
## 397 0 0.0 0 0 0 2006 Unspecified
## 398 0 0.0 0 0 0 2006 Unspecified
## 399 0 0.0 0 0 0 2006 Unspecified
## 400 0 0.0 0 0 0 2006 Unspecified
## 401 0 0.0 0 0 0 2005 No
## 402 0 0.0 0 0 0 2006 Unspecified
## 403 0 0.0 0 0 0 2006 Unspecified
## 404 0 0.0 0 0 0 2005 Unspecified
## 405 0 0.0 0 0 0 2006 Unspecified
## 406 0 0.0 0 0 0 2006 Unspecified
## 407 0 0.0 0 0 0 2006 Unspecified
## 408 0 0.0 0 0 0 2005 Unspecified
## 409 0 0.0 0 0 0 2006 Unspecified
## 410 0 0.0 0 0 0 2005 Unspecified
## 411 0 0.0 0 0 0 2006 Unspecified
## 412 0 0.0 0 0 0 2006 Unspecified
## 413 0 0.0 0 0 0 2006 Unspecified
## 414 0 0.0 0 0 0 2006 Unspecified
## 415 0 0.0 0 0 0 2006 Unspecified
## 416 0 0.0 0 0 0 2006 Unspecified
## 417 0 0.0 0 0 0 2006 Unspecified
## 418 0 0.0 0 0 0 2005 Unspecified
## 419 0 0.0 0 0 0 2006 Unspecified
## 420 0 0.0 0 0 0 2006 Unspecified
## 421 0 0.0 0 0 0 2005 Unspecified
## 422 0 0.0 0 0 0 2006 Unspecified
## 423 0 0.0 0 0 0 2005 Unspecified
## 424 0 0.0 0 0 0 2006 Unspecified
## 425 0 0.0 0 0 0 2005 Unspecified
## 426 0 0.0 0 0 0 2006 Unspecified
## 427 0 0.0 0 0 0 2006 Unspecified
## 428 0 0.0 0 0 0 2006 Unspecified
## 429 0 0.0 0 0 0 2005 Unspecified
## 430 0 0.0 0 0 0 2006 Unspecified
## 431 0 0.0 0 0 0 2006 Unspecified
## 432 0 0.0 0 0 0 2005 Unspecified
## 433 0 0.0 0 0 0 2006 Unspecified
## 434 0 0.0 0 0 0 2006 Unspecified
## 435 0 0.0 0 0 0 2005 Unspecified
## 436 0 0.0 0 0 0 2006 Unspecified
## 437 0 0.0 0 0 0 2006 Unspecified
## 438 0 0.0 0 0 0 2006 Unspecified
## 439 0 0.0 0 0 0 2006 Unspecified
## 440 0 0.0 0 18 0 1997 No
## 441 0 0.0 0 48 0 2002 Unspecified
## 442 0 0.0 0 0 30 2004 Unspecified
## 443 0 0.0 0 0 0 2004 Unspecified
## 444 0 0.0 0 0 0 2004 Unspecified
## 445 10 0.0 0 48 0 2006 No
## 446 0 0.0 0 0 0 2002 Unspecified
## 447 0 0.0 0 0 0 2003 Unspecified
## 448 0 0.0 0 0 0 2003 Unspecified
## 449 0 0.0 0 0 0 2003 Unspecified
## 450 0 0.0 0 0 0 2003 Unspecified
## 451 0 0.0 0 0 0 2003 Unspecified
## 452 0 0.0 0 0 0 2003 Unspecified
## 453 0 0.0 0 0 0 2003 Unspecified
## 454 0 0.0 0 0 0 2003 Unspecified
## 455 0 0.0 0 0 0 2003 Unspecified
## 456 0 0.0 0 0 0 2003 Unspecified
## 457 0 0.0 0 0 0 2003 Unspecified
## 458 0 0.0 0 0 0 2003 Unspecified
## 459 0 0.0 0 0 0 2003 Unspecified
## 460 0 0.0 0 0 0 2003 Unspecified
## 461 0 0.0 0 0 0 2003 Unspecified
## 462 0 0.0 0 0 0 2003 Unspecified
## 463 0 0.0 0 0 0 2003 Unspecified
## 464 0 0.0 0 0 0 2003 Unspecified
## 465 0 0.0 0 0 0 2003 Unspecified
## 466 0 0.0 0 0 0 2004 Unspecified
## 467 0 0.0 0 0 0 2004 Unspecified
## 468 0 0.0 32 0 0 2006 No
## 469 0 0.0 0 0 0 1996 Unspecified
## 470 0 0.0 0 0 0 1998 No
## 471 0 0.0 0 0 0 2000 Unspecified
## 472 0 0.0 0 0 0 2000 No
## 473 0 0.0 0 0 0 2003 Unspecified
## 474 0 0.0 0 0 0 1998 No
## 475 0 0.0 0 0 0 2002 Unspecified
## 476 0 0.0 0 0 0 2002 Unspecified
## 477 0 0.0 0 0 0 2002 Unspecified
## 478 0 0.0 0 0 0 2002 Unspecified
## 479 0 0.0 0 0 0 2002 Unspecified
## 480 2 0.0 0 0 0 2002 Unspecified
## 481 37 0.0 0 0 0 2003 No
## 482 0 0.0 0 0 0 2004 Yes
## 483 0 0.0 0 0 0 2004 No
## 484 0 0.0 0 0 0 2005 No
## 485 0 0.0 0 0 0 2005 No
## 486 0 0.0 0 0 0 2005 No
## 487 0 0.0 0 0 0 2005 No
## 488 0 0.0 0 0 0 2005 Yes
## 489 0 0.0 0 0 0 2005 No
## 490 0 0.0 0 0 0 2005 No
## 491 0 0.0 0 0 0 2003 No
## 492 0 0.0 0 0 0 2009 Unspecified
## 493 0 0.0 0 0 0 2009 Unspecified
## 494 0 0.0 0 0 0 2009 Unspecified
## 495 0 0.0 0 0 0 2009 Unspecified
## 496 0 0.0 0 0 0 2009 Unspecified
## 497 0 0.0 0 0 0 2010 Unspecified
## 498 0 0.0 0 0 0 2010 Unspecified
## 499 0 0.0 0 0 0 2010 Unspecified
## 500 0 0.0 0 0 0 2010 Unspecified
## 501 0 0.0 0 0 0 2007 Unspecified
## 502 0 0.0 0 0 36 2008 No
## 503 0 96.0 33 0 0 2008 Yes
## 504 0 45.0 28 0 0 2008 No
## 505 0 0.0 0 0 0 2007 Yes
## 506 0 0.0 0 0 0 2007 No
## 507 0 67.0 0 0 0 2005 Unspecified
## 508 0 58.0 0 0 0 2006 Unspecified
## 509 0 29.0 0 0 0 2006 Unspecified
## 510 6 0.0 0 0 0 2009 No
## 511 6 0.0 0 0 0 2009 No
## 512 0 0.0 0 0 0 2008 Yes
## 513 0 0.0 0 0 0 2007 Unspecified
## 514 0 0.0 0 0 0 2006 Unspecified
## 515 0 0.0 0 0 0 2006 Unspecified
## 516 0 0.0 0 0 0 2006 Unspecified
## 517 0 0.0 0 0 0 2003 No
## 518 0 0.0 0 0 0 2003 No
## 519 0 0.0 0 0 0 2003 No
## 520 0 0.0 0 0 0 2003 No
## 521 0 0.0 0 0 0 2004 No
## 522 0 0.0 0 0 0 2006 Unspecified
## 523 0 0.0 0 0 0 2006 Unspecified
## 524 0 0.0 0 0 0 2006 Unspecified
## 525 0 0.0 0 0 0 2006 Unspecified
## 526 0 0.0 0 0 0 2006 Unspecified
## 527 0 0.0 0 0 0 2006 Unspecified
## 528 0 0.0 0 0 0 2006 Unspecified
## 529 0 0.0 0 0 0 2006 Unspecified
## 530 0 0.0 0 0 0 2006 Unspecified
## 531 0 0.0 0 0 0 2006 Unspecified
## 532 0 0.0 0 0 0 1994 No
## 533 0 0.0 0 0 0 1994 No
## 534 0 0.0 0 0 0 1994 No
## 535 0 0.0 0 0 0 1994 No
## 536 0 0.0 0 0 0 1994 No
## 537 0 0.0 0 0 0 1994 No
## 538 0 0.0 0 0 0 1994 No
## 539 0 0.0 0 0 0 1994 No
## 540 0 0.0 0 0 0 1994 No
## 541 0 0.0 0 0 0 1995 No
## 542 0 0.0 0 0 0 1995 No
## 543 0 0.0 0 0 0 1995 No
## 544 0 0.0 0 0 0 1995 No
## 545 0 0.0 0 0 0 1995 No
## 546 0 0.0 0 0 0 1995 No
## 547 0 0.0 0 0 0 1995 No
## 548 0 0.0 0 0 0 1995 No
## 549 0 0.0 0 0 0 1995 No
## 550 0 0.0 0 0 0 1995 No
## 551 0 0.0 0 0 0 1995 No
## RiskAll season Trans1 Vomit Setting
## 1 4.00000 Fall Foodborne 1 Restaurant
## 2 12.00000 Fall Foodborne 1 Restaurant
## 3 58.00000 Fall Foodborne 0 Restaurant
## 4 1492.00000 Fall Foodborne 1 Restaurant
## 5 72.00000 Fall Foodborne 1 Restaurant
## 6 53.00000 Fall Foodborne 1 Restaurant
## 7 13.00000 Fall Foodborne 0 Restaurant
## 8 25.00000 Fall Unspecified 1 Restaurant
## 9 300.00000 Fall Foodborne 0 Restaurant
## 10 36.00000 Spring Foodborne 1 Restaurant
## 11 96.00000 Spring Unspecified 0 Restaurant
## 12 118.00000 Spring Foodborne 0 Restaurant
## 13 20.00000 Spring Foodborne 0 Restaurant
## 14 2.00000 Spring Foodborne 1 Restaurant
## 15 4.00000 Spring Unknown 1 Restaurant
## 16 26.00000 Spring Foodborne 1 Restaurant
## 17 25.00000 Spring Foodborne 1 Restaurant
## 18 13.00000 Spring Foodborne 1 Restaurant
## 19 12.00000 Spring Foodborne 0 Restaurant
## 20 3.00000 Spring Foodborne 0 Restaurant
## 21 2.00000 Spring Foodborne 0 Restaurant
## 22 60.00000 Spring Unknown 0 Restaurant
## 23 71.00000 Spring Foodborne 0 Restaurant
## 24 14.00000 Spring Foodborne 0 Restaurant
## 25 176.00000 Spring Unknown 0 Restaurant
## 26 5.00000 Spring Unknown 0 Restaurant
## 27 5.00000 Spring Foodborne 0 Restaurant
## 28 34.00000 Spring Foodborne 0 Restaurant
## 29 17.00000 Spring Foodborne 0 Restaurant
## 30 24.00000 Spring Foodborne 0 Restaurant
## 31 53.00000 Spring Foodborne 0 Restaurant
## 32 12.00000 Spring Unspecified 0 Restaurant
## 33 8.00000 Spring Unspecified 0 Restaurant
## 34 2.00000 Spring Unspecified 0 Restaurant
## 35 11.00000 Spring Person to Person 1 Restaurant
## 36 38.00000 Spring Unknown 1 Restaurant
## 37 1732.00000 Summer Waterborne 1 Restaurant
## 38 3.00000 Summer Foodborne 1 Restaurant
## 39 9.00000 Summer Foodborne 0 Restaurant
## 40 700.00000 Summer Unknown 1 Restaurant
## 41 3639.00000 Summer Foodborne 0 Restaurant
## 42 4.00000 Winter Foodborne 1 Restaurant
## 43 21.00000 Winter Foodborne 1 Restaurant
## 44 18.00000 Winter Foodborne 1 Restaurant
## 45 2.00000 Winter Foodborne 1 Restaurant
## 46 68.00000 Winter Foodborne 1 Restaurant
## 47 625.00000 Winter Foodborne 1 Restaurant
## 48 45.00000 Winter Foodborne 0 Restaurant
## 49 7.00000 Winter Unspecified 0 Restaurant
## 50 14.00000 Winter Foodborne 0 Restaurant
## 51 17.00000 Winter Foodborne 0 Restaurant
## 52 12.00000 Winter Unspecified 0 Restaurant
## 53 10.00000 Winter Unspecified 0 Restaurant
## 54 14.00000 Winter Unspecified 0 Restaurant
## 55 77.00000 Winter Foodborne 0 Restaurant
## 56 20.00000 Winter Foodborne 0 Restaurant
## 57 74.00000 Winter Unspecified 0 Restaurant
## 58 18.00000 Winter Foodborne 1 Restaurant
## 59 6.00000 Winter Unknown 1 Restaurant
## 60 50.00000 Winter Foodborne 1 Restaurant
## 61 4.00000 Winter Unknown 1 Restaurant
## 62 2.00000 Winter Unknown 1 Restaurant
## 63 19.00000 Winter Foodborne 1 Restaurant
## 64 158.00000 Winter Foodborne 1 Restaurant
## 65 10.00000 Winter Foodborne 1 Restaurant
## 66 3.00000 Winter Foodborne 1 Restaurant
## 67 96.00000 Winter Foodborne 1 Restaurant
## 68 8.00000 Winter Foodborne 0 Restaurant
## 69 4.00000 Winter Foodborne 0 Restaurant
## 70 11.00000 Winter Foodborne 0 Restaurant
## 71 40.00000 Winter Foodborne 0 Restaurant
## 72 17.00000 Winter Unknown 0 Restaurant
## 73 32.00000 Winter Unknown 0 Restaurant
## 74 4.00000 Winter Foodborne 0 Restaurant
## 75 3.00000 Winter Foodborne 0 Restaurant
## 76 9.00000 Winter Foodborne 0 Restaurant
## 77 14.00000 Winter Foodborne 0 Restaurant
## 78 18.00000 Winter Foodborne 0 Restaurant
## 79 29.00000 Winter Foodborne 0 Restaurant
## 80 2.00000 Winter Foodborne 0 Restaurant
## 81 5.00000 Winter Foodborne 0 Restaurant
## 82 10.00000 Winter Foodborne 0 Restaurant
## 83 86.00000 Winter Foodborne 0 Restaurant
## 84 37.00000 Winter Unspecified 0 Restaurant
## 85 15.00000 Winter Unspecified 0 Restaurant
## 86 4.00000 Winter Unspecified 0 Restaurant
## 87 15.00000 Winter Unspecified 0 Restaurant
## 88 27.00000 Winter Unspecified 0 Restaurant
## 89 28.00000 Winter Unspecified 0 Restaurant
## 90 45.00000 Winter Unspecified 0 Restaurant
## 91 36.00000 Winter Unspecified 0 Restaurant
## 92 23.00000 Winter Unspecified 0 Restaurant
## 93 55.00000 Winter Unspecified 0 Restaurant
## 94 10.00000 Winter Unspecified 0 Restaurant
## 95 2.00000 Winter Unspecified 0 Restaurant
## 96 34.00000 Winter Unspecified 1 Restaurant
## 97 100.00000 Winter Foodborne 1 Restaurant
## 98 41.00000 Winter Unspecified 1 Restaurant
## 99 6.00000 Winter Foodborne 1 Restaurant
## 100 29.00000 Winter Foodborne 0 Restaurant
## 101 29.00000 Winter Foodborne 0 Restaurant
## 102 287.00000 Winter Foodborne 0 Restaurant
## 103 63.00000 Winter Foodborne 1 Restaurant
## 104 108.00000 Fall Foodborne 1 Other
## 105 130.00000 Fall Foodborne 1 Other
## 106 25.00000 Fall Foodborne 1 Other
## 107 8.00000 Fall Foodborne 1 Other
## 108 48.00000 Fall Foodborne 1 Other
## 109 220.00000 Fall Unspecified 1 Other
## 110 71.42857 Fall Foodborne 1 Other
## 111 509.00000 Fall Foodborne 1 Other
## 112 36.00000 Fall Person to Person 1 Other
## 113 2925.00000 Fall Foodborne 1 Other
## 114 3826.00000 Fall Unspecified 1 Other
## 115 1280.00000 Fall Unspecified 1 Other
## 116 24000.00000 Fall Person to Person 1 Other
## 117 53.00000 Fall Person to Person 1 Other
## 118 13.00000 Fall Waterborne 1 Other
## 119 135.00000 Fall Person to Person 1 Other
## 120 113.00000 Fall Foodborne 0 Other
## 121 83.00000 Fall Unspecified 0 Other
## 122 1800.00000 Fall Environmental 1 Other
## 123 1276.00000 Fall Foodborne 0 Other
## 124 23.00000 Fall Foodborne 0 Other
## 125 6.00000 Fall Unspecified 0 Other
## 126 20.00000 Fall Unspecified 0 Other
## 127 103.00000 Fall Unspecified 0 Other
## 128 128.00000 Fall Unspecified 0 Other
## 129 20.00000 Fall Foodborne 0 Other
## 130 37.00000 Fall Foodborne 0 Other
## 131 72.00000 Fall Foodborne 1 Other
## 132 194.00000 Fall Foodborne 1 Other
## 133 1357.00000 Fall Foodborne 1 Other
## 134 224.00000 Fall Person to Person 1 Other
## 135 66.00000 Fall Foodborne 0 Other
## 136 960.00000 Fall Waterborne 0 Other
## 137 105.00000 Fall Foodborne 1 Other
## 138 48.00000 Fall Unspecified 1 Other
## 139 78.00000 Fall Unspecified 1 Other
## 140 68.00000 Fall Unspecified 1 Other
## 141 111.00000 Fall Waterborne 1 Other
## 142 213.00000 Fall Person to Person 1 Other
## 143 28.00000 Fall Foodborne 0 Other
## 144 3.00000 Fall Unknown 0 Other
## 145 129.00000 Fall Foodborne 0 Other
## 146 16.00000 Fall Foodborne 0 Other
## 147 550.00000 Fall Unspecified 1 Other
## 148 300.00000 Fall Foodborne 1 Other
## 149 108.00000 Fall Foodborne 1 Other
## 150 73.00000 Fall Foodborne 1 Other
## 151 550.00000 Fall Person to Person 0 Other
## 152 179.00000 Fall Unknown 1 Other
## 153 2925.00000 Fall Foodborne 0 Other
## 154 112.00000 Fall Waterborne 0 Other
## 155 7454.00000 Fall Person to Person 0 Other
## 156 6761.00000 Fall Foodborne 0 Other
## 157 10276.00000 Fall Person to Person 0 Other
## 158 171.00000 Fall Person to Person 0 Other
## 159 170.00000 Fall Foodborne 0 Other
## 160 10000.00000 Fall Waterborne 0 Other
## 161 673.00000 Fall Person to Person 0 Other
## 162 108.00000 Fall Unknown 1 Other
## 163 355.00000 Fall Person to Person 1 Other
## 164 6985.00000 Fall Person to Person 1 Other
## 165 1744.00000 Fall Foodborne 1 Other
## 166 5270.00000 Fall Unknown 1 Other
## 167 3868.00000 Fall Unknown 1 Other
## 168 6180.00000 Fall Unspecified 1 Other
## 169 72.00000 Fall Unspecified 0 Other
## 170 71.00000 Fall Unspecified 0 Other
## 171 54.00000 Fall Unspecified 0 Other
## 172 65.00000 Fall Unspecified 0 Other
## 173 107.00000 Fall Foodborne 1 Other
## 174 122.00000 Fall Person to Person 1 Other
## 175 30.00000 Fall Foodborne 1 Other
## 176 69.00000 Fall Foodborne 1 Other
## 177 30.00000 Fall Foodborne 1 Other
## 178 83.00000 Fall Foodborne 0 Other
## 179 284.00000 Fall Unknown 1 Other
## 180 361.00000 Fall Person to Person 1 Other
## 181 325.00000 Spring Foodborne 1 Other
## 182 400.00000 Spring Foodborne 1 Other
## 183 132.00000 Spring Foodborne 1 Other
## 184 14.00000 Spring Foodborne 1 Other
## 185 23.00000 Spring Foodborne 1 Other
## 186 130.00000 Spring Foodborne 1 Other
## 187 158.00000 Spring Foodborne 1 Other
## 188 37.00000 Spring Unspecified 1 Other
## 189 29.00000 Spring Foodborne 1 Other
## 190 95.00000 Spring Foodborne 1 Other
## 191 18.00000 Spring Foodborne 1 Other
## 192 1276.00000 Spring Person to Person 1 Other
## 193 2054.00000 Spring Foodborne 1 Other
## 194 113.00000 Spring Foodborne 1 Other
## 195 7169.00000 Spring Foodborne 1 Other
## 196 524.00000 Spring Foodborne 1 Other
## 197 56.00000 Spring Unspecified 1 Other
## 198 49.00000 Spring Foodborne 0 Other
## 199 266.00000 Spring Unspecified 0 Other
## 200 165.00000 Spring Person to Person 0 Other
## 201 23.00000 Spring Unspecified 0 Other
## 202 500.00000 Spring Foodborne 1 Other
## 203 112.00000 Spring Foodborne 1 Other
## 204 10.00000 Spring Unknown 0 Other
## 205 565.00000 Spring Foodborne 0 Other
## 206 796.00000 Spring Unknown 0 Other
## 207 414.45455 Spring Foodborne 1 Other
## 208 27.00000 Spring Person to Person 1 Other
## 209 6.00000 Spring Unspecified 0 Other
## 210 212.00000 Spring Unspecified 0 Other
## 211 60.00000 Spring Unspecified 0 Other
## 212 34.00000 Spring Unspecified 0 Other
## 213 33.00000 Spring Unspecified 0 Other
## 214 38.00000 Spring Unspecified 0 Other
## 215 3.00000 Spring Unspecified 0 Other
## 216 19.00000 Spring Foodborne 0 Other
## 217 11.00000 Spring Unspecified 0 Other
## 218 139.00000 Spring Unspecified 0 Other
## 219 309.00000 Spring Waterborne 1 Other
## 220 207.00000 Spring Waterborne 1 Other
## 221 672.00000 Spring Waterborne 1 Other
## 222 61.90476 Spring Person to Person 1 Other
## 223 15000.00000 Spring Waterborne 0 Other
## 224 160.00000 Spring Waterborne 0 Other
## 225 50.00000 Spring Waterborne 0 Other
## 226 150.00000 Spring Waterborne 0 Other
## 227 56.00000 Spring Waterborne 0 Other
## 228 90.00000 Spring Waterborne 0 Other
## 229 74.00000 Spring Unspecified 1 Other
## 230 25.39683 Spring Unspecified 1 Other
## 231 750.00000 Spring Unspecified 0 Other
## 232 94.00000 Spring Waterborne 1 Other
## 233 25.00000 Spring Unspecified 1 Other
## 234 9.00000 Spring Unspecified 1 Other
## 235 92.00000 Spring Unspecified 1 Other
## 236 16.00000 Spring Unspecified 1 Other
## 237 36.00000 Spring Unspecified 1 Other
## 238 96.00000 Spring Unspecified 1 Other
## 239 257.00000 Spring Person to Person 1 Other
## 240 74.00000 Spring Waterborne 1 Other
## 241 5.00000 Spring Unknown 0 Other
## 242 9.00000 Spring Unknown 0 Other
## 243 47.00000 Spring Unknown 0 Other
## 244 8.00000 Spring Unknown 0 Other
## 245 62.00000 Spring Unknown 0 Other
## 246 50.00000 Spring Unknown 0 Other
## 247 6.00000 Spring Foodborne 0 Other
## 248 283.00000 Spring Unknown 0 Other
## 249 236.00000 Spring Foodborne 0 Other
## 250 356.00000 Spring Foodborne 0 Other
## 251 817.00000 Spring Foodborne 0 Other
## 252 55.00000 Spring Foodborne 1 Other
## 253 2.00000 Spring Foodborne 1 Other
## 254 90.00000 Spring Foodborne 1 Other
## 255 2.00000 Spring Foodborne 1 Other
## 256 125.00000 Spring Foodborne 1 Other
## 257 45.00000 Spring Foodborne 1 Other
## 258 24.00000 Spring Foodborne 1 Other
## 259 180.00000 Spring Foodborne 1 Other
## 260 250.00000 Spring Unspecified 1 Other
## 261 620.00000 Spring Person to Person 1 Other
## 262 250.00000 Spring Unknown 1 Other
## 263 192.00000 Spring Foodborne 1 Other
## 264 87.00000 Spring Foodborne 1 Other
## 265 2769.00000 Spring Person to Person 0 Other
## 266 136.00000 Spring Person to Person 0 Other
## 267 398.00000 Spring Unknown 1 Other
## 268 231.00000 Spring Person to Person 1 Other
## 269 790.00000 Spring Foodborne 1 Other
## 270 351.35135 Spring Unspecified 1 Other
## 271 859.00000 Summer Foodborne 1 Other
## 272 100.00000 Summer Foodborne 1 Other
## 273 105.00000 Summer Waterborne 1 Other
## 274 200.00000 Summer Foodborne 1 Other
## 275 1000.00000 Summer Foodborne 1 Other
## 276 20.00000 Summer Foodborne 1 Other
## 277 137.00000 Summer Foodborne 1 Other
## 278 110.00000 Summer Foodborne 1 Other
## 279 13.00000 Summer Foodborne 1 Other
## 280 8.00000 Summer Foodborne 1 Other
## 281 400.00000 Summer Person to Person 1 Other
## 282 240.00000 Summer Person to Person 1 Other
## 283 3789.00000 Summer Unspecified 1 Other
## 284 40.00000 Summer Person to Person 1 Other
## 285 25.00000 Summer Unspecified 1 Other
## 286 200.00000 Summer Unspecified 1 Other
## 287 4500.00000 Summer Person to Person 1 Other
## 288 15.00000 Summer Foodborne 0 Other
## 289 30.00000 Summer Foodborne 1 Other
## 290 449.00000 Summer Waterborne 1 Other
## 291 33.00000 Summer Foodborne 0 Other
## 292 264.00000 Summer Unspecified 0 Other
## 293 273.00000 Summer Foodborne 1 Other
## 294 748.00000 Summer Person to Person 1 Other
## 295 45.00000 Summer Waterborne 0 Other
## 296 120.00000 Summer Waterborne 0 Other
## 297 100.00000 Summer Waterborne 0 Other
## 298 14.00000 Summer Waterborne 0 Other
## 299 25.00000 Summer Waterborne 0 Other
## 300 220.00000 Summer Person to Person 1 Other
## 301 181.00000 Summer Person to Person 1 Other
## 302 53.00000 Summer Environmental 1 Other
## 303 563.63636 Summer Unspecified 1 Other
## 304 94.00000 Summer Foodborne 1 Other
## 305 150.00000 Summer Foodborne 1 Other
## 306 33.00000 Summer Foodborne 1 Other
## 307 44.00000 Summer Foodborne 1 Other
## 308 13.00000 Summer Foodborne 1 Other
## 309 6.00000 Summer Foodborne 1 Other
## 310 65.00000 Summer Foodborne 1 Other
## 311 16.00000 Summer Foodborne 1 Other
## 312 53.00000 Summer Foodborne 1 Other
## 313 2800.00000 Summer Person to Person 1 Other
## 314 4500.00000 Summer Person to Person 1 Other
## 315 137.00000 Summer Person to Person 0 Other
## 316 26.00000 Summer Foodborne 1 Other
## 317 106.00000 Summer Foodborne 1 Other
## 318 795.00000 Summer Person to Person 1 Other
## 319 2953.00000 Summer Person to Person 0 Other
## 320 3789.00000 Summer Person to Person 0 Other
## 321 23.00000 Summer Foodborne 0 Other
## 322 56.00000 Summer Foodborne 0 Other
## 323 80.00000 Summer Unknown 1 Other
## 324 84.00000 Summer Unknown 1 Other
## 325 80.00000 Summer Unknown 1 Other
## 326 80.00000 Summer Foodborne 1 Other
## 327 163.00000 Summer Waterborne 1 Other
## 328 753.00000 Winter Foodborne 1 Other
## 329 81.00000 Winter Waterborne 1 Other
## 330 225.00000 Winter Foodborne 1 Other
## 331 150.00000 Winter Foodborne 1 Other
## 332 12.00000 Winter Foodborne 1 Other
## 333 180.00000 Winter Person to Person 1 Other
## 334 772.00000 Winter Waterborne 1 Other
## 335 27.00000 Winter Unspecified 1 Other
## 336 189.00000 Winter Waterborne 1 Other
## 337 266.00000 Winter Environmental 1 Other
## 338 4517.00000 Winter Environmental 1 Other
## 339 850.00000 Winter Foodborne 1 Other
## 340 36.00000 Winter Foodborne 1 Other
## 341 34.00000 Winter Foodborne 1 Other
## 342 26.00000 Winter Environmental 1 Other
## 343 30.00000 Winter Person to Person 1 Other
## 344 1067.00000 Winter Person to Person 0 Other
## 345 22.00000 Winter Foodborne 1 Other
## 346 1195.48872 Winter Foodborne 0 Other
## 347 530.00000 Winter Unspecified 1 Other
## 348 760.00000 Winter Unspecified 0 Other
## 349 19.00000 Winter Unspecified 0 Other
## 350 79.00000 Winter Person to Person 0 Other
## 351 118.00000 Winter Foodborne 0 Other
## 352 31.00000 Winter Unspecified 0 Other
## 353 337.00000 Winter Person to Person 0 Other
## 354 2.00000 Winter Unknown 1 Other
## 355 2.00000 Winter Unknown 1 Other
## 356 27.00000 Winter Foodborne 1 Other
## 357 190.00000 Winter Foodborne 1 Other
## 358 77.00000 Winter Foodborne 1 Other
## 359 22.00000 Winter Foodborne 0 Other
## 360 15.00000 Winter Foodborne 0 Other
## 361 261.00000 Winter Foodborne 0 Other
## 362 211.00000 Winter Foodborne 0 Other
## 363 262.00000 Winter Foodborne 0 Other
## 364 12.00000 Winter Unknown 0 Other
## 365 8.00000 Winter Person to Person 1 Other
## 366 675.00000 Winter Person to Person 1 Other
## 367 15.00000 Winter Foodborne 0 Other
## 368 2.00000 Winter Foodborne 0 Other
## 369 2.00000 Winter Foodborne 0 Other
## 370 217.00000 Winter Unspecified 0 Other
## 371 49.00000 Winter Unspecified 0 Other
## 372 20.00000 Winter Foodborne 0 Other
## 373 35.00000 Winter Foodborne 0 Other
## 374 2.00000 Winter Foodborne 0 Other
## 375 3.00000 Winter Foodborne 0 Other
## 376 52.00000 Winter Unspecified 0 Other
## 377 50.00000 Winter Unspecified 0 Other
## 378 2447.00000 Winter Person to Person 1 Other
## 379 137.00000 Winter Foodborne 1 Other
## 380 736.00000 Winter Foodborne 1 Other
## 381 2585.00000 Winter Waterborne 1 Other
## 382 284.00000 Winter Person to Person 1 Other
## 383 83.00000 Winter Person to Person 1 Other
## 384 188.00000 Winter Person to Person 1 Other
## 385 2500.00000 Winter Waterborne 0 Other
## 386 250.00000 Winter Waterborne 0 Other
## 387 2200.00000 Winter Waterborne 0 Other
## 388 13.00000 Winter Waterborne 0 Other
## 389 299.00000 Winter Foodborne 1 Other
## 390 61.00000 Winter Foodborne 0 Other
## 391 154.00000 Winter Foodborne 1 Other
## 392 138.00000 Winter Person to Person 1 Other
## 393 484.00000 Winter Person to Person 1 Other
## 394 166.00000 Winter Person to Person 1 Other
## 395 33.00000 Winter Unspecified 1 Other
## 396 467.00000 Winter Unspecified 1 Other
## 397 385.00000 Winter Unspecified 1 Other
## 398 7.00000 Winter Unspecified 1 Other
## 399 121.00000 Winter Unspecified 1 Other
## 400 95.00000 Winter Unspecified 1 Other
## 401 78.00000 Winter Unspecified 1 Other
## 402 85.00000 Winter Unspecified 1 Other
## 403 123.00000 Winter Unspecified 1 Other
## 404 145.00000 Winter Unspecified 1 Other
## 405 76.00000 Winter Unspecified 1 Other
## 406 235.00000 Winter Unspecified 1 Other
## 407 78.00000 Winter Unspecified 1 Other
## 408 18.00000 Winter Unspecified 1 Other
## 409 56.00000 Winter Unspecified 1 Other
## 410 59.00000 Winter Unspecified 1 Other
## 411 861.00000 Winter Unspecified 1 Other
## 412 21.00000 Winter Unspecified 1 Other
## 413 36.00000 Winter Unspecified 1 Other
## 414 42.00000 Winter Unspecified 1 Other
## 415 110.00000 Winter Unspecified 1 Other
## 416 156.00000 Winter Unspecified 1 Other
## 417 52.00000 Winter Unspecified 1 Other
## 418 185.00000 Winter Unspecified 1 Other
## 419 162.00000 Winter Unspecified 1 Other
## 420 93.00000 Winter Unspecified 1 Other
## 421 79.00000 Winter Unspecified 1 Other
## 422 135.00000 Winter Unspecified 1 Other
## 423 92.00000 Winter Unspecified 1 Other
## 424 65.00000 Winter Unspecified 1 Other
## 425 109.00000 Winter Unspecified 1 Other
## 426 36.00000 Winter Unspecified 1 Other
## 427 85.00000 Winter Unspecified 1 Other
## 428 68.00000 Winter Unspecified 1 Other
## 429 74.00000 Winter Unspecified 1 Other
## 430 55.00000 Winter Unspecified 1 Other
## 431 101.00000 Winter Unspecified 1 Other
## 432 65.00000 Winter Unspecified 1 Other
## 433 85.00000 Winter Unspecified 1 Other
## 434 85.00000 Winter Unspecified 1 Other
## 435 132.00000 Winter Unspecified 1 Other
## 436 33.00000 Winter Unspecified 1 Other
## 437 76.00000 Winter Unspecified 1 Other
## 438 98.00000 Winter Unspecified 1 Other
## 439 41.00000 Winter Unspecified 1 Other
## 440 234.00000 Winter Foodborne 1 Other
## 441 234.00000 Winter Waterborne 1 Other
## 442 263.00000 Winter Waterborne 1 Other
## 443 3.00000 Winter Foodborne 1 Other
## 444 162.00000 Winter Foodborne 1 Other
## 445 325.00000 Winter Foodborne 1 Other
## 446 5.00000 Winter Unknown 0 Other
## 447 1.00000 Winter Foodborne 0 Other
## 448 35.00000 Winter Foodborne 0 Other
## 449 3.00000 Winter Foodborne 0 Other
## 450 1.00000 Winter Foodborne 0 Other
## 451 295.00000 Winter Foodborne 0 Other
## 452 13.00000 Winter Unknown 0 Other
## 453 3.00000 Winter Foodborne 0 Other
## 454 2.00000 Winter Foodborne 0 Other
## 455 5.00000 Winter Foodborne 0 Other
## 456 15.00000 Winter Unknown 0 Other
## 457 331.00000 Winter Foodborne 0 Other
## 458 2.00000 Winter Foodborne 0 Other
## 459 3.00000 Winter Foodborne 0 Other
## 460 3.00000 Winter Foodborne 0 Other
## 461 6.00000 Winter Foodborne 0 Other
## 462 5.00000 Winter Foodborne 0 Other
## 463 15.00000 Winter Unknown 0 Other
## 464 9.00000 Winter Foodborne 0 Other
## 465 67.00000 Winter Foodborne 0 Other
## 466 118.00000 Winter Foodborne 0 Other
## 467 255.00000 Winter Foodborne 0 Other
## 468 387.00000 Winter Foodborne 1 Other
## 469 400.00000 Winter Foodborne 1 Other
## 470 18.00000 Winter Foodborne 1 Other
## 471 60.00000 Winter Foodborne 1 Other
## 472 34.00000 Winter Person to Person 1 Other
## 473 125.00000 Winter Unspecified 1 Other
## 474 35.00000 Winter Unspecified 1 Other
## 475 2729.00000 Winter Person to Person 0 Other
## 476 8591.00000 Winter Person to Person 0 Other
## 477 6851.00000 Winter Person to Person 0 Other
## 478 57.00000 Winter Person to Person 0 Other
## 479 65.00000 Winter Person to Person 0 Other
## 480 107.00000 Winter Environmental 1 Other
## 481 427.00000 Winter Environmental 1 Other
## 482 1466.00000 Winter Unknown 0 Other
## 483 90.00000 Winter Waterborne 0 Other
## 484 96.00000 Winter Environmental 0 Other
## 485 76.00000 Winter Person to Person 0 Other
## 486 143.00000 Winter Unknown 0 Other
## 487 58.00000 Winter Unknown 0 Other
## 488 40.00000 Winter Foodborne 1 Other
## 489 39.00000 Winter Unknown 1 Other
## 490 5400.00000 Winter Foodborne 1 Other
## 491 203.00000 Winter Unspecified 1 Other
## 492 77.00000 Winter Unspecified 0 Other
## 493 80.00000 Winter Unspecified 0 Other
## 494 62.00000 Winter Unspecified 0 Other
## 495 104.00000 Winter Unspecified 0 Other
## 496 80.00000 Winter Unspecified 0 Other
## 497 62.00000 Winter Unspecified 0 Other
## 498 70.00000 Winter Unspecified 0 Other
## 499 61.00000 Winter Unspecified 0 Other
## 500 64.00000 Winter Unspecified 0 Other
## 501 369.00000 Winter Waterborne 1 Other
## 502 216.00000 Winter Waterborne 1 Other
## 503 34.00000 Winter Foodborne 1 Other
## 504 21.00000 Winter Foodborne 1 Other
## 505 698.00000 Winter Foodborne 1 Other
## 506 36.00000 Winter Unspecified 1 Other
## 507 319.63470 Winter Unknown 1 Other
## 508 348.31461 Winter Unspecified 1 Other
## 509 331.42857 Winter Unspecified 1 Other
## 510 34.00000 Winter Foodborne 1 Other
## 511 41.00000 Winter Foodborne 1 Other
## 512 815.00000 Winter Foodborne 1 Other
## 513 72.00000 Foodborne 1 Other
## 514 1888.00000 Person to Person 1 Other
## 515 3245.00000 Person to Person 1 Other
## 516 1986.00000 Person to Person 1 Other
## 517 41.00000 Foodborne 1 Other
## 518 28.00000 Foodborne 1 Other
## 519 47.00000 Foodborne 1 Other
## 520 134.00000 Foodborne 1 Other
## 521 39.00000 Foodborne 1 Other
## 522 140.00000 Person to Person 0 Other
## 523 2590.00000 Person to Person 0 Other
## 524 166.00000 Person to Person 0 Other
## 525 4042.00000 Person to Person 0 Other
## 526 3578.00000 Person to Person 0 Other
## 527 12124.00000 Person to Person 0 Other
## 528 10013.00000 Person to Person 0 Other
## 529 2217.00000 Person to Person 0 Other
## 530 454.00000 Person to Person 0 Other
## 531 2442.00000 Person to Person 0 Other
## 532 140.00000 Unspecified 0 Other
## 533 170.00000 Unspecified 0 Other
## 534 146.00000 Unspecified 0 Other
## 535 45.00000 Foodborne 0 Other
## 536 20.00000 Foodborne 0 Other
## 537 70.00000 Unspecified 0 Other
## 538 67.00000 Foodborne 0 Other
## 539 130.00000 Unspecified 0 Other
## 540 200.00000 Unspecified 0 Other
## 541 245.00000 Unspecified 0 Other
## 542 75.00000 Foodborne 0 Other
## 543 132.00000 Unspecified 0 Other
## 544 50.00000 Unspecified 0 Other
## 545 45.00000 Unspecified 0 Other
## 546 15.00000 Foodborne 0 Other
## 547 200.00000 Unspecified 0 Other
## 548 100.00000 Unspecified 0 Other
## 549 50.00000 Foodborne 0 Other
## 550 20.00000 Unspecified 0 Other
## 551 22.00000 Foodborne 0 Other
We can finally embark on some modeling - or at least we can get ready to do so.
We will use a lot of the caret package functionality for the following tasks. You might find the package website useful as you try to figure things out.
Depending on the data and question, we might want to reserve some of the data for a final validation/testing step or not. Here, to illustrate this process and the idea of reserving some data for the very end, we’ll split things into a train and test set. All the modeling will be done with the train set, and final evaluation of the model(s) happens on the test set. We use the caret package for this.
#this code does the data splitting. I still assume that your data is stored in the `d` object.
#uncomment to run
set.seed(123)
trainset <- caret::createDataPartition(y = final_draft$fracinf, p = 0.7, list = FALSE)
data_train = final_draft[trainset,] #extract observations/rows for training, assign to new variable
data_test = final_draft[-trainset,] #do the same for the test setSince the above code involves drawing samples, and we want to do that reproducible, we also set a random number seed with set.seed(). With that, each time we perform this sampling, it will be the same, unless we change the seed. If nothing about the code changes, setting the seed once at the beginning is enough. If you want to be extra sure, it is a good idea to set the seed at the beginning of every code chunk that involves random numbers (i.e., sampling or some other stochastic/random procedure). We do that here.
Now let’s begin with the model fitting. We’ll start by looking at a null model, which is just the mean of the data. This is, of course, a stupid “model” but provides some baseline for performance.
#write code that computes the RMSE for a null model, which is just the mean of the outcome
#remember that from now on until the end, everything happens with the training data
RMSE(data_train$fracinf, mean(data_train$fracinf))## [1] 28.80524
Now we’ll fit the outcome to each predictor one at a time. To evaluate our model performance, we will use cross-validation and the caret package. Note that we just fit a linear model. caret itself is not a model. Instead, it provides an interface that allows easy access to many different models and has functions to do a lot of steps quickly - as you will see below. Most of the time, you can do all our work through the caret (or mlr) workflow. The problem is that because caret calls another package/function, sometimes things are not as clear, especially when you get an error message. So occasionally, if you know you want to use a specific model and want more control over things, you might want to not use caret and instead go straight to the model function (e.g. lm or glm or…). We’ve done a bit of that before, for the remainder of the class we’ll mostly access underlying functions through caret.
#There is probably a nicer tidyverse way of doing this. I just couldn't think of it, so did it this way.
set.seed(1111) #makes each code block reproducible
fitControl <- trainControl(method="repeatedcv",number=5,repeats=5) #setting CV method for caret
Npred <- ncol(data_train)-1 # number of predictors
resultmat <- data.frame(Variable = names(data_train)[-1], RMSE = rep(0,Npred)) #store values for RMSE for each variable
for (n in 2:ncol(data_train)) #loop over each predictor. For this to work, outcome must be in 1st column
{
fit1 <- train( as.formula(paste("fracinf ~",names(data_train)[n])) , data = data_train, method = "lm", trControl = fitControl)
resultmat[n-1,2]= fit1$results$RMSE
}## Warning in nominalTrainWorkflow(x = x, y = y, wts = weights, info =
## trainInfo, : There were missing values in resampled performance measures.
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in nominalTrainWorkflow(x = x, y = y, wts = weights, info =
## trainInfo, : There were missing values in resampled performance measures.
## Warning in nominalTrainWorkflow(x = x, y = y, wts = weights, info =
## trainInfo, : There were missing values in resampled performance measures.
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Variable RMSE
## 1 Action1 28.79733
## 2 CasesAll 28.86603
## 3 Country 28.48363
## 4 Deaths 28.84396
## 5 gg2c4 28.08563
## 6 Hemisphere 28.81131
## 7 Hospitalizations 28.87596
## 8 MeanD1 28.82437
## 9 MeanI1 28.67866
## 10 MedianD1 28.82429
## 11 MedianI1 28.82520
## 12 OBYear 26.57969
## 13 Path1 28.92805
## 14 RiskAll 27.93100
## 15 season 28.73715
## 16 Trans1 26.25626
## 17 Vomit 28.35938
## 18 Setting 27.04012
This analysis shows 2 things that might need closer inspections. We get some error/warning messages, and most RMSE of the single-predictor models are not better than the null model. Usually, this is cause for more careful checking until you fully understand what is going on. But for this exercise, let’s blindly press on!
Now let’s perform fitting with multiple predictors. Use the same setup as the code above to fit the outcome to all predictors at the same time. Do that for 3 different models: linear (lm), regression splines (earth), K nearest neighbor (knn). You might have to install/load some extra R packages for that. If that’s the case, caret will tell you.
set.seed(1111) #makes each code block reproducible
#write code that uses the train function in caret to fit the outcome to all predictors using the 3 methods specified.
#report the RMSE for each method. Note that knn and earth perform some model tuning (we'll discuss this soon) and report multiple RMSE. Use the lowest value.
data_train## fracinf Action1 CasesAll Country Deaths gg2c4 Hemisphere
## 2 83.3333333 Unspecified 10 Other 0 Northern
## 3 32.7586207 Unspecified 19 Japan 0 Northern
## 4 45.7774799 Yes 683 Japan 0 Northern
## 5 70.8333333 Yes 51 Other 0 Northern
## 8 64.0000000 Unspecified 16 Other 0 Southern
## 12 40.6779661 Unspecified 48 Japan 0 Northern
## 13 60.0000000 Unspecified 12 Japan 0 Northern
## 14 100.0000000 Unspecified 2 Japan 0 Northern
## 16 69.2307692 Unspecified 18 Japan 0 Northern
## 17 56.0000000 Unspecified 14 Japan 0 Northern
## 18 61.5384615 Unspecified 8 Japan 0 Northern
## 19 75.0000000 Unspecified 9 Japan 0 Northern
## 20 100.0000000 Unspecified 3 Japan 0 Northern
## 22 48.3333333 Unspecified 29 Japan 0 Northern
## 23 56.3380282 Unspecified 40 Japan 0 Northern
## 24 42.8571429 Unspecified 6 Japan 0 Northern
## 25 40.9090909 Unspecified 72 Japan 0 Northern
## 26 80.0000000 Unspecified 4 Japan 0 Northern
## 27 100.0000000 Unspecified 5 Japan 0 Northern
## 35 81.8181818 Yes 9 Other 0 Northern
## 36 76.3157895 Yes 29 Other 0 Northern
## 37 25.0000000 Yes 433 USA 0 Northern
## 38 100.0000000 Unspecified 3 Other 0 Northern
## 39 55.5555556 Unspecified 5 Japan 0 Yes Northern
## 40 6.0000000 Unspecified 42 Other 0 Northern
## 41 3.4075295 Unspecified 124 Japan 0 Northern
## 42 50.0000000 Unspecified 2 Other 0 Yes Northern
## 43 52.3809524 Unspecified 11 Other 0 Northern
## 44 77.7777778 Unspecified 14 Other 0 Northern
## 45 100.0000000 Unspecified 2 Other 0 Northern
## 46 52.9411765 Unspecified 36 USA 0 Northern
## 47 61.9200000 Yes 387 USA 0 Northern
## 49 85.7142857 Unspecified 6 Japan 0 Northern
## 52 83.3333333 Unspecified 10 Japan 0 Northern
## 53 60.0000000 Unspecified 6 Japan 0 Northern
## 54 42.8571429 Unspecified 6 Japan 0 Northern
## 55 44.1558442 Unspecified 34 Japan 0 Northern
## 58 61.1111111 Unspecified 11 Japan 0 Northern
## 59 66.6666667 Unspecified 4 Japan 0 Northern
## 60 40.0000000 Unspecified 20 Japan 0 Northern
## 62 100.0000000 Unspecified 2 Japan 0 Northern
## 64 34.8101266 Unspecified 55 Japan 0 Northern
## 66 100.0000000 Unspecified 3 Japan 0 Northern
## 68 100.0000000 Unspecified 8 Japan 0 Northern
## 69 100.0000000 Unspecified 4 Japan 0 Northern
## 72 52.9411765 Unspecified 9 Japan 0 Northern
## 73 59.3750000 Unspecified 19 Japan 0 Northern
## 74 75.0000000 Unspecified 3 Japan 0 Northern
## 75 66.6666667 Unspecified 2 Japan 0 Northern
## 76 77.7777778 Unspecified 7 Japan 0 Northern
## 77 78.5714286 Unspecified 11 Japan 0 Northern
## 78 38.8888889 Unspecified 7 Japan 0 Yes Northern
## 79 44.8275862 Unspecified 13 Japan 0 Northern
## 80 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 81 40.0000000 Unspecified 2 Japan 0 Northern
## 82 70.0000000 Unspecified 7 Japan 0 Northern
## 83 37.2093023 Unspecified 32 Japan 0 Yes Northern
## 84 32.4324324 Unspecified 12 Japan 0 Northern
## 85 86.6666667 Unspecified 13 Japan 0 Yes Northern
## 86 100.0000000 Unspecified 4 Japan 0 Yes Northern
## 87 73.3333333 Unspecified 11 Japan 0 Northern
## 89 60.7142857 Unspecified 17 Japan 0 Yes Northern
## 90 48.8888889 Unspecified 22 Japan 0 Yes Northern
## 91 33.3333333 Unspecified 12 Japan 0 Northern
## 93 36.3636364 Unspecified 20 Japan 0 Northern
## 94 40.0000000 Unspecified 4 Japan 0 Northern
## 95 100.0000000 Unspecified 2 Japan 0 Northern
## 96 85.2941176 Unspecified 29 Other 0 Yes Southern
## 99 33.3333333 Yes 2 Other 0 Southern
## 101 62.0689655 Unspecified 18 Japan 0 Northern
## 103 33.3333333 Unspecified 21 Other 0 Northern
## 105 20.7692308 Unspecified 27 Other 0 Yes Northern
## 107 75.0000000 Unspecified 6 Other 0 Northern
## 109 52.7272727 Unspecified 116 Other 0 Yes Northern
## 111 37.5245580 Unspecified 191 USA 0 Northern
## 113 12.6153846 Yes 369 Multiple 0 Northern
## 114 3.4239415 Yes 131 Multiple 0 Northern
## 116 4.8708333 Yes 1169 USA 0 Northern
## 118 53.8461538 Unspecified 7 Other 0 Yes Northern
## 119 32.5925926 Yes 44 Other 0 Northern
## 120 50.4424779 Unspecified 57 Japan 0 Northern
## 121 31.3253012 Unspecified 26 Japan 0 Northern
## 122 7.7222222 Yes 139 Other 0 Northern
## 123 30.3291536 Yes 387 Multiple 0 Yes Northern
## 124 52.1739130 Unspecified 12 Japan 0 Northern
## 125 50.0000000 Unspecified 3 Japan 0 Northern
## 128 14.8437500 Unspecified 19 Japan 0 Northern
## 130 51.3513514 Unspecified 19 Japan 0 Northern
## 131 37.5000000 Unspecified 27 USA 0 Northern
## 132 39.6907216 Yes 77 USA 0 Northern
## 134 34.3750000 Yes 77 Other 1 Yes Northern
## 135 15.1515152 Yes 10 USA 0 Northern
## 136 31.2500000 Unspecified 300 Other 0 Northern
## 137 94.2857143 Yes 99 Japan 0 Northern
## 138 4.1666667 Unspecified 2 Japan 0 Yes Northern
## 139 3.8461538 Unspecified 3 Japan 0 Yes Northern
## 140 2.9411765 Unspecified 2 Japan 0 Yes Northern
## 142 28.1690141 Yes 60 Other 0 Yes Northern
## 143 17.8571429 Unspecified 5 Japan 0 Northern
## 147 36.3636364 Unspecified 200 USA 0 Northern
## 148 15.6666667 Unspecified 47 USA 0 Northern
## 150 76.7123288 Unspecified 56 USA 0 Northern
## 151 21.6363636 Unspecified 119 Multiple 4 Yes Northern
## 157 1.2748151 Unspecified 131 Other 0 Yes Northern
## 158 12.8654971 Unspecified 22 USA 0 Yes Northern
## 159 50.0000000 Unspecified 85 USA 0 Yes Northern
## 161 18.7221397 Unspecified 126 USA 0 Yes Northern
## 162 34.2592593 Unspecified 37 Other 0 Yes Northern
## 164 16.7931281 Yes 1173 USA 0 Northern
## 167 11.6597725 Yes 451 USA 0 Northern
## 168 2.5242718 Yes 156 USA 0 Northern
## 169 11.1111111 Unspecified 8 Other 0 Northern
## 171 24.0740741 Unspecified 13 Other 0 Northern
## 174 18.0327869 Yes 22 USA 0 Yes Northern
## 175 50.0000000 Yes 15 Other 0 Northern
## 176 66.6666667 Yes 46 Other 0 Northern
## 178 39.7590361 Unspecified 33 Other 0 Northern
## 179 36.6197183 Yes 104 Multiple 4 Yes Northern
## 180 14.1274238 Yes 51 Other 0 Northern
## 181 10.7692308 Unspecified 35 Other 0 Northern
## 182 10.0000000 Unspecified 40 Other 0 Yes Northern
## 183 3.0303030 Unspecified 4 Other 0 Northern
## 187 39.2405063 Unspecified 62 Other 0 Yes Northern
## 188 48.6486486 Unspecified 18 Other 0 Southern
## 189 79.3103448 Yes 23 USA 0 Northern
## 191 50.0000000 Yes 9 USA 0 Northern
## 193 6.0856865 Yes 125 USA 0 Yes Northern
## 194 56.6371681 Unspecified 64 USA 0 Northern
## 195 37.6621565 Unspecified 2700 USA 0 Northern
## 196 37.2137405 Yes 195 Other 0 Northern
## 197 51.7857143 Yes 29 Other 0 Yes Northern
## 198 59.1836735 Unspecified 29 Japan 0 Northern
## 200 15.1515152 Unspecified 25 Japan 0 Yes Northern
## 201 78.2608696 Unspecified 18 Japan 0 Northern
## 202 49.0000000 Unspecified 245 USA 0 Northern
## 203 19.6428571 Unspecified 22 Japan 0 Northern
## 204 50.0000000 Unspecified 5 Japan 0 Northern
## 205 28.6725664 Unspecified 162 Japan 0 Yes Northern
## 207 48.4974775 Yes 201 Other 0 Northern
## 208 74.0740741 Yes 20 USA 0 Northern
## 209 100.0000000 Unspecified 6 Japan 0 Northern
## 210 25.0000000 Unspecified 53 Japan 0 Northern
## 211 66.6666667 Unspecified 40 Japan 0 Northern
## 213 42.4242424 Unspecified 14 Japan 0 Northern
## 214 34.2105263 Unspecified 13 Japan 0 Northern
## 215 100.0000000 Unspecified 3 Japan 0 Northern
## 216 63.1578947 Unspecified 12 Japan 0 Northern
## 217 90.9090909 Unspecified 10 Japan 0 Northern
## 218 24.4604317 Unspecified 34 Japan 0 Northern
## 220 46.8599034 Unspecified 97 Other 0 Northern
## 221 54.7619048 Yes 368 Other 0 Northern
## 222 42.0000000 Yes 26 Other 0 Southern
## 223 13.3333333 Unspecified 2000 Other 0 Northern
## 224 36.2500000 Unspecified 58 Other 0 Northern
## 226 63.3333333 Unspecified 95 Other 0 Yes Northern
## 227 71.4285714 Unspecified 40 Other 0 Northern
## 228 44.4444444 Unspecified 40 Other 0 Northern
## 229 41.8918919 Yes 31 Japan 0 Northern
## 230 63.0000000 Unspecified 16 Other 0 Northern
## 231 6.2666667 Unspecified 47 Other 0 Northern
## 232 64.8936170 Unspecified 61 Other 0 Northern
## 233 16.0000000 Unspecified 4 Japan 0 Northern
## 234 22.2222222 Unspecified 2 Japan 0 Northern
## 235 2.1739130 Unspecified 2 Japan 0 Northern
## 236 12.5000000 Unspecified 2 Japan 0 Northern
## 237 5.5555556 Unspecified 2 Japan 0 Northern
## 238 3.1250000 Unspecified 3 Japan 0 Yes Northern
## 239 49.0272374 Yes 126 USA 2 Northern
## 241 40.0000000 Unspecified 2 Japan 0 Northern
## 243 42.5531915 Unspecified 20 Japan 0 Northern
## 244 25.0000000 Unspecified 2 Japan 0 Northern
## 245 43.5483871 Unspecified 27 Japan 0 Northern
## 246 22.0000000 Unspecified 11 Japan 0 Northern
## 247 50.0000000 Unspecified 3 Japan 0 Northern
## 248 55.4770318 Unspecified 157 Japan 0 Northern
## 249 28.8135593 Unspecified 68 Japan 0 Northern
## 250 51.6853933 Unspecified 184 Japan 0 Yes Northern
## 251 24.8470012 Unspecified 203 Japan 0 Yes Northern
## 252 32.7272727 Unspecified 18 Other 0 Southern
## 257 82.2222222 Unspecified 37 USA 0 Northern
## 258 70.8333333 Unspecified 17 USA 0 Northern
## 259 38.8888889 Unspecified 70 USA 0 Yes Northern
## 260 30.0000000 Unspecified 75 USA 0 Northern
## 261 16.7741935 Unspecified 104 USA 0 Northern
## 262 28.4000000 Unspecified 71 Japan 0 Northern
## 263 24.4791667 Yes 47 Other 0 Southern
## 264 39.0804598 Yes 34 Other 0 Southern
## 266 30.8823529 Unspecified 42 USA 0 Yes Northern
## 269 32.9113924 Yes 260 Other 0 Yes Northern
## 270 3.7000000 Yes 13 Other 0 Yes Northern
## 272 70.0000000 Unspecified 70 Other 0 Northern
## 273 38.0952381 Unspecified 40 Other 0 Northern
## 274 24.5000000 Unspecified 49 Other 0 Northern
## 275 3.3000000 Unspecified 33 Other 0 Yes Northern
## 276 95.0000000 Unspecified 19 Other 0 Yes Northern
## 278 13.6363636 Unspecified 15 Other 0 Northern
## 279 76.9230769 Unspecified 10 Other 0 Yes Northern
## 281 20.0000000 Yes 80 USA 0 Northern
## 283 10.4249142 Yes 395 Multiple 0 Northern
## 284 55.0000000 Unspecified 22 Other 0 Yes Southern
## 288 80.0000000 Yes 12 Other 0 Northern
## 289 40.0000000 Yes 12 Other 0 Northern
## 290 28.7305122 Yes 129 Other 0 Northern
## 292 6.0606061 Unspecified 16 Japan 0 Northern
## 293 54.9450549 Unspecified 150 Other 0 Northern
## 294 30.6149733 Yes 229 Other 0 Northern
## 296 33.3333333 Unspecified 40 Other 0 Northern
## 297 60.0000000 Unspecified 60 Other 0 Northern
## 298 92.8571429 Unspecified 13 Other 0 Northern
## 300 16.8181818 Unspecified 37 Japan 0 Northern
## 302 26.4150943 Unspecified 14 Other 0 Northern
## 303 33.0000000 Unspecified 186 Other 0 Northern
## 304 50.0000000 Yes 47 Other 0 Northern
## 306 24.2424242 Unspecified 8 Other 0 Southern
## 308 38.4615385 Unspecified 5 Other 0 Southern
## 310 24.6153846 Unspecified 16 Other 0 Southern
## 315 35.0364964 Yes 48 Other 0 Yes Northern
## 316 73.0769231 Yes 19 Other 0 Northern
## 317 56.6037736 Yes 60 Other 0 Northern
## 318 20.8805031 Yes 166 Other 0 Southern
## 319 1.8625127 Unspecified 55 USA 0 Yes Northern
## 326 55.0000000 Unspecified 44 Other 0 Northern
## 327 53.3742331 Yes 87 Multiple 0 Northern
## 328 44.2231076 Yes 333 USA 0 Northern
## 330 45.7777778 Unspecified 103 Other 0 Northern
## 331 40.0000000 Unspecified 60 Other 0 Northern
## 332 75.0000000 Unspecified 9 Other 0 Yes Northern
## 333 21.1111111 Yes 38 USA 0 Northern
## 334 22.6683938 Yes 175 Other 0 Northern
## 336 28.0423280 Yes 53 USA 0 Northern
## 337 38.7218045 Yes 103 USA 0 Northern
## 338 20.8545495 Yes 942 Other 0 Yes Northern
## 341 85.2941176 Yes 29 Other 0 Northern
## 342 80.7692308 Yes 21 Other 0 Northern
## 343 43.3333333 Yes 13 Other 0 Northern
## 344 6.5604499 Yes 70 Other 0 Yes Northern
## 345 68.1818182 Unspecified 15 Other 0 Yes Northern
## 348 20.0000000 Unspecified 152 Other 0 Yes Northern
## 350 45.5696203 Unspecified 36 Japan 0 Northern
## 351 64.4067797 Unspecified 76 Japan 0 Northern
## 352 90.3225806 Unspecified 28 Japan 0 Northern
## 356 62.9629630 Unspecified 17 Japan 0 Northern
## 357 43.1578947 Unspecified 82 Japan 0 Northern
## 358 36.3636364 Unspecified 28 Japan 0 Northern
## 359 54.5454545 Unspecified 12 Japan 0 Northern
## 360 100.0000000 Unspecified 15 Japan 0 Northern
## 361 39.4636015 Unspecified 103 Japan 0 Northern
## 364 16.6666667 Unspecified 2 Japan 0 Northern
## 365 87.5000000 Yes 7 USA 0 Yes Northern
## 366 52.5925926 Yes 355 USA 0 Yes Northern
## 367 46.6666667 Unspecified 7 Japan 0 Yes Northern
## 368 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 369 100.0000000 Unspecified 2 Japan 0 Yes Northern
## 370 25.8064516 Unspecified 56 Japan 0 Yes Northern
## 371 12.2448980 Unspecified 6 Japan 0 Northern
## 372 95.0000000 Unspecified 19 Japan 0 Northern
## 373 28.5714286 Unspecified 10 Japan 0 Northern
## 374 100.0000000 Unspecified 2 Japan 0 Northern
## 375 100.0000000 Unspecified 3 Japan 0 Northern
## 376 51.9230769 Unspecified 27 Japan 0 Northern
## 378 18.1855333 Yes 445 Other 9 Yes Northern
## 381 64.0232108 Yes 1655 Other 0 Yes Northern
## 382 61.9718310 Yes 176 Other 0 Northern
## 383 62.6506024 Yes 52 Other 0 Northern
## 385 8.0000000 Unspecified 200 Other 0 Yes Northern
## 386 40.0000000 Unspecified 100 Other 0 Northern
## 389 46.8227425 Unspecified 140 USA 0 Northern
## 390 57.3770492 Yes 35 Other 0 Yes Northern
## 391 44.8051948 Unspecified 69 Other 0 Northern
## 395 6.0606061 Unspecified 2 Japan 0 Northern
## 396 13.0620985 Unspecified 61 Japan 0 Yes Northern
## 398 28.5714286 Unspecified 2 Japan 0 Northern
## 399 8.2644628 Unspecified 10 Japan 0 Yes Northern
## 401 8.9743590 Unspecified 7 Japan 0 Yes Northern
## 402 3.5294118 Unspecified 3 Japan 0 Yes Northern
## 403 4.8780488 Unspecified 6 Japan 0 Yes Northern
## 405 2.6315789 Unspecified 2 Japan 0 Yes Northern
## 406 1.2765957 Unspecified 3 Japan 0 Yes Northern
## 407 2.5641026 Unspecified 2 Japan 0 Yes Northern
## 408 61.1111111 Unspecified 11 Japan 0 Yes Northern
## 409 3.5714286 Unspecified 2 Japan 0 Northern
## 410 13.5593220 Unspecified 8 Japan 0 Yes Northern
## 411 7.3170732 Unspecified 63 Japan 0 Yes Northern
## 412 19.0476190 Unspecified 4 Japan 0 Northern
## 413 16.6666667 Unspecified 6 Japan 0 Northern
## 414 30.9523810 Unspecified 13 Japan 0 Northern
## 416 3.2051282 Unspecified 5 Japan 0 Yes Northern
## 418 1.6216216 Unspecified 3 Japan 0 Northern
## 419 3.0864198 Unspecified 5 Japan 0 Yes Northern
## 420 35.4838710 Unspecified 33 Japan 0 Yes Northern
## 421 2.5316456 Unspecified 2 Japan 0 Yes Northern
## 422 2.2222222 Unspecified 3 Japan 0 Northern
## 423 4.3478261 Unspecified 4 Japan 0 Yes Northern
## 424 13.8461538 Unspecified 9 Japan 0 Northern
## 426 5.5555556 Unspecified 2 Japan 0 Yes Northern
## 427 2.3529412 Unspecified 2 Japan 0 Yes Northern
## 428 11.7647059 Unspecified 8 Japan 0 Northern
## 429 2.7027027 Unspecified 2 Japan 0 Yes Northern
## 431 5.9405941 Unspecified 6 Japan 0 Northern
## 432 13.8461538 Unspecified 9 Japan 0 Yes Northern
## 433 7.0588235 Unspecified 6 Japan 0 Northern
## 434 7.0588235 Unspecified 6 Japan 0 Yes Northern
## 435 3.7878788 Unspecified 5 Japan 0 Northern
## 436 9.0909091 Unspecified 3 Japan 0 Northern
## 438 6.1224490 Unspecified 6 Japan 0 Northern
## 439 19.5121951 Unspecified 8 Japan 0 Northern
## 440 36.3247863 Unspecified 85 USA 0 Northern
## 441 30.3418803 Unspecified 71 Other 0 Northern
## 442 26.2357414 Yes 69 USA 0 Northern
## 444 56.1728395 Unspecified 91 Japan 0 Northern
## 446 80.0000000 Unspecified 4 Japan 0 Yes Northern
## 447 100.0000000 Unspecified 1 Japan 0 Northern
## 449 100.0000000 Unspecified 3 Japan 0 Northern
## 450 100.0000000 Unspecified 1 Japan 0 Northern
## 453 100.0000000 Unspecified 3 Japan 0 Northern
## 454 100.0000000 Unspecified 2 Japan 0 Northern
## 456 40.0000000 Unspecified 6 Japan 0 Northern
## 458 100.0000000 Unspecified 2 Japan 0 Northern
## 459 100.0000000 Unspecified 3 Japan 0 Northern
## 460 100.0000000 Unspecified 3 Japan 0 Northern
## 461 100.0000000 Unspecified 6 Japan 0 Northern
## 462 60.0000000 Unspecified 3 Japan 0 Northern
## 463 20.0000000 Unspecified 3 Japan 0 Northern
## 466 31.3559322 Unspecified 37 Japan 0 Yes Northern
## 467 27.4509804 Unspecified 70 Japan 0 Yes Northern
## 468 29.7157623 Yes 115 Other 0 Southern
## 469 12.5000000 Unspecified 50 USA 0 Yes Northern
## 470 44.4444444 Unspecified 8 USA 0 Northern
## 471 46.6666667 Unspecified 28 USA 0 Yes Northern
## 472 67.6470588 Unspecified 23 Japan 0 Northern
## 475 11.5793331 Unspecified 316 Other 0 Yes Northern
## 476 4.1555116 Unspecified 357 Other 0 Yes Northern
## 477 1.7077799 Unspecified 117 Other 0 Northern
## 479 40.0000000 Unspecified 26 USA 0 Yes Northern
## 480 12.1495327 Yes 13 Multiple 0 Northern
## 481 49.4145199 Yes 211 USA 9 Yes Northern
## 482 20.3956344 Unspecified 299 Other 0 Yes Northern
## 484 20.8333333 Unspecified 20 Other 0 Yes Northern
## 485 21.0526316 Unspecified 16 Other 0 Yes Northern
## 486 6.2937063 Unspecified 9 Other 0 Yes Northern
## 487 22.4137931 Unspecified 13 Other 0 Yes Northern
## 488 20.0000000 Unspecified 8 Other 0 Yes Northern
## 489 7.6923077 Unspecified 3 Other 0 Yes Northern
## 491 20.6896552 Yes 42 Other 0 Northern
## 494 19.3548387 Unspecified 12 Other 0 Northern
## 495 9.6153846 Unspecified 10 Other 0 Northern
## 497 17.7419355 Unspecified 11 Other 0 Northern
## 499 4.9180328 Unspecified 3 Other 0 Northern
## 500 23.4375000 Unspecified 15 Other 0 Northern
## 501 11.6531165 Yes 43 Other 0 Yes Northern
## 502 31.0185185 Unspecified 67 Other 0 Northern
## 503 67.6470588 Unspecified 23 Other 0 Yes Northern
## 504 90.4761905 Unspecified 19 Other 0 Yes Northern
## 505 14.6131805 Yes 102 Japan 0 Yes Northern
## 507 21.9000000 Yes 70 Other 0 Yes Northern
## 508 8.9000000 Yes 31 Other 0 Northern
## 510 76.4705882 Yes 26 Multiple 0 Yes Northern
## 511 75.6097561 Yes 31 Multiple 0 Yes Northern
## 512 12.3926380 Yes 101 Other 0 Yes Northern
## 513 22.2222222 Unspecified 16 Other 0 Northern
## 514 5.3495763 Unspecified 101 Other 0 Northern
## 515 7.7657935 Yes 252 Other 0 Northern
## 516 5.6394763 Yes 112 Other 0 Northern
## 517 56.0975610 Unspecified 23 Other 0 Northern
## 518 57.1428571 Unspecified 16 Other 0 Northern
## 519 29.7872340 Unspecified 14 Other 0 Northern
## 520 64.1791045 Unspecified 86 Other 0 Northern
## 521 38.4615385 Unspecified 15 Other 0 Northern
## 522 10.7142857 Unspecified 15 Unspecified 0 Yes Northern
## 523 4.0154440 Unspecified 104 Unspecified 0 Yes Northern
## 524 36.7469880 Unspecified 61 Unspecified 0 Yes Northern
## 527 3.0435500 Unspecified 369 Unspecified 0 Yes Northern
## 528 0.3994807 Unspecified 40 Unspecified 0 Yes Northern
## 529 3.0672079 Unspecified 68 Unspecified 0 Yes Northern
## 531 1.6380016 Unspecified 40 Unspecified 0 Yes Northern
## 532 27.8571429 Unspecified 39 Other 0 Northern
## 533 50.0000000 Unspecified 85 Other 0 Northern
## 534 21.2328767 Unspecified 31 Other 0 Northern
## 535 31.1111111 Unspecified 14 Other 0 Northern
## 536 100.0000000 Unspecified 20 Other 0 Northern
## 537 57.1428571 Unspecified 40 Other 0 Northern
## 541 26.1224490 Unspecified 64 Other 0 Yes Northern
## 542 33.3333333 Unspecified 25 Other 0 Yes Northern
## 545 48.8888889 Unspecified 22 Other 0 Yes Northern
## 548 17.0000000 Unspecified 17 Other 0 Yes Northern
## 549 70.0000000 Unspecified 35 Other 0 Yes Northern
## 551 45.4545455 Unspecified 10 Other 0 Yes Northern
## Hospitalizations MeanD1 MeanI1 MedianD1 MedianI1 OBYear Path1
## 2 0 0.0 0 0 0 2006 Unspecified
## 3 0 0.0 0 0 0 2003 Unspecified
## 4 0 0.0 31 0 0 2003 Yes
## 5 0 43.0 32 0 33 2000 No
## 8 0 0.0 28 0 0 1999 No
## 12 0 0.0 0 0 0 2003 Unspecified
## 13 0 0.0 0 0 0 2004 Unspecified
## 14 0 0.0 0 0 0 1997 Unspecified
## 16 0 0.0 0 0 0 1998 Unspecified
## 17 0 0.0 0 0 0 1998 Unspecified
## 18 0 0.0 0 0 0 1998 Unspecified
## 19 0 0.0 0 0 0 2004 Unspecified
## 20 0 0.0 0 0 0 2004 Unspecified
## 22 0 0.0 0 0 0 2004 Unspecified
## 23 0 0.0 0 0 0 2004 Unspecified
## 24 0 0.0 0 0 0 2004 Unspecified
## 25 0 0.0 0 0 0 2004 Unspecified
## 26 0 0.0 0 0 0 2004 Unspecified
## 27 0 0.0 0 0 0 1999 Unspecified
## 35 0 0.0 0 0 0 2002 No
## 36 0 0.0 0 0 28 2002 Unspecified
## 37 0 0.0 0 0 0 1995 No
## 38 0 0.0 0 0 0 2006 Unspecified
## 39 0 0.0 0 0 0 2001 Unspecified
## 40 0 0.0 0 0 3 2002 Unspecified
## 41 0 0.0 0 0 0 2004 Unspecified
## 42 0 0.0 0 0 0 2006 Unspecified
## 43 0 0.0 0 0 0 2006 Unspecified
## 44 0 0.0 0 0 0 2006 Unspecified
## 45 0 0.0 0 0 0 2006 Unspecified
## 46 1 0.0 0 27 31 2000 No
## 47 0 0.0 0 42 32 2006 No
## 49 0 0.0 0 0 0 2000 Unspecified
## 52 0 0.0 0 0 0 2002 Unspecified
## 53 0 0.0 0 0 0 2003 Unspecified
## 54 0 0.0 0 0 0 2003 Unspecified
## 55 0 0.0 0 0 0 2003 Unspecified
## 58 0 0.0 0 0 0 1997 Unspecified
## 59 0 0.0 0 0 0 1997 Unspecified
## 60 0 0.0 0 0 0 1997 Unspecified
## 62 0 0.0 0 0 0 1997 Unspecified
## 64 0 0.0 0 0 0 1997 Unspecified
## 66 0 0.0 0 0 0 1999 Unspecified
## 68 0 0.0 0 0 0 1999 Unspecified
## 69 0 0.0 0 0 0 2000 Unspecified
## 72 0 0.0 0 0 0 2000 Unspecified
## 73 0 0.0 0 0 0 2000 Unspecified
## 74 0 0.0 0 0 0 1998 Unspecified
## 75 0 0.0 0 0 0 1999 Unspecified
## 76 0 0.0 0 0 0 2000 Unspecified
## 77 0 0.0 0 0 0 2000 Unspecified
## 78 0 0.0 0 0 0 2001 Unspecified
## 79 0 0.0 0 0 0 2001 Unspecified
## 80 0 0.0 0 0 0 2001 Unspecified
## 81 0 0.0 0 0 0 2002 Unspecified
## 82 0 0.0 0 0 0 2002 Unspecified
## 83 0 0.0 0 0 0 2002 Unspecified
## 84 0 0.0 0 0 0 1997 Unspecified
## 85 0 0.0 0 0 0 1997 Unspecified
## 86 0 0.0 0 0 0 1997 Unspecified
## 87 0 0.0 0 0 0 1998 Unspecified
## 89 0 0.0 0 0 0 1999 Unspecified
## 90 0 0.0 0 0 0 2000 Unspecified
## 91 0 0.0 0 0 0 2001 Unspecified
## 93 0 0.0 0 0 0 2002 Unspecified
## 94 0 0.0 0 0 0 2002 Unspecified
## 95 0 0.0 0 0 0 2002 Unspecified
## 96 0 0.0 0 0 0 1999 No
## 99 0 0.0 0 0 0 2006 Unspecified
## 101 0 0.0 0 0 0 2003 Unspecified
## 103 0 0.0 0 0 0 2007 Unspecified
## 105 0 0.0 0 0 0 2006 Unspecified
## 107 0 0.0 0 0 0 2006 Unspecified
## 109 5 0.0 0 0 0 2004 No
## 111 0 0.0 0 24 33 1999 No
## 113 0 0.0 0 0 0 2002 Unspecified
## 114 0 0.0 0 0 0 2002 Unspecified
## 116 0 0.0 0 0 0 2005 No
## 118 0 0.0 0 36 0 1994 Unspecified
## 119 0 0.0 0 0 0 2008 No
## 120 0 0.0 0 0 0 2000 Unspecified
## 121 0 0.0 0 0 0 2001 Unspecified
## 122 0 48.0 0 48 0 2006 Unspecified
## 123 0 0.0 0 0 0 2002 Unspecified
## 124 0 0.0 0 0 0 2001 Unspecified
## 125 0 0.0 0 0 0 2001 Unspecified
## 128 0 0.0 0 0 0 2001 Unspecified
## 130 0 0.0 0 0 0 2001 Unspecified
## 131 0 0.0 0 24 37 1993 No
## 132 0 0.0 0 36 31 1993 No
## 134 0 0.0 0 0 0 2003 Unspecified
## 135 0 0.0 0 0 36 2006 Unspecified
## 136 0 0.0 0 0 0 2002 Yes
## 137 0 0.0 0 0 0 2005 Unspecified
## 138 0 0.0 0 0 0 2006 Unspecified
## 139 0 0.0 0 0 0 2006 Unspecified
## 140 0 0.0 0 0 0 2005 Unspecified
## 142 0 0.0 0 48 0 2004 No
## 143 0 0.0 0 0 0 2002 Unspecified
## 147 0 0.0 0 0 0 1995 Unspecified
## 148 0 0.0 0 0 0 1996 Unspecified
## 150 0 0.0 0 0 0 1999 Unspecified
## 151 1 0.0 0 0 0 2008 Unspecified
## 157 0 0.0 0 0 0 2002 Unspecified
## 158 0 0.0 0 0 0 2002 Unspecified
## 159 0 0.0 0 0 0 2002 Unspecified
## 161 0 0.0 0 0 0 2002 Unspecified
## 162 0 0.0 0 0 0 2004 Yes
## 164 0 0.0 0 0 0 2005 No
## 167 0 0.0 0 0 0 2008 Unspecified
## 168 10 0.0 0 48 0 2008 Unspecified
## 169 0 0.0 0 0 0 2009 Unspecified
## 171 0 0.0 0 0 0 2009 Unspecified
## 174 2 0.0 0 0 0 2008 Unspecified
## 175 0 0.0 0 0 0 2009 Unspecified
## 176 0 22.0 33 0 0 2009 Unspecified
## 178 0 35.0 36 0 0 2007 Unspecified
## 179 0 72.0 0 0 0 2008 Yes
## 180 13 0.0 0 0 0 2006 No
## 181 0 0.0 0 0 0 2007 No
## 182 0 0.0 0 0 0 2007 Unspecified
## 183 0 0.0 0 0 0 2007 Unspecified
## 187 0 0.0 0 0 0 2006 Unspecified
## 188 0 0.0 0 0 0 1994 Unspecified
## 189 0 0.0 0 0 0 2005 Unspecified
## 191 0 0.0 0 0 0 2005 Unspecified
## 193 23 0.0 0 48 0 1998 No
## 194 0 0.0 0 24 0 2000 Unspecified
## 195 8 0.0 0 4 35 2002 No
## 196 0 0.0 0 0 34 1999 No
## 197 0 12.0 0 0 0 1994 No
## 198 0 0.0 0 0 0 1998 Unspecified
## 200 0 0.0 0 0 0 1999 Unspecified
## 201 0 0.0 0 0 0 2003 Unspecified
## 202 0 0.0 0 0 0 1990 No
## 203 0 0.0 0 0 0 1997 Yes
## 204 0 0.0 0 0 0 2000 Unspecified
## 205 0 0.0 0 0 0 2004 Unspecified
## 207 0 0.0 0 0 0 2000 No
## 208 0 67.0 0 0 0 2004 Unspecified
## 209 0 0.0 0 0 0 2002 Unspecified
## 210 0 0.0 0 0 0 1998 Unspecified
## 211 0 0.0 0 0 0 1999 Unspecified
## 213 0 0.0 0 0 0 2000 Unspecified
## 214 0 0.0 0 0 0 2000 Unspecified
## 215 0 0.0 0 0 0 2002 Unspecified
## 216 0 0.0 0 0 0 2001 Unspecified
## 217 0 0.0 0 0 0 1999 Unspecified
## 218 0 0.0 0 0 0 2000 Unspecified
## 220 0 0.0 0 72 0 2004 No
## 221 0 0.0 0 0 0 2000 No
## 222 2 0.0 7 36 65 2002 No
## 223 0 0.0 0 0 0 1998 Unspecified
## 224 0 0.0 0 0 0 1999 Yes
## 226 0 0.0 0 0 0 2003 Yes
## 227 0 0.0 0 0 0 2003 Unspecified
## 228 0 0.0 0 0 0 2003 Unspecified
## 229 2 0.0 0 0 0 2007 Unspecified
## 230 0 0.0 0 0 0 2000 Unspecified
## 231 0 0.0 0 0 0 2001 Unspecified
## 232 0 0.0 0 0 0 2001 Unspecified
## 233 0 0.0 0 0 0 2006 Unspecified
## 234 0 0.0 0 0 0 2006 Unspecified
## 235 0 0.0 0 0 0 2006 Unspecified
## 236 0 0.0 0 0 0 2006 Unspecified
## 237 0 0.0 0 0 0 2006 Unspecified
## 238 0 0.0 0 0 0 2006 Unspecified
## 239 3 0.0 0 0 0 1994 No
## 241 0 0.0 0 0 0 2002 Unspecified
## 243 0 0.0 0 0 0 2003 Unspecified
## 244 0 0.0 0 0 0 2003 Unspecified
## 245 0 0.0 0 0 0 2003 Unspecified
## 246 0 0.0 0 0 0 2003 Unspecified
## 247 0 0.0 0 0 0 2003 Unspecified
## 248 0 0.0 0 0 0 2003 Unspecified
## 249 0 0.0 0 0 0 2003 Unspecified
## 250 0 0.0 0 0 0 2004 Unspecified
## 251 0 0.0 0 0 0 2006 Unspecified
## 252 0 0.0 0 48 31 1999 Unspecified
## 257 0 0.0 0 0 0 1997 Unspecified
## 258 0 0.0 0 0 0 1997 Unspecified
## 259 0 0.0 0 0 0 1997 Unspecified
## 260 0 0.0 0 0 0 1998 Unspecified
## 261 0 0.0 0 0 0 2000 Unspecified
## 262 0 0.0 0 0 0 2005 Unspecified
## 263 0 0.0 0 54 34 2003 Unspecified
## 264 0 0.0 0 48 34 2003 Unspecified
## 266 0 0.0 0 0 0 2002 Unspecified
## 269 0 0.0 0 48 0 2009 No
## 270 0 36.0 0 0 0 2007 Unspecified
## 272 0 0.0 0 0 0 2007 Unspecified
## 273 0 0.0 0 0 0 2007 Unspecified
## 274 0 0.0 0 0 0 2007 No
## 275 0 0.0 0 0 0 2006 Unspecified
## 276 0 0.0 0 0 0 2006 Unspecified
## 278 0 0.0 0 0 0 2006 Unspecified
## 279 0 0.0 0 0 0 2006 Unspecified
## 281 0 0.0 0 0 0 2001 No
## 283 0 0.0 0 0 0 2002 Unspecified
## 284 0 0.0 0 0 0 1998 No
## 288 0 0.0 0 0 0 2006 Unspecified
## 289 0 0.0 0 0 0 2006 Unspecified
## 290 3 0.0 30 0 0 2002 Yes
## 292 0 0.0 0 0 0 1999 Unspecified
## 293 0 49.0 0 0 0 2006 No
## 294 0 55.2 0 48 0 2001 Unspecified
## 296 0 0.0 0 0 0 1998 Unspecified
## 297 0 0.0 0 0 0 1999 Yes
## 298 0 0.0 0 0 0 2000 Yes
## 300 0 0.0 0 0 0 2005 Unspecified
## 302 0 0.0 0 0 0 1998 Unspecified
## 303 0 0.0 0 0 0 1998 Unspecified
## 304 0 0.0 39 0 39 1996 Unspecified
## 306 0 0.0 0 28 34 1999 Unspecified
## 308 0 0.0 0 34 22 1999 Unspecified
## 310 0 0.0 0 48 33 1999 Unspecified
## 315 0 0.0 0 0 0 2006 Unspecified
## 316 0 37.0 32 0 0 2007 No
## 317 0 44.0 39 0 0 2007 No
## 318 0 0.0 0 0 0 1999 No
## 319 0 0.0 0 0 0 2002 Unspecified
## 326 0 0.0 32 0 0 2005 No
## 327 40 0.0 0 60 0 2007 No
## 328 3 0.0 0 48 0 2000 No
## 330 0 0.0 0 0 0 2007 Unspecified
## 331 0 0.0 0 0 0 2006 Unspecified
## 332 0 0.0 0 0 0 2006 Unspecified
## 333 0 0.0 0 0 0 1996 No
## 334 0 0.0 0 0 0 2002 No
## 336 1 0.0 0 0 30 2004 Unspecified
## 337 0 0.0 0 36 0 2007 No
## 338 0 0.0 0 0 0 1996 Unspecified
## 341 0 0.0 0 0 0 2001 Unspecified
## 342 0 0.0 0 0 0 2001 Unspecified
## 343 0 0.0 0 0 0 2001 Unspecified
## 344 0 0.0 0 0 0 2006 No
## 345 0 0.0 0 0 0 2004 No
## 348 0 0.0 0 0 0 2005 No
## 350 0 0.0 0 0 0 2000 Unspecified
## 351 0 0.0 0 0 0 2003 Unspecified
## 352 0 0.0 0 0 0 2003 Unspecified
## 356 0 0.0 0 0 0 1997 Unspecified
## 357 0 0.0 0 0 0 1997 Unspecified
## 358 0 0.0 0 0 0 1998 Unspecified
## 359 0 0.0 0 0 0 1999 Unspecified
## 360 0 0.0 0 0 0 1999 Unspecified
## 361 0 0.0 0 0 0 2000 Unspecified
## 364 0 0.0 0 0 0 2000 Unspecified
## 365 0 0.0 0 0 0 2003 Unspecified
## 366 0 0.0 0 0 0 2004 Unspecified
## 367 0 0.0 0 0 0 2001 Unspecified
## 368 0 0.0 0 0 0 2001 Unspecified
## 369 0 0.0 0 0 0 2002 Unspecified
## 370 0 0.0 0 0 0 2001 Unspecified
## 371 0 0.0 0 0 0 1998 Unspecified
## 372 0 0.0 0 0 0 1997 Unspecified
## 373 0 0.0 0 0 0 1999 Unspecified
## 374 0 0.0 0 0 0 2000 Unspecified
## 375 0 0.0 0 0 0 2000 Unspecified
## 376 0 0.0 0 0 0 1998 Unspecified
## 378 0 0.0 0 0 0 2006 Unspecified
## 381 0 0.0 0 0 0 1998 No
## 382 4 0.0 0 48 0 2007 Unspecified
## 383 0 0.0 0 0 0 1998 No
## 385 0 0.0 0 0 0 1999 Unspecified
## 386 0 0.0 0 0 0 1999 Yes
## 389 5 0.0 0 48 48 1994 No
## 390 0 0.0 43 24 0 2006 Yes
## 391 0 0.0 0 0 0 2003 No
## 395 0 0.0 0 0 0 2006 Unspecified
## 396 0 0.0 0 0 0 2006 Unspecified
## 398 0 0.0 0 0 0 2006 Unspecified
## 399 0 0.0 0 0 0 2006 Unspecified
## 401 0 0.0 0 0 0 2005 No
## 402 0 0.0 0 0 0 2006 Unspecified
## 403 0 0.0 0 0 0 2006 Unspecified
## 405 0 0.0 0 0 0 2006 Unspecified
## 406 0 0.0 0 0 0 2006 Unspecified
## 407 0 0.0 0 0 0 2006 Unspecified
## 408 0 0.0 0 0 0 2005 Unspecified
## 409 0 0.0 0 0 0 2006 Unspecified
## 410 0 0.0 0 0 0 2005 Unspecified
## 411 0 0.0 0 0 0 2006 Unspecified
## 412 0 0.0 0 0 0 2006 Unspecified
## 413 0 0.0 0 0 0 2006 Unspecified
## 414 0 0.0 0 0 0 2006 Unspecified
## 416 0 0.0 0 0 0 2006 Unspecified
## 418 0 0.0 0 0 0 2005 Unspecified
## 419 0 0.0 0 0 0 2006 Unspecified
## 420 0 0.0 0 0 0 2006 Unspecified
## 421 0 0.0 0 0 0 2005 Unspecified
## 422 0 0.0 0 0 0 2006 Unspecified
## 423 0 0.0 0 0 0 2005 Unspecified
## 424 0 0.0 0 0 0 2006 Unspecified
## 426 0 0.0 0 0 0 2006 Unspecified
## 427 0 0.0 0 0 0 2006 Unspecified
## 428 0 0.0 0 0 0 2006 Unspecified
## 429 0 0.0 0 0 0 2005 Unspecified
## 431 0 0.0 0 0 0 2006 Unspecified
## 432 0 0.0 0 0 0 2005 Unspecified
## 433 0 0.0 0 0 0 2006 Unspecified
## 434 0 0.0 0 0 0 2006 Unspecified
## 435 0 0.0 0 0 0 2005 Unspecified
## 436 0 0.0 0 0 0 2006 Unspecified
## 438 0 0.0 0 0 0 2006 Unspecified
## 439 0 0.0 0 0 0 2006 Unspecified
## 440 0 0.0 0 18 0 1997 No
## 441 0 0.0 0 48 0 2002 Unspecified
## 442 0 0.0 0 0 30 2004 Unspecified
## 444 0 0.0 0 0 0 2004 Unspecified
## 446 0 0.0 0 0 0 2002 Unspecified
## 447 0 0.0 0 0 0 2003 Unspecified
## 449 0 0.0 0 0 0 2003 Unspecified
## 450 0 0.0 0 0 0 2003 Unspecified
## 453 0 0.0 0 0 0 2003 Unspecified
## 454 0 0.0 0 0 0 2003 Unspecified
## 456 0 0.0 0 0 0 2003 Unspecified
## 458 0 0.0 0 0 0 2003 Unspecified
## 459 0 0.0 0 0 0 2003 Unspecified
## 460 0 0.0 0 0 0 2003 Unspecified
## 461 0 0.0 0 0 0 2003 Unspecified
## 462 0 0.0 0 0 0 2003 Unspecified
## 463 0 0.0 0 0 0 2003 Unspecified
## 466 0 0.0 0 0 0 2004 Unspecified
## 467 0 0.0 0 0 0 2004 Unspecified
## 468 0 0.0 32 0 0 2006 No
## 469 0 0.0 0 0 0 1996 Unspecified
## 470 0 0.0 0 0 0 1998 No
## 471 0 0.0 0 0 0 2000 Unspecified
## 472 0 0.0 0 0 0 2000 No
## 475 0 0.0 0 0 0 2002 Unspecified
## 476 0 0.0 0 0 0 2002 Unspecified
## 477 0 0.0 0 0 0 2002 Unspecified
## 479 0 0.0 0 0 0 2002 Unspecified
## 480 2 0.0 0 0 0 2002 Unspecified
## 481 37 0.0 0 0 0 2003 No
## 482 0 0.0 0 0 0 2004 Yes
## 484 0 0.0 0 0 0 2005 No
## 485 0 0.0 0 0 0 2005 No
## 486 0 0.0 0 0 0 2005 No
## 487 0 0.0 0 0 0 2005 No
## 488 0 0.0 0 0 0 2005 Yes
## 489 0 0.0 0 0 0 2005 No
## 491 0 0.0 0 0 0 2003 No
## 494 0 0.0 0 0 0 2009 Unspecified
## 495 0 0.0 0 0 0 2009 Unspecified
## 497 0 0.0 0 0 0 2010 Unspecified
## 499 0 0.0 0 0 0 2010 Unspecified
## 500 0 0.0 0 0 0 2010 Unspecified
## 501 0 0.0 0 0 0 2007 Unspecified
## 502 0 0.0 0 0 36 2008 No
## 503 0 96.0 33 0 0 2008 Yes
## 504 0 45.0 28 0 0 2008 No
## 505 0 0.0 0 0 0 2007 Yes
## 507 0 67.0 0 0 0 2005 Unspecified
## 508 0 58.0 0 0 0 2006 Unspecified
## 510 6 0.0 0 0 0 2009 No
## 511 6 0.0 0 0 0 2009 No
## 512 0 0.0 0 0 0 2008 Yes
## 513 0 0.0 0 0 0 2007 Unspecified
## 514 0 0.0 0 0 0 2006 Unspecified
## 515 0 0.0 0 0 0 2006 Unspecified
## 516 0 0.0 0 0 0 2006 Unspecified
## 517 0 0.0 0 0 0 2003 No
## 518 0 0.0 0 0 0 2003 No
## 519 0 0.0 0 0 0 2003 No
## 520 0 0.0 0 0 0 2003 No
## 521 0 0.0 0 0 0 2004 No
## 522 0 0.0 0 0 0 2006 Unspecified
## 523 0 0.0 0 0 0 2006 Unspecified
## 524 0 0.0 0 0 0 2006 Unspecified
## 527 0 0.0 0 0 0 2006 Unspecified
## 528 0 0.0 0 0 0 2006 Unspecified
## 529 0 0.0 0 0 0 2006 Unspecified
## 531 0 0.0 0 0 0 2006 Unspecified
## 532 0 0.0 0 0 0 1994 No
## 533 0 0.0 0 0 0 1994 No
## 534 0 0.0 0 0 0 1994 No
## 535 0 0.0 0 0 0 1994 No
## 536 0 0.0 0 0 0 1994 No
## 537 0 0.0 0 0 0 1994 No
## 541 0 0.0 0 0 0 1995 No
## 542 0 0.0 0 0 0 1995 No
## 545 0 0.0 0 0 0 1995 No
## 548 0 0.0 0 0 0 1995 No
## 549 0 0.0 0 0 0 1995 No
## 551 0 0.0 0 0 0 1995 No
## RiskAll season Trans1 Vomit Setting
## 2 12.00000 Fall Foodborne 1 Restaurant
## 3 58.00000 Fall Foodborne 0 Restaurant
## 4 1492.00000 Fall Foodborne 1 Restaurant
## 5 72.00000 Fall Foodborne 1 Restaurant
## 8 25.00000 Fall Unspecified 1 Restaurant
## 12 118.00000 Spring Foodborne 0 Restaurant
## 13 20.00000 Spring Foodborne 0 Restaurant
## 14 2.00000 Spring Foodborne 1 Restaurant
## 16 26.00000 Spring Foodborne 1 Restaurant
## 17 25.00000 Spring Foodborne 1 Restaurant
## 18 13.00000 Spring Foodborne 1 Restaurant
## 19 12.00000 Spring Foodborne 0 Restaurant
## 20 3.00000 Spring Foodborne 0 Restaurant
## 22 60.00000 Spring Unknown 0 Restaurant
## 23 71.00000 Spring Foodborne 0 Restaurant
## 24 14.00000 Spring Foodborne 0 Restaurant
## 25 176.00000 Spring Unknown 0 Restaurant
## 26 5.00000 Spring Unknown 0 Restaurant
## 27 5.00000 Spring Foodborne 0 Restaurant
## 35 11.00000 Spring Person to Person 1 Restaurant
## 36 38.00000 Spring Unknown 1 Restaurant
## 37 1732.00000 Summer Waterborne 1 Restaurant
## 38 3.00000 Summer Foodborne 1 Restaurant
## 39 9.00000 Summer Foodborne 0 Restaurant
## 40 700.00000 Summer Unknown 1 Restaurant
## 41 3639.00000 Summer Foodborne 0 Restaurant
## 42 4.00000 Winter Foodborne 1 Restaurant
## 43 21.00000 Winter Foodborne 1 Restaurant
## 44 18.00000 Winter Foodborne 1 Restaurant
## 45 2.00000 Winter Foodborne 1 Restaurant
## 46 68.00000 Winter Foodborne 1 Restaurant
## 47 625.00000 Winter Foodborne 1 Restaurant
## 49 7.00000 Winter Unspecified 0 Restaurant
## 52 12.00000 Winter Unspecified 0 Restaurant
## 53 10.00000 Winter Unspecified 0 Restaurant
## 54 14.00000 Winter Unspecified 0 Restaurant
## 55 77.00000 Winter Foodborne 0 Restaurant
## 58 18.00000 Winter Foodborne 1 Restaurant
## 59 6.00000 Winter Unknown 1 Restaurant
## 60 50.00000 Winter Foodborne 1 Restaurant
## 62 2.00000 Winter Unknown 1 Restaurant
## 64 158.00000 Winter Foodborne 1 Restaurant
## 66 3.00000 Winter Foodborne 1 Restaurant
## 68 8.00000 Winter Foodborne 0 Restaurant
## 69 4.00000 Winter Foodborne 0 Restaurant
## 72 17.00000 Winter Unknown 0 Restaurant
## 73 32.00000 Winter Unknown 0 Restaurant
## 74 4.00000 Winter Foodborne 0 Restaurant
## 75 3.00000 Winter Foodborne 0 Restaurant
## 76 9.00000 Winter Foodborne 0 Restaurant
## 77 14.00000 Winter Foodborne 0 Restaurant
## 78 18.00000 Winter Foodborne 0 Restaurant
## 79 29.00000 Winter Foodborne 0 Restaurant
## 80 2.00000 Winter Foodborne 0 Restaurant
## 81 5.00000 Winter Foodborne 0 Restaurant
## 82 10.00000 Winter Foodborne 0 Restaurant
## 83 86.00000 Winter Foodborne 0 Restaurant
## 84 37.00000 Winter Unspecified 0 Restaurant
## 85 15.00000 Winter Unspecified 0 Restaurant
## 86 4.00000 Winter Unspecified 0 Restaurant
## 87 15.00000 Winter Unspecified 0 Restaurant
## 89 28.00000 Winter Unspecified 0 Restaurant
## 90 45.00000 Winter Unspecified 0 Restaurant
## 91 36.00000 Winter Unspecified 0 Restaurant
## 93 55.00000 Winter Unspecified 0 Restaurant
## 94 10.00000 Winter Unspecified 0 Restaurant
## 95 2.00000 Winter Unspecified 0 Restaurant
## 96 34.00000 Winter Unspecified 1 Restaurant
## 99 6.00000 Winter Foodborne 1 Restaurant
## 101 29.00000 Winter Foodborne 0 Restaurant
## 103 63.00000 Winter Foodborne 1 Restaurant
## 105 130.00000 Fall Foodborne 1 Other
## 107 8.00000 Fall Foodborne 1 Other
## 109 220.00000 Fall Unspecified 1 Other
## 111 509.00000 Fall Foodborne 1 Other
## 113 2925.00000 Fall Foodborne 1 Other
## 114 3826.00000 Fall Unspecified 1 Other
## 116 24000.00000 Fall Person to Person 1 Other
## 118 13.00000 Fall Waterborne 1 Other
## 119 135.00000 Fall Person to Person 1 Other
## 120 113.00000 Fall Foodborne 0 Other
## 121 83.00000 Fall Unspecified 0 Other
## 122 1800.00000 Fall Environmental 1 Other
## 123 1276.00000 Fall Foodborne 0 Other
## 124 23.00000 Fall Foodborne 0 Other
## 125 6.00000 Fall Unspecified 0 Other
## 128 128.00000 Fall Unspecified 0 Other
## 130 37.00000 Fall Foodborne 0 Other
## 131 72.00000 Fall Foodborne 1 Other
## 132 194.00000 Fall Foodborne 1 Other
## 134 224.00000 Fall Person to Person 1 Other
## 135 66.00000 Fall Foodborne 0 Other
## 136 960.00000 Fall Waterborne 0 Other
## 137 105.00000 Fall Foodborne 1 Other
## 138 48.00000 Fall Unspecified 1 Other
## 139 78.00000 Fall Unspecified 1 Other
## 140 68.00000 Fall Unspecified 1 Other
## 142 213.00000 Fall Person to Person 1 Other
## 143 28.00000 Fall Foodborne 0 Other
## 147 550.00000 Fall Unspecified 1 Other
## 148 300.00000 Fall Foodborne 1 Other
## 150 73.00000 Fall Foodborne 1 Other
## 151 550.00000 Fall Person to Person 0 Other
## 157 10276.00000 Fall Person to Person 0 Other
## 158 171.00000 Fall Person to Person 0 Other
## 159 170.00000 Fall Foodborne 0 Other
## 161 673.00000 Fall Person to Person 0 Other
## 162 108.00000 Fall Unknown 1 Other
## 164 6985.00000 Fall Person to Person 1 Other
## 167 3868.00000 Fall Unknown 1 Other
## 168 6180.00000 Fall Unspecified 1 Other
## 169 72.00000 Fall Unspecified 0 Other
## 171 54.00000 Fall Unspecified 0 Other
## 174 122.00000 Fall Person to Person 1 Other
## 175 30.00000 Fall Foodborne 1 Other
## 176 69.00000 Fall Foodborne 1 Other
## 178 83.00000 Fall Foodborne 0 Other
## 179 284.00000 Fall Unknown 1 Other
## 180 361.00000 Fall Person to Person 1 Other
## 181 325.00000 Spring Foodborne 1 Other
## 182 400.00000 Spring Foodborne 1 Other
## 183 132.00000 Spring Foodborne 1 Other
## 187 158.00000 Spring Foodborne 1 Other
## 188 37.00000 Spring Unspecified 1 Other
## 189 29.00000 Spring Foodborne 1 Other
## 191 18.00000 Spring Foodborne 1 Other
## 193 2054.00000 Spring Foodborne 1 Other
## 194 113.00000 Spring Foodborne 1 Other
## 195 7169.00000 Spring Foodborne 1 Other
## 196 524.00000 Spring Foodborne 1 Other
## 197 56.00000 Spring Unspecified 1 Other
## 198 49.00000 Spring Foodborne 0 Other
## 200 165.00000 Spring Person to Person 0 Other
## 201 23.00000 Spring Unspecified 0 Other
## 202 500.00000 Spring Foodborne 1 Other
## 203 112.00000 Spring Foodborne 1 Other
## 204 10.00000 Spring Unknown 0 Other
## 205 565.00000 Spring Foodborne 0 Other
## 207 414.45455 Spring Foodborne 1 Other
## 208 27.00000 Spring Person to Person 1 Other
## 209 6.00000 Spring Unspecified 0 Other
## 210 212.00000 Spring Unspecified 0 Other
## 211 60.00000 Spring Unspecified 0 Other
## 213 33.00000 Spring Unspecified 0 Other
## 214 38.00000 Spring Unspecified 0 Other
## 215 3.00000 Spring Unspecified 0 Other
## 216 19.00000 Spring Foodborne 0 Other
## 217 11.00000 Spring Unspecified 0 Other
## 218 139.00000 Spring Unspecified 0 Other
## 220 207.00000 Spring Waterborne 1 Other
## 221 672.00000 Spring Waterborne 1 Other
## 222 61.90476 Spring Person to Person 1 Other
## 223 15000.00000 Spring Waterborne 0 Other
## 224 160.00000 Spring Waterborne 0 Other
## 226 150.00000 Spring Waterborne 0 Other
## 227 56.00000 Spring Waterborne 0 Other
## 228 90.00000 Spring Waterborne 0 Other
## 229 74.00000 Spring Unspecified 1 Other
## 230 25.39683 Spring Unspecified 1 Other
## 231 750.00000 Spring Unspecified 0 Other
## 232 94.00000 Spring Waterborne 1 Other
## 233 25.00000 Spring Unspecified 1 Other
## 234 9.00000 Spring Unspecified 1 Other
## 235 92.00000 Spring Unspecified 1 Other
## 236 16.00000 Spring Unspecified 1 Other
## 237 36.00000 Spring Unspecified 1 Other
## 238 96.00000 Spring Unspecified 1 Other
## 239 257.00000 Spring Person to Person 1 Other
## 241 5.00000 Spring Unknown 0 Other
## 243 47.00000 Spring Unknown 0 Other
## 244 8.00000 Spring Unknown 0 Other
## 245 62.00000 Spring Unknown 0 Other
## 246 50.00000 Spring Unknown 0 Other
## 247 6.00000 Spring Foodborne 0 Other
## 248 283.00000 Spring Unknown 0 Other
## 249 236.00000 Spring Foodborne 0 Other
## 250 356.00000 Spring Foodborne 0 Other
## 251 817.00000 Spring Foodborne 0 Other
## 252 55.00000 Spring Foodborne 1 Other
## 257 45.00000 Spring Foodborne 1 Other
## 258 24.00000 Spring Foodborne 1 Other
## 259 180.00000 Spring Foodborne 1 Other
## 260 250.00000 Spring Unspecified 1 Other
## 261 620.00000 Spring Person to Person 1 Other
## 262 250.00000 Spring Unknown 1 Other
## 263 192.00000 Spring Foodborne 1 Other
## 264 87.00000 Spring Foodborne 1 Other
## 266 136.00000 Spring Person to Person 0 Other
## 269 790.00000 Spring Foodborne 1 Other
## 270 351.35135 Spring Unspecified 1 Other
## 272 100.00000 Summer Foodborne 1 Other
## 273 105.00000 Summer Waterborne 1 Other
## 274 200.00000 Summer Foodborne 1 Other
## 275 1000.00000 Summer Foodborne 1 Other
## 276 20.00000 Summer Foodborne 1 Other
## 278 110.00000 Summer Foodborne 1 Other
## 279 13.00000 Summer Foodborne 1 Other
## 281 400.00000 Summer Person to Person 1 Other
## 283 3789.00000 Summer Unspecified 1 Other
## 284 40.00000 Summer Person to Person 1 Other
## 288 15.00000 Summer Foodborne 0 Other
## 289 30.00000 Summer Foodborne 1 Other
## 290 449.00000 Summer Waterborne 1 Other
## 292 264.00000 Summer Unspecified 0 Other
## 293 273.00000 Summer Foodborne 1 Other
## 294 748.00000 Summer Person to Person 1 Other
## 296 120.00000 Summer Waterborne 0 Other
## 297 100.00000 Summer Waterborne 0 Other
## 298 14.00000 Summer Waterborne 0 Other
## 300 220.00000 Summer Person to Person 1 Other
## 302 53.00000 Summer Environmental 1 Other
## 303 563.63636 Summer Unspecified 1 Other
## 304 94.00000 Summer Foodborne 1 Other
## 306 33.00000 Summer Foodborne 1 Other
## 308 13.00000 Summer Foodborne 1 Other
## 310 65.00000 Summer Foodborne 1 Other
## 315 137.00000 Summer Person to Person 0 Other
## 316 26.00000 Summer Foodborne 1 Other
## 317 106.00000 Summer Foodborne 1 Other
## 318 795.00000 Summer Person to Person 1 Other
## 319 2953.00000 Summer Person to Person 0 Other
## 326 80.00000 Summer Foodborne 1 Other
## 327 163.00000 Summer Waterborne 1 Other
## 328 753.00000 Winter Foodborne 1 Other
## 330 225.00000 Winter Foodborne 1 Other
## 331 150.00000 Winter Foodborne 1 Other
## 332 12.00000 Winter Foodborne 1 Other
## 333 180.00000 Winter Person to Person 1 Other
## 334 772.00000 Winter Waterborne 1 Other
## 336 189.00000 Winter Waterborne 1 Other
## 337 266.00000 Winter Environmental 1 Other
## 338 4517.00000 Winter Environmental 1 Other
## 341 34.00000 Winter Foodborne 1 Other
## 342 26.00000 Winter Environmental 1 Other
## 343 30.00000 Winter Person to Person 1 Other
## 344 1067.00000 Winter Person to Person 0 Other
## 345 22.00000 Winter Foodborne 1 Other
## 348 760.00000 Winter Unspecified 0 Other
## 350 79.00000 Winter Person to Person 0 Other
## 351 118.00000 Winter Foodborne 0 Other
## 352 31.00000 Winter Unspecified 0 Other
## 356 27.00000 Winter Foodborne 1 Other
## 357 190.00000 Winter Foodborne 1 Other
## 358 77.00000 Winter Foodborne 1 Other
## 359 22.00000 Winter Foodborne 0 Other
## 360 15.00000 Winter Foodborne 0 Other
## 361 261.00000 Winter Foodborne 0 Other
## 364 12.00000 Winter Unknown 0 Other
## 365 8.00000 Winter Person to Person 1 Other
## 366 675.00000 Winter Person to Person 1 Other
## 367 15.00000 Winter Foodborne 0 Other
## 368 2.00000 Winter Foodborne 0 Other
## 369 2.00000 Winter Foodborne 0 Other
## 370 217.00000 Winter Unspecified 0 Other
## 371 49.00000 Winter Unspecified 0 Other
## 372 20.00000 Winter Foodborne 0 Other
## 373 35.00000 Winter Foodborne 0 Other
## 374 2.00000 Winter Foodborne 0 Other
## 375 3.00000 Winter Foodborne 0 Other
## 376 52.00000 Winter Unspecified 0 Other
## 378 2447.00000 Winter Person to Person 1 Other
## 381 2585.00000 Winter Waterborne 1 Other
## 382 284.00000 Winter Person to Person 1 Other
## 383 83.00000 Winter Person to Person 1 Other
## 385 2500.00000 Winter Waterborne 0 Other
## 386 250.00000 Winter Waterborne 0 Other
## 389 299.00000 Winter Foodborne 1 Other
## 390 61.00000 Winter Foodborne 0 Other
## 391 154.00000 Winter Foodborne 1 Other
## 395 33.00000 Winter Unspecified 1 Other
## 396 467.00000 Winter Unspecified 1 Other
## 398 7.00000 Winter Unspecified 1 Other
## 399 121.00000 Winter Unspecified 1 Other
## 401 78.00000 Winter Unspecified 1 Other
## 402 85.00000 Winter Unspecified 1 Other
## 403 123.00000 Winter Unspecified 1 Other
## 405 76.00000 Winter Unspecified 1 Other
## 406 235.00000 Winter Unspecified 1 Other
## 407 78.00000 Winter Unspecified 1 Other
## 408 18.00000 Winter Unspecified 1 Other
## 409 56.00000 Winter Unspecified 1 Other
## 410 59.00000 Winter Unspecified 1 Other
## 411 861.00000 Winter Unspecified 1 Other
## 412 21.00000 Winter Unspecified 1 Other
## 413 36.00000 Winter Unspecified 1 Other
## 414 42.00000 Winter Unspecified 1 Other
## 416 156.00000 Winter Unspecified 1 Other
## 418 185.00000 Winter Unspecified 1 Other
## 419 162.00000 Winter Unspecified 1 Other
## 420 93.00000 Winter Unspecified 1 Other
## 421 79.00000 Winter Unspecified 1 Other
## 422 135.00000 Winter Unspecified 1 Other
## 423 92.00000 Winter Unspecified 1 Other
## 424 65.00000 Winter Unspecified 1 Other
## 426 36.00000 Winter Unspecified 1 Other
## 427 85.00000 Winter Unspecified 1 Other
## 428 68.00000 Winter Unspecified 1 Other
## 429 74.00000 Winter Unspecified 1 Other
## 431 101.00000 Winter Unspecified 1 Other
## 432 65.00000 Winter Unspecified 1 Other
## 433 85.00000 Winter Unspecified 1 Other
## 434 85.00000 Winter Unspecified 1 Other
## 435 132.00000 Winter Unspecified 1 Other
## 436 33.00000 Winter Unspecified 1 Other
## 438 98.00000 Winter Unspecified 1 Other
## 439 41.00000 Winter Unspecified 1 Other
## 440 234.00000 Winter Foodborne 1 Other
## 441 234.00000 Winter Waterborne 1 Other
## 442 263.00000 Winter Waterborne 1 Other
## 444 162.00000 Winter Foodborne 1 Other
## 446 5.00000 Winter Unknown 0 Other
## 447 1.00000 Winter Foodborne 0 Other
## 449 3.00000 Winter Foodborne 0 Other
## 450 1.00000 Winter Foodborne 0 Other
## 453 3.00000 Winter Foodborne 0 Other
## 454 2.00000 Winter Foodborne 0 Other
## 456 15.00000 Winter Unknown 0 Other
## 458 2.00000 Winter Foodborne 0 Other
## 459 3.00000 Winter Foodborne 0 Other
## 460 3.00000 Winter Foodborne 0 Other
## 461 6.00000 Winter Foodborne 0 Other
## 462 5.00000 Winter Foodborne 0 Other
## 463 15.00000 Winter Unknown 0 Other
## 466 118.00000 Winter Foodborne 0 Other
## 467 255.00000 Winter Foodborne 0 Other
## 468 387.00000 Winter Foodborne 1 Other
## 469 400.00000 Winter Foodborne 1 Other
## 470 18.00000 Winter Foodborne 1 Other
## 471 60.00000 Winter Foodborne 1 Other
## 472 34.00000 Winter Person to Person 1 Other
## 475 2729.00000 Winter Person to Person 0 Other
## 476 8591.00000 Winter Person to Person 0 Other
## 477 6851.00000 Winter Person to Person 0 Other
## 479 65.00000 Winter Person to Person 0 Other
## 480 107.00000 Winter Environmental 1 Other
## 481 427.00000 Winter Environmental 1 Other
## 482 1466.00000 Winter Unknown 0 Other
## 484 96.00000 Winter Environmental 0 Other
## 485 76.00000 Winter Person to Person 0 Other
## 486 143.00000 Winter Unknown 0 Other
## 487 58.00000 Winter Unknown 0 Other
## 488 40.00000 Winter Foodborne 1 Other
## 489 39.00000 Winter Unknown 1 Other
## 491 203.00000 Winter Unspecified 1 Other
## 494 62.00000 Winter Unspecified 0 Other
## 495 104.00000 Winter Unspecified 0 Other
## 497 62.00000 Winter Unspecified 0 Other
## 499 61.00000 Winter Unspecified 0 Other
## 500 64.00000 Winter Unspecified 0 Other
## 501 369.00000 Winter Waterborne 1 Other
## 502 216.00000 Winter Waterborne 1 Other
## 503 34.00000 Winter Foodborne 1 Other
## 504 21.00000 Winter Foodborne 1 Other
## 505 698.00000 Winter Foodborne 1 Other
## 507 319.63470 Winter Unknown 1 Other
## 508 348.31461 Winter Unspecified 1 Other
## 510 34.00000 Winter Foodborne 1 Other
## 511 41.00000 Winter Foodborne 1 Other
## 512 815.00000 Winter Foodborne 1 Other
## 513 72.00000 Foodborne 1 Other
## 514 1888.00000 Person to Person 1 Other
## 515 3245.00000 Person to Person 1 Other
## 516 1986.00000 Person to Person 1 Other
## 517 41.00000 Foodborne 1 Other
## 518 28.00000 Foodborne 1 Other
## 519 47.00000 Foodborne 1 Other
## 520 134.00000 Foodborne 1 Other
## 521 39.00000 Foodborne 1 Other
## 522 140.00000 Person to Person 0 Other
## 523 2590.00000 Person to Person 0 Other
## 524 166.00000 Person to Person 0 Other
## 527 12124.00000 Person to Person 0 Other
## 528 10013.00000 Person to Person 0 Other
## 529 2217.00000 Person to Person 0 Other
## 531 2442.00000 Person to Person 0 Other
## 532 140.00000 Unspecified 0 Other
## 533 170.00000 Unspecified 0 Other
## 534 146.00000 Unspecified 0 Other
## 535 45.00000 Foodborne 0 Other
## 536 20.00000 Foodborne 0 Other
## 537 70.00000 Unspecified 0 Other
## 541 245.00000 Unspecified 0 Other
## 542 75.00000 Foodborne 0 Other
## 545 45.00000 Unspecified 0 Other
## 548 100.00000 Unspecified 0 Other
## 549 50.00000 Foodborne 0 Other
## 551 22.00000 Foodborne 0 Other
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
fit2 <- train(fracinf ~ ., data= data_train, method= "earth", trControl= fitControl)
fit3 <- train(fracinf ~ ., data= data_train, method= "knn", trControl= fitControl)
print(fit1)## Linear Regression
##
## 387 samples
## 18 predictor
##
## No pre-processing
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 307, 309, 310, 311, 311, 310, ...
## Resampling results:
##
## RMSE Rsquared MAE
## 24.8103 0.3117151 19.54058
##
## Tuning parameter 'intercept' was held constant at a value of TRUE
## Multivariate Adaptive Regression Spline
##
## 387 samples
## 18 predictor
##
## No pre-processing
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 309, 309, 309, 310, 311, 310, ...
## Resampling results across tuning parameters:
##
## nprune RMSE Rsquared MAE
## 2 25.61709 0.2212426 20.703812
## 11 12.98791 0.8018577 9.677063
## 21 13.04564 0.8001109 9.747202
##
## Tuning parameter 'degree' was held constant at a value of 1
## RMSE was used to select the optimal model using the smallest value.
## The final values used for the model were nprune = 11 and degree = 1.
## k-Nearest Neighbors
##
## 387 samples
## 18 predictor
##
## No pre-processing
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 310, 310, 309, 310, 309, 311, ...
## Resampling results across tuning parameters:
##
## k RMSE Rsquared MAE
## 5 8.276706 0.9190471 5.732931
## 7 8.941110 0.9073251 6.330127
## 9 9.680287 0.8919295 6.885446
##
## RMSE was used to select the optimal model using the smallest value.
## The final value used for the model was k = 5.
So we find that some of these models do better than the null model and the single-predictor ones. KNN seems the best of those 3. Next, we want to see if pre-processing our data a bit more might lead to even better results.
Above, we fit outcome and predictors without doing anything to them. Let’s see if some further processing improves the performance of our multi-predictor models.
First, we look at near-zero variance predictors. Those are predictors that have very little variation. For instance, for a categorical predictor, if 99% of the values are a single category, it is likely not a useful predictor. A similar idea holds for continuous predictors. If they have very little spread, they might likely not contribute much ‘signal’ to our fitting and instead mainly contain noise. Some models, such as trees, which we’ll cover soon, can ignore useless predictors and just remove them. Other models, e.g., linear models, are generally performing better if we remove such useless predictors.
Note that in general, one should apply all these processing steps to the training data only. Otherwise, you would use information from the test set to decide on data manipulations for all data (called data leakage). It is a bit hard to say when to make the train/test split. Above, we did a good bit of cleaning on the full dataset before we split. One could argue that one should split right at the start, then do the cleaning. However, this doesn’t work for certain procedures (e.g., removing observations with NA).
#write code using the caret function `nearZeroVar` to look at potential uninformative predictors. Set saveMetrics to TRUE. Look at the results
nearZeroVar(data_train, saveMetrics=TRUE)## freqRatio percentUnique zeroVar nzv
## fracinf 3.222222 75.9689922 FALSE FALSE
## Action1 3.607143 0.5167959 FALSE FALSE
## CasesAll 1.391304 34.3669251 FALSE FALSE
## Country 1.190476 1.2919897 FALSE FALSE
## Deaths 190.500000 1.2919897 FALSE TRUE
## gg2c4 2.225000 0.5167959 FALSE FALSE
## Hemisphere 26.642857 0.5167959 FALSE TRUE
## Hospitalizations 91.500000 3.3591731 FALSE TRUE
## MeanD1 185.500000 4.1343669 FALSE TRUE
## MeanI1 93.000000 2.5839793 FALSE TRUE
## MedianD1 27.461538 3.3591731 FALSE TRUE
## MedianI1 91.000000 3.8759690 FALSE TRUE
## OBYear 1.767442 4.9095607 FALSE FALSE
## Path1 3.567901 0.7751938 FALSE FALSE
## RiskAll 1.000000 58.9147287 FALSE FALSE
## season 2.080460 1.2919897 FALSE FALSE
## Trans1 1.513761 1.5503876 FALSE FALSE
## Vomit 1.289941 0.5167959 FALSE FALSE
## Setting 4.450704 0.5167959 FALSE FALSE
You’ll see that several variables are flagged as having near-zero variance. Look for instance at Deaths, you’ll see that almost all outbreaks have zero deaths. It is a judgment call if we should remove all those flagged as near-zero-variance or not. For this exercise, we will.
#write code that removes all variables with near zero variance from the data
data_train <- data_train %>%
select(-c(Deaths, Hemisphere, Hospitalizations, MeanD1, MeanI1, MedianD1, MedianI1))
#This worked just fine
#data_trainYou should be left with 13 variables (including the outcome).
Next, we noticed during our exploratory analysis that it might be useful to center and scale predictors. So let’s do that now. With caret, one can do that by providing the preProc setting inside the train function. Set it to center and scale the data, then run the 3 models from above again.
#write code that repeats the multi-predictor fits from above, but this time applies centering and scaling of variables.
#look at the RMSE for the new fits
set.seed(1111)
fit1 <- train(fracinf ~ ., data= data_train, method= "lm", trControl= fitControl, preProcess= c("center","scale"))## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990, OBYear1993
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in predict.lm(modelFit, newdata): prediction from a rank-deficient
## fit may be misleading
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear2010
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1993
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1993
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1993
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Warning in preProcess.default(thresh = 0.95, k = 5, freqCut = 19, uniqueCut
## = 10, : These variables have zero variances: OBYear1990
## Linear Regression
##
## 387 samples
## 11 predictor
##
## Pre-processing: centered (40), scaled (40)
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 307, 309, 310, 311, 311, 310, ...
## Resampling results:
##
## RMSE Rsquared MAE
## 24.58721 0.310625 19.68598
##
## Tuning parameter 'intercept' was held constant at a value of TRUE
## Multivariate Adaptive Regression Spline
##
## 387 samples
## 11 predictor
##
## Pre-processing: centered (40), scaled (40)
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 309, 309, 309, 310, 311, 310, ...
## Resampling results across tuning parameters:
##
## nprune RMSE Rsquared MAE
## 2 25.61709 0.2212426 20.703812
## 10 13.04979 0.8006266 9.745038
## 19 13.00512 0.8018148 9.751843
##
## Tuning parameter 'degree' was held constant at a value of 1
## RMSE was used to select the optimal model using the smallest value.
## The final values used for the model were nprune = 19 and degree = 1.
## k-Nearest Neighbors
##
## 387 samples
## 11 predictor
##
## Pre-processing: centered (40), scaled (40)
## Resampling: Cross-Validated (5 fold, repeated 5 times)
## Summary of sample sizes: 310, 310, 309, 310, 309, 311, ...
## Resampling results across tuning parameters:
##
## k RMSE Rsquared MAE
## 5 23.96972 0.3560522 18.56788
## 7 23.75943 0.3603983 18.52316
## 9 23.82838 0.3505135 18.69664
##
## RMSE was used to select the optimal model using the smallest value.
## The final value used for the model was k = 7.
So it looks like the linear mode got a bit better, KNN actually got worse, and MARS didn’t change much. Since for KNN, “the data is the model”, removing some predictors might have had a detrimental impact. Though to say something more useful, I would want to look much closer into what’s going on and if these pre-processing steps are useful or not. For this exercise, let’s move on.
We can look at the uncertainty in model performance, e.g., the RMSE. Let’s look at it for the models fit to the un-processed data.
#Use the `resamples` function in caret to extract uncertainty from the 3 models fit to the data that doesn't have predictor pre-processing, then plot it
resamps <- resamples(list(Lm= fit1, earth= fit2, knn= fit3))
difs <- diff(resamps)
difs##
## Call:
## diff.resamples(x = resamps)
##
## Models: Lm, earth, knn
## Metrics: MAE, RMSE, Rsquared
## Number of differences: 3
## p-value adjustment: bonferroni
##
## Call:
## summary.diff.resamples(object = difs)
##
## p-value adjustment: bonferroni
## Upper diagonal: estimates of the difference
## Lower diagonal: p-value for H0: difference = 0
##
## MAE
## Lm earth knn
## Lm 9.934 1.163
## earth < 2e-16 -8.771
## knn 0.03757 < 2e-16
##
## RMSE
## Lm earth knn
## Lm 11.5821 0.8278
## earth <2e-16 -10.7543
## knn 0.3641 <2e-16
##
## Rsquared
## Lm earth knn
## Lm -0.49119 -0.04977
## earth <2e-16 0.44142
## knn 0.1662 <2e-16


It seems that the model uncertainty for the outcome is fairly narrow for all models. We can (and in a real setting should) do further explorations to decide which model to choose. This is based part on what the model results are, and part on what we want. If we want a very simple, interpretable model, we’d likely use the linear model. If we want a model that has better performance, we might use MARS or - with the un-processed dataset - KNN.
For this exercise, let’s just pick one model. We’ll go with the best performing one, namely KNN (fit to non-pre-processed data). Let’s take a look at the residual plot.
#Write code to get model predictions for the outcome on the training data, and plot it as function of actual outcome values.
#also compute residuals (the difference between prediction and actual outcome) and plot that
#fit3 is the knn model
predictions <- predict(fit3, newdata= data_train, interval="confidence")
add_predictions <- data_train %>%
mutate(predictions= predictions)
#add_predictions
ggplot(add_predictions, aes(predictions, data_train$fracinf)) + geom_point() + geom_smooth(method="lm")
Both plots look ok, predicted vs. outcome is along the 45-degree line, and the residual plot shows no major pattern. Of course, for a real analysis, we would again want to dig a bit deeper. But we’ll leave it at this for now.
Let’s do a final check, evaluate the performance of our final model on the test set.
#Write code that computes model predictions and for test data, then compute SSR and RMSE.
set.seed(1111)
predictions_finalModel <- predict(fit3, newdata= data_test, interval="confidence")
add_predictions_finalModel <- data_test %>%
mutate(Final_KNN_predictions= predictions_finalModel)
#add_predictions_finalModel
ggplot(add_predictions_finalModel, aes(predictions_finalModel, data_test$fracinf)) + geom_point() + geom_smooth(method="lm")
Since we have a different number of observations, the result isn’t expected to be quite the same as for the training data (despite dividing by sample size to account for that). But it’s fairly close, and surprisingly not actually worse. So the KNN model seems to be reasonable at predicting. Now if its performance is ‘good enough’ is a scientific question.
We will leave it at this, for now, we will likely (re)visit some other topics soon as we perform more such analysis exercises in upcoming weeks. But you are welcome to keep exploring this dataset and try some of the other bits and pieces we covered.